HomeSort by relevance Sort by last modified time
    Searched refs:bigSize (Results 1 - 4 of 4) sorted by null

  /frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayerDecoderPassThrough.cpp 187 size_t bigSize = mAggregateBuffer->size();
188 size_t roomLeft = mAggregateBuffer->capacity() - bigSize;
193 || (!bigTimestampValid && (bigSize > 0) && smallTimestampValid)) {
200 if ((bigSize == 0) && smallTimestampValid) {
204 memcpy(mAggregateBuffer->base() + bigSize, accessUnit->data(), smallSize);
205 bigSize += smallSize;
206 mAggregateBuffer->setRange(0, bigSize);
208 ALOGV("feedDecoderInputData() smallSize = %zu, bigSize = %zu, capacity = %zu",
209 smallSize, bigSize, mAggregateBuffer->capacity());
  /external/skia/src/core/
SkMallocPixelRef.cpp 75 int64_t bigSize = (int64_t)info.height() * rowBytes;
76 if (!sk_64_isS32(bigSize)) {
80 size_t size = sk_64_asS32(bigSize);
  /external/opencv3/modules/imgcodecs/test/
test_drawing.cpp 491 Size bigSize(0, 0);
509 bigSize.width = max(bigSize.width, img.size().width);
510 bigSize.height += img.size().height + 1;
516 Mat result(bigSize, CV_8UC3, Scalar(100, 100, 100));
  /frameworks/base/core/jni/android/graphics/
Graphics.cpp 477 int64_t bigSize = (int64_t)bitmap.height() * rowBytes32;
478 if (rowBytes32 < 0 || !sk_64_isS32(bigSize)) {
482 *size = sk_64_asS32(bigSize);

Completed in 1194 milliseconds