Home
last modified time | relevance | path

Searched refs:blockHeight (Results 1 – 8 of 8) sorted by relevance

/frameworks/native/libs/gui/tests/
DCpuConsumer_test.cpp227 const int blockHeight = h > 16 ? h / 16 : 1; in fillGreyscaleBuffer() local
238 int parityY = (y / blockHeight) & 1; in fillGreyscaleBuffer()
257 const int blockHeight = h > 16 ? h / 16 : 1; in fillRgba8888Buffer() local
264 int blockY = (y / blockHeight); in fillRgba8888Buffer()
285 const int blockHeight = (h > 16 ? h / 8 : 2) & ~0x1; in fillBayerRawBuffer() local
291 int blockY = (y / blockHeight) & 1; in fillBayerRawBuffer()
311 const int blockHeight = h > 16 ? h / 16 : 1; in checkGreyscaleBuffer() local
312 const int blockRows = h / blockHeight; in checkGreyscaleBuffer()
328 checkPixel(buf, 0, blockHeight, 63); in checkGreyscaleBuffer()
329 checkPixel(buf, 1, blockHeight, 63); in checkGreyscaleBuffer()
[all …]
DFillBuffer.cpp27 const int blockHeight = h > 16 ? h / 16 : 1; in fillYV12Buffer() local
37 int parityY = (y / blockHeight) & 1; in fillYV12Buffer()
/frameworks/native/opengl/tests/gl_yuvtex/
Dgl_yuvtex.cpp95 int blockHeight = yuvTexHeight > 16 ? yuvTexHeight / 16 : 1; in setupYuvTexSurface() local
107 int parityY = (y / blockHeight) & 1; in setupYuvTexSurface()
/frameworks/native/opengl/tests/gl2_yuvtex/
Dgl2_yuvtex.cpp195 int blockHeight = yuvTexHeight > 16 ? yuvTexHeight / 16 : 1; in setupYuvTexSurface() local
212 int parityY = (y / blockHeight) & 1; in setupYuvTexSurface()
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
Dh264bsd_reconstruct.h79 u32 blockHeight,
Dh264bsd_reconstruct.c2230 u32 blockHeight, in h264bsdFillBlock() argument
2250 ASSERT(blockHeight); in h264bsdFillBlock()
2253 ystop = y0 + (i32)blockHeight; in h264bsdFillBlock()
2263 y0 = -(i32)blockHeight; in h264bsdFillBlock()
2275 ystop = y0 + (i32)blockHeight; in h264bsdFillBlock()
2289 y = (i32)blockHeight - top - bottom; in h264bsdFillBlock()
/frameworks/base/media/java/android/media/
DMediaCodecInfo.java1598 int blockWidth, int blockHeight, in applyBlockLimits() argument
1601 checkPowerOfTwo(blockHeight, "blockHeight must be a power of two"); in applyBlockLimits()
1604 final int newBlockHeight = Math.max(blockHeight, mBlockHeight); in applyBlockLimits()
1622 factor = newBlockWidth * newBlockHeight / blockWidth / blockHeight; in applyBlockLimits()
1627 ratios, newBlockHeight / blockHeight, in applyBlockLimits()
1711 int blockWidth, int blockHeight, in applyMacroBlockLimits() argument
1715 blockWidth, blockHeight, Range.create(1, maxBlocks), in applyMacroBlockLimits()
1725 1, maxVerticalBlocks / (mBlockHeight / blockHeight)); in applyMacroBlockLimits()
/frameworks/av/media/libstagefright/tests/
DSurfaceMediaSource_test.cpp543 const int blockHeight = h > 16 ? h / 16 : 1; in fillYV12Buffer() local
553 int parityY = (y / blockHeight) & 1; in fillYV12Buffer()