Searched refs:allocSize (Results 1 – 3 of 3) sorted by relevance
183 void LinearAllocator::rewindIfLastAlloc(void* ptr, size_t allocSize) { in rewindIfLastAlloc() argument185 allocSize = ALIGN(allocSize); in rewindIfLastAlloc()187 && ptr == ((char*)mNext - allocSize)) { in rewindIfLastAlloc()188 mTotalAllocated -= allocSize; in rewindIfLastAlloc()189 mWastedSpace += allocSize; in rewindIfLastAlloc()
71 size_t allocSize; /* size of buffer */ member91 if (neededSize <= stream->allocSize) in ensureCapacity()96 if (stream->allocSize == 0) { in ensureCapacity()99 newSize = stream->allocSize; in ensureCapacity()112 stream->allocSize = newSize; in ensureCapacity()145 assert(stream->offset < stream->allocSize); in write_memstream()
58 void rewindIfLastAlloc(void* ptr, size_t allocSize);