Searched defs:blockWidth (Results 1 - 7 of 7) sorted by relevance

/frameworks/native/libs/gui/tests/
H A DFillBuffer.cpp26 const int blockWidth = w > 16 ? w / 16 : 1; local
36 int parityX = (x / blockWidth) & 1;
H A DCpuConsumer_test.cpp226 const int blockWidth = w > 16 ? w / 16 : 1; local
237 int parityX = (x / blockWidth) & 1;
256 const int blockWidth = w > 16 ? w / 16 : 1; local
263 int blockX = (x / blockWidth);
284 const int blockWidth = (w > 16 ? w / 8 : 2) & ~0x1; local
290 int blockX = (x / blockWidth ) & 1;
310 const int blockWidth = w > 16 ? w / 16 : 1; local
313 const int blockCols = w / blockWidth;
322 checkPixel(buf, blockWidth, 0, 63);
323 checkPixel(buf, blockWidth
349 const int blockWidth = w > 16 ? w / 16 : 1; local
392 const int blockWidth = (w > 16 ? w / 8 : 2) & ~0x1; local
[all...]
/frameworks/native/opengl/tests/gl_yuvtex/
H A Dgl_yuvtex.cpp94 int blockWidth = yuvTexWidth > 16 ? yuvTexWidth / 16 : 1; local
106 int parityX = (x / blockWidth) & 1;
/frameworks/native/opengl/tests/gl2_yuvtex/
H A Dgl2_yuvtex.cpp194 int blockWidth = yuvTexWidth > 16 ? yuvTexWidth / 16 : 1; local
211 int parityX = (x / blockWidth) & 1;
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_reconstruct.c2214 blockWidth width of block
2229 u32 blockWidth,
2249 ASSERT(blockWidth);
2252 xstop = x0 + (i32)blockWidth;
2266 x0 = -(i32)blockWidth;
2274 xstop = x0 + (i32)blockWidth;
2285 x = (i32)blockWidth - left - right;
2222 h264bsdFillBlock( u8 *ref, u8 *fill, i32 x0, i32 y0, u32 width, u32 height, u32 blockWidth, u32 blockHeight, u32 fillScanLength) argument
/frameworks/av/media/libstagefright/tests/
H A DSurfaceMediaSource_test.cpp541 const int blockWidth = w > 16 ? w / 16 : 1; local
551 int parityX = (x / blockWidth) & 1;
/frameworks/base/media/java/android/media/
H A DMediaCodecInfo.java1251 int blockWidth, int blockHeight,
1253 checkPowerOfTwo(blockWidth, "blockWidth must be a power of two");
1256 final int newBlockWidth = Math.max(blockWidth, mBlockWidth);
1275 factor = newBlockWidth * newBlockHeight / blockWidth / blockHeight;
1281 newBlockWidth / blockWidth);
1364 int blockWidth, int blockHeight,
1368 blockWidth, blockHeight, Range.create(1, maxBlocks),
1375 1, maxHorizontalBlocks / (mBlockWidth / blockWidth));
1474 16 /* blockWidth */, 1
1250 applyBlockLimits( int blockWidth, int blockHeight, Range<Integer> counts, Range<Long> rates, Range<Rational> ratios) argument
1361 applyMacroBlockLimits( int maxHorizontalBlocks, int maxVerticalBlocks, int maxBlocks, long maxBlocksPerSecond, int blockWidth, int blockHeight, int widthAlignment, int heightAlignment) argument
[all...]

Completed in 253 milliseconds