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

/system/core/libutils/
H A DLinearAllocator.cpp183 void LinearAllocator::rewindIfLastAlloc(void* ptr, size_t allocSize) { argument
185 allocSize = ALIGN(allocSize);
187 && ptr == ((char*)mNext - allocSize)) {
188 mTotalAllocated -= allocSize;
189 mWastedSpace += allocSize;
/system/core/include/utils/
H A DLinearAllocator.h58 void rewindIfLastAlloc(void* ptr, size_t allocSize);
/system/core/libcutils/
H A Dopen_memstream.c71 size_t allocSize; /* size of buffer */ member in struct:__anon167
91 if (neededSize <= stream->allocSize)
96 if (stream->allocSize == 0) {
99 newSize = stream->allocSize;
112 stream->allocSize = newSize;
145 assert(stream->offset < stream->allocSize);

Completed in 311 milliseconds