Home | History | Annotate | Download | only in src

Lines Matching full:uint32

48     uint32   currentNumberOfPools;
68 uint32 sCurrentAllocationSize;
69 uint32 sMaximumAllocationSize;
70 uint32 sTotalAllocationSize;
72 uint32 sCurrentAllocRealSize;
73 uint32 sMaximumAllocRealSize;
74 uint32 sTotalAllocRealSize;
76 uint32 sCurrentAllocationNumber;
77 uint32 sMaximumAllocationNumber;
78 uint32 sTotalAllocationNumber;
80 uint32 sCurrentAllocationNumberArray[NUM_TRACKING_BINS];
81 uint32 sMaximumAllocationNumberArray[NUM_TRACKING_BINS];
82 uint32 sTotalAllocationNumberArray[NUM_TRACKING_BINS];
84 uint32 sCurrentAllocationSizeArray[NUM_TRACKING_BINS];
85 uint32 sMaximumAllocationSizeArray[NUM_TRACKING_BINS];
86 uint32 sTotalAllocationSizeArray[NUM_TRACKING_BINS];
93 static uint32 findBin(size_t size)
138 uint32 bin = findBin(size);
139 uint32 binsize = 1 << bin;
140 uint32 dummy;
222 uint32 bin = findBin(size);
223 uint32 binsize = 1 << bin;
282 static BOOL CreatePool(uint32 whichPool, uint32 poolSize)
284 static uint32 poolNumber = 0;
289 uint32 currentNumberOfPools = memoryPool[whichPool].currentNumberOfPools;
339 static BOOL AddPool(uint32 whichPool, uint32 poolSize)
347 static void* AllocateFromPsos(uint32 whichPool, uint32 poolIndex, uint32 size)
349 uint32 retval;
367 static void* SearchPoolsForMemory(uint32 whichPool, uint32 size)
370 uint32 poolIndex;
415 void* PortMemBlockAllocateFromPool(uint32 size)
420 uint32 whichPool;
451 uint32 whichPool = (*pRealMemory >> 27) & 0x0000001f;
452 uint32 whichBin = (*pRealMemory >> 24) & 0x00000007;
464 uint32 retval = pt_retbuf(memoryPool[whichPool].poolInfo[whichBin].poolId, pRealMemory);