Searched defs:actualSize (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/tools/aapt2/
H A DBigBuffer.cpp36 const size_t actualSize = std::max(mBlockSize, size); local
41 block.buffer = std::unique_ptr<uint8_t[]>(new uint8_t[actualSize]());
45 block.mBlockSize = actualSize;
/frameworks/base/core/jni/android/graphics/
H A DMinikinSkia.cpp87 const size_t actualSize = mTypeface->getTableData(tag, 0, *size, buf); local
88 *size = actualSize;
89 return actualSize != 0;
H A DRegion.cpp222 size_t actualSize = region->readFromMemory(regionData, size); local
223 if (size != actualSize) {
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.cpp1989 size_t actualSize = (*me->mCallback)( local
2002 ALOGV_IF(actualSize == 0 && buffer->size > 0, "callbackwrapper: empty buffer returned");
2004 me->mBytesWritten += actualSize; // benign race with reader.
2005 buffer->size = actualSize;
2106 size_t actualSize = local
2110 if (actualSize > 0) {
2111 sink->write(mBuffer, actualSize);

Completed in 147 milliseconds