Searched refs:blockHeight (Results 1 – 8 of 8) sorted by relevance
/frameworks/native/libs/gui/tests/ |
D | CpuConsumer_test.cpp | 227 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 …]
|
D | FillBuffer.cpp | 27 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/ |
D | gl_yuvtex.cpp | 95 int blockHeight = yuvTexHeight > 16 ? yuvTexHeight / 16 : 1; in setupYuvTexSurface() local 107 int parityY = (y / blockHeight) & 1; in setupYuvTexSurface()
|
/frameworks/native/opengl/tests/gl2_yuvtex/ |
D | gl2_yuvtex.cpp | 195 int blockHeight = yuvTexHeight > 16 ? yuvTexHeight / 16 : 1; in setupYuvTexSurface() local 212 int parityY = (y / blockHeight) & 1; in setupYuvTexSurface()
|
/frameworks/base/media/java/android/media/ |
D | MediaCodecInfo.java | 1251 int blockWidth, int blockHeight, in applyBlockLimits() argument 1254 checkPowerOfTwo(blockHeight, "blockHeight must be a power of two"); in applyBlockLimits() 1257 final int newBlockHeight = Math.max(blockHeight, mBlockHeight); in applyBlockLimits() 1275 factor = newBlockWidth * newBlockHeight / blockWidth / blockHeight; in applyBlockLimits() 1280 ratios, newBlockHeight / blockHeight, in applyBlockLimits() 1364 int blockWidth, int blockHeight, in applyMacroBlockLimits() argument 1368 blockWidth, blockHeight, Range.create(1, maxBlocks), in applyMacroBlockLimits() 1378 1, maxVerticalBlocks / (mBlockHeight / blockHeight)); in applyMacroBlockLimits()
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/ |
D | h264bsd_reconstruct.h | 79 u32 blockHeight,
|
D | h264bsd_reconstruct.c | 2230 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/av/media/libstagefright/tests/ |
D | SurfaceMediaSource_test.cpp | 542 const int blockHeight = h > 16 ? h / 16 : 1; in fillYV12Buffer() local 552 int parityY = (y / blockHeight) & 1; in fillYV12Buffer()
|