Home | History | Annotate | Download | only in compiler

Lines Matching defs:memory

93 	// be obtained to allocate memory.
250 // much memory the caller asked for. allocationSize is the total
266 unsigned char* memory = reinterpret_cast<unsigned char *>(inUseList) + currentPageOffset;
270 return initializeAllocation(inUseList, memory, numBytes);
283 tHeader* memory = reinterpret_cast<tHeader*>(::new char[numBytesToAlloc]);
284 if (memory == 0)
288 new(memory) tHeader(inUseList, (numBytesToAlloc + pageSize - 1) / pageSize);
289 inUseList = memory;
294 return reinterpret_cast<void*>(reinterpret_cast<uintptr_t>(memory) + headerSkip);
300 tHeader* memory;
302 memory = freeList;
305 memory = reinterpret_cast<tHeader*>(::new char[pageSize]);
306 if (memory == 0)
311 new(memory) tHeader(inUseList, 1);
312 inUseList = memory;