Home
last modified time | relevance | path

Searched refs:allocSize (Results 1 – 3 of 3) sorted by relevance

/system/core/libutils/
DLinearAllocator.cpp183 void LinearAllocator::rewindIfLastAlloc(void* ptr, size_t allocSize) { in rewindIfLastAlloc() argument
185 allocSize = ALIGN(allocSize); in rewindIfLastAlloc()
187 && ptr == ((char*)mNext - allocSize)) { in rewindIfLastAlloc()
188 mTotalAllocated -= allocSize; in rewindIfLastAlloc()
189 mWastedSpace += allocSize; in rewindIfLastAlloc()
/system/core/libcutils/
Dopen_memstream.c71 size_t allocSize; /* size of buffer */ member
91 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()
/system/core/include/utils/
DLinearAllocator.h58 void rewindIfLastAlloc(void* ptr, size_t allocSize);