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

/frameworks/av/media/libmediaplayer2/nuplayer2/
H A DNuPlayer2DecoderPassThrough.cpp182 size_t bigSize = mAggregateBuffer->size(); local
183 size_t roomLeft = mAggregateBuffer->capacity() - bigSize;
188 || (!bigTimestampValid && (bigSize > 0) && smallTimestampValid)) {
195 if ((bigSize == 0) && smallTimestampValid) {
199 memcpy(mAggregateBuffer->base() + bigSize, accessUnit->data(), smallSize);
200 bigSize += smallSize;
201 mAggregateBuffer->setRange(0, bigSize);
203 ALOGV("feedDecoderInputData() smallSize = %zu, bigSize = %zu, capacity = %zu",
204 smallSize, bigSize, mAggregateBuffer->capacity());
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerDecoderPassThrough.cpp183 size_t bigSize = mAggregateBuffer->size(); local
184 size_t roomLeft = mAggregateBuffer->capacity() - bigSize;
189 || (!bigTimestampValid && (bigSize > 0) && smallTimestampValid)) {
196 if ((bigSize == 0) && smallTimestampValid) {
200 memcpy(mAggregateBuffer->base() + bigSize, accessUnit->data(), smallSize);
201 bigSize += smallSize;
202 mAggregateBuffer->setRange(0, bigSize);
204 ALOGV("feedDecoderInputData() smallSize = %zu, bigSize = %zu, capacity = %zu",
205 smallSize, bigSize, mAggregateBuffer->capacity());
/frameworks/base/libs/hwui/hwui/
H A DBitmap.cpp41 int64_t bigSize = (int64_t)height * rowBytes32; local
42 if (rowBytes32 < 0 || !sk_64_isS32(bigSize)) {
46 *size = sk_64_asS32(bigSize);

Completed in 114 milliseconds