Lines Matching full:allocationsize
223 // much memory the caller asked for. allocationSize is the total
226 size_t allocationSize = TAllocation::allocationSize(numBytes);
228 if (allocationSize < numBytes)
235 if (allocationSize <= pageSize - currentPageOffset) {
240 currentPageOffset += allocationSize;
246 if (allocationSize > pageSize - headerSkip) {
251 size_t numBytesToAlloc = allocationSize + headerSkip;
253 if (numBytesToAlloc < allocationSize)
288 currentPageOffset = (headerSkip + allocationSize + alignmentMask) & ~alignmentMask;