Home | History | Annotate | Download | only in compiler

Lines Matching refs:memory

33     // Release the allocated memory for this thread.
91 // be obtained to allocate memory.
225 // much memory the caller asked for. allocationSize is the total
244 unsigned char* memory = reinterpret_cast<unsigned char *>(inUseList) + currentPageOffset;
248 return initializeAllocation(inUseList, memory, numBytes);
257 tHeader* memory = reinterpret_cast<tHeader*>(::new char[numBytesToAlloc]);
258 if (memory == 0)
262 new(memory) tHeader(inUseList, (numBytesToAlloc + pageSize - 1) / pageSize);
263 inUseList = memory;
268 return reinterpret_cast<void*>(reinterpret_cast<uintptr_t>(memory) + headerSkip);
274 tHeader* memory;
276 memory = freeList;
279 memory = reinterpret_cast<tHeader*>(::new char[pageSize]);
280 if (memory == 0)
285 new(memory) tHeader(inUseList, 1);
286 inUseList = memory;