Home
last modified time | relevance | path

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

/frameworks/av/media/libmediaplayerservice/nuplayer/
DNuPlayerDecoderPassThrough.cpp167 size_t smallSize = accessUnit->size(); in aggregateBuffer() local
170 && (smallSize < (kAggregateBufferSizeBytes / 3))) { in aggregateBuffer()
187 if ((smallSize > roomLeft) in aggregateBuffer()
199 memcpy(mAggregateBuffer->base() + bigSize, accessUnit->data(), smallSize); in aggregateBuffer()
200 bigSize += smallSize; in aggregateBuffer()
204 smallSize, bigSize, mAggregateBuffer->capacity()); in aggregateBuffer()
/frameworks/base/core/tests/coretests/src/android/view/
DViewFrameRateTest.java250 double smallSize = Math.sqrt(pixels); in noVelocityUsesCategorySmall() local
251 layoutParams.width = (int) smallSize; in noVelocityUsesCategorySmall()
252 layoutParams.height = (int) smallSize; in noVelocityUsesCategorySmall()
368 double smallSize = Math.sqrt(pixels); in noVelocityUsesCategoryLargeWidth() local
369 layoutParams.width = 1 + (int) Math.ceil(pixels / smallSize); in noVelocityUsesCategoryLargeWidth()
370 layoutParams.height = (int) smallSize; in noVelocityUsesCategoryLargeWidth()
407 double smallSize = Math.sqrt(pixels); in noVelocityUsesCategoryLargeHeight() local
408 layoutParams.width = (int) smallSize; in noVelocityUsesCategoryLargeHeight()
409 layoutParams.height = 1 + (int) Math.ceil(pixels / smallSize); in noVelocityUsesCategoryLargeHeight()
/frameworks/base/core/java/android/view/
DView.java25574 int smallSize = (int) (density * FRAME_RATE_SQUARE_SMALL_SIZE_DP); in sizeChange() local
25576 || (newWidth <= smallSize && newHeight <= smallSize); in sizeChange()