• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-12-stable/sys/dev/pms/RefTisa/discovery/dm/

Lines Matching defs:memoryAllocated

219              dmMemoryRequirement_t	*memoryAllocated,
245 DM_ASSERT((agNULL != memoryAllocated), "");
247 DM_ASSERT((DM_ROOT_MEM_INDEX < memoryAllocated->count), "");
248 DM_ASSERT((DM_PORT_MEM_INDEX < memoryAllocated->count), "");
249 DM_ASSERT((DM_DEVICE_MEM_INDEX < memoryAllocated->count), "");
250 DM_ASSERT((DM_EXPANDER_MEM_INDEX < memoryAllocated->count), "");
251 DM_ASSERT((DM_SMP_MEM_INDEX < memoryAllocated->count), "");
252 DM_ASSERT((DM_INDIRECT_SMP_MEM_INDEX < memoryAllocated->count), "");
255 for ( i = 0; i < memoryAllocated->count; i ++ )
258 if (memoryAllocated->dmMemory[i].singleElementLength &&
259 memoryAllocated->dmMemory[i].numElements)
261 if ( (0 != memoryAllocated->dmMemory[i].numElements)
262 && (0 == memoryAllocated->dmMemory[i].totalLength) )
267 memoryAllocated->dmMemory[i].singleElementLength,
268 memoryAllocated->dmMemory[i].numElements));
275 dmIntRoot = (dmIntRoot_t *) (memoryAllocated->dmMemory[DM_ROOT_MEM_INDEX].virtPtr);
284 dmIntPortContext = (dmIntPortContext_t *) (memoryAllocated->dmMemory[DM_PORT_MEM_INDEX].virtPtr);
288 dmDevice = (dmDeviceData_t *) (memoryAllocated->dmMemory[DM_DEVICE_MEM_INDEX].virtPtr);
292 dmExpander = (dmExpander_t *) (memoryAllocated->dmMemory[DM_EXPANDER_MEM_INDEX].virtPtr);
296 dmSMPRequest = (dmSMPRequestBody_t *) (memoryAllocated->dmMemory[DM_SMP_MEM_INDEX].virtPtr);
300 dmIndirectSMPRequest = (bit8 *) (memoryAllocated->dmMemory[DM_INDIRECT_SMP_MEM_INDEX].virtPtr);
302 dmAllShared->IndirectSMPUpper32 = memoryAllocated->dmMemory[DM_INDIRECT_SMP_MEM_INDEX].physAddrUpper;
303 dmAllShared->IndirectSMPLower32 = memoryAllocated->dmMemory[DM_INDIRECT_SMP_MEM_INDEX].physAddrLower;