HomeSort by relevance Sort by last modified time
    Searched refs:blockWidth (Results 1 - 25 of 32) sorted by null

1 2

  /external/chromium_org/third_party/angle/samples/dds_to_header/
main.cpp 57 std::size_t blockWidth = 0;
63 blockWidth = 1;
116 blockWidth = 4;
123 blockWidth = 4;
130 blockWidth = 4;
137 blockWidth = 1;
143 blockWidth = 1;
149 blockWidth = 1;
155 blockWidth = 1;
161 blockWidth = 1
    [all...]
  /frameworks/native/libs/gui/tests/
CpuConsumer_test.cpp 226 const int blockWidth = w > 16 ? w / 16 : 1;
237 int parityX = (x / blockWidth) & 1;
256 const int blockWidth = w > 16 ? w / 16 : 1;
263 int blockX = (x / blockWidth);
284 const int blockWidth = (w > 16 ? w / 8 : 2) & ~0x1;
290 int blockX = (x / blockWidth ) & 1;
310 const int blockWidth = w > 16 ? w / 16 : 1;
313 const int blockCols = w / blockWidth;
322 checkPixel(buf, blockWidth, 0, 63);
323 checkPixel(buf, blockWidth + 1, 0, 63)
    [all...]
FillBuffer.cpp 26 const int blockWidth = w > 16 ? w / 16 : 1;
36 int parityX = (x / blockWidth) & 1;
  /external/chromium_org/third_party/skia/gm/
etc1bitmap.cpp 37 int blockWidth = (origW + 3) >> 2;
41 if (blockWidth < 2 || blockHeight < 2) {
45 int newWidth = (blockWidth - 1) << 2;
58 memcpy(newData, origData, (blockWidth - 1)*ETC1_ENCODED_BLOCK_SIZE);
59 origData += blockWidth*ETC1_ENCODED_BLOCK_SIZE;
60 newData += (blockWidth - 1)*ETC1_ENCODED_BLOCK_SIZE;
  /external/skia/gm/
etc1bitmap.cpp 37 int blockWidth = (origW + 3) >> 2;
41 if (blockWidth < 2 || blockHeight < 2) {
45 int newWidth = (blockWidth - 1) << 2;
58 memcpy(newData, origData, (blockWidth - 1)*ETC1_ENCODED_BLOCK_SIZE);
59 origData += blockWidth*ETC1_ENCODED_BLOCK_SIZE;
60 newData += (blockWidth - 1)*ETC1_ENCODED_BLOCK_SIZE;
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d9/
formatutils9.h 32 GLuint blockWidth;
renderer9_utils.cpp 512 GLuint numBlocksWide = (width + d3dFormatInfo.blockWidth - 1) / d3dFormatInfo.blockWidth;
522 // Don't expand the size of full textures that are at least (blockWidth x blockHeight) already.
523 if (isImage || *requestWidth < static_cast<GLsizei>(d3dFormatInfo.blockWidth) ||
526 while (*requestWidth % d3dFormatInfo.blockWidth != 0 || *requestHeight % d3dFormatInfo.blockHeight != 0)
formatutils9.cpp 58 blockWidth(0),
73 static inline void InsertD3DFormatInfo(D3D9FormatInfoMap *map, D3DFORMAT format, GLuint bits, GLuint blockWidth,
79 info.blockWidth = blockWidth;
    [all...]
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d11/
formatutils11.h 30 GLuint blockWidth;
renderer11_utils.cpp     [all...]
  /external/deqp/modules/gles3/functional/
es3fASTCDecompressionCases.hpp 117 static void generateDefaultBlockData (deUint8* dst, int numBlocks, int blockWidth, int blockHeight);
es3fASTCDecompressionCases.cpp 440 static inline bool isValidBlockParams (const NormalBlockParams& params, int blockWidth, int blockHeight)
449 params.weightGridWidth <= blockWidth &&
829 static AssignBlock128 generateNormalBlock (const NormalBlockParams& blockParams, int blockWidth, int blockHeight, const NormalBlockISEInputs& iseInputs)
831 DE_ASSERT(isValidBlockParams(blockParams, blockWidth, blockHeight));
832 DE_UNREF(blockWidth); // \note For non-debug builds.
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
radeon_mipmap_tree.c 47 unsigned blockWidth, blockHeight;
50 _mesa_get_format_block_size(format, &blockWidth, &blockHeight);
55 stride = (width + blockWidth - 1) / blockWidth * blockBytes;
67 blockBytes, blockWidth,
81 unsigned blockWidth, blockHeight;
83 _mesa_get_format_block_size(format, &blockWidth, &blockHeight);
454 uint32_t blockWidth, blockHeight;
455 _mesa_get_format_block_size(image->base.Base.TexFormat, &blockWidth, &blockHeight);
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_mipmap_tree.c 47 unsigned blockWidth, blockHeight;
50 _mesa_get_format_block_size(format, &blockWidth, &blockHeight);
55 stride = (width + blockWidth - 1) / blockWidth * blockBytes;
67 blockBytes, blockWidth,
81 unsigned blockWidth, blockHeight;
83 _mesa_get_format_block_size(format, &blockWidth, &blockHeight);
454 uint32_t blockWidth, blockHeight;
455 _mesa_get_format_block_size(image->base.Base.TexFormat, &blockWidth, &blockHeight);
  /external/deqp/framework/common/
tcuCompressedTexture.cpp     [all...]
  /cts/tests/tests/uirendering/src/android/uirendering/cts/testclasses/
SweepTests.java 252 final int blockWidth = TEST_WIDTH / blockCount;
255 canvas.drawRect(i * blockWidth, 0, (i + 1) * blockWidth, TEST_HEIGHT, paint);
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_reconstruct.h 78 u32 blockWidth,
h264bsd_reconstruct.c     [all...]
  /frameworks/native/opengl/tests/gl_yuvtex/
gl_yuvtex.cpp 94 int blockWidth = yuvTexWidth > 16 ? yuvTexWidth / 16 : 1;
106 int parityX = (x / blockWidth) & 1;
  /frameworks/base/media/java/android/media/
MediaCodecInfo.java     [all...]
  /frameworks/native/opengl/tests/gl2_yuvtex/
gl2_yuvtex.cpp 194 int blockWidth = yuvTexWidth > 16 ? yuvTexWidth / 16 : 1;
211 int parityX = (x / blockWidth) & 1;
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/
loadimage.h 166 template <size_t blockWidth, size_t blockHeight, size_t blockSize>
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
TextAutosizer.cpp 861 float blockWidth = widthFromBlock(block);
862 float multiplier = m_pageInfo.m_frameWidth ? std::min(blockWidth, static_cast<float>(m_pageInfo.m_layoutWidth)) / m_pageInfo.m_frameWidth : 1.0f;
    [all...]
  /frameworks/av/media/libstagefright/tests/
SurfaceMediaSource_test.cpp 541 const int blockWidth = w > 16 ? w / 16 : 1;
551 int parityX = (x / blockWidth) & 1;
    [all...]
  /packages/apps/Gallery/src/com/android/camera/
GridViewSpecial.java 748 int columns, int blockWidth, Bitmap outline) {
756 mBlockWidth = blockWidth;
    [all...]

Completed in 2185 milliseconds

1 2