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

1 2

  /external/chromium_org/third_party/angle/samples/dds_to_header/
main.cpp 58 std::size_t blockHeight = 0;
64 blockHeight = 1;
117 blockHeight = 4;
124 blockHeight = 4;
131 blockHeight = 4;
138 blockHeight = 1;
144 blockHeight = 1;
150 blockHeight = 1;
156 blockHeight = 1;
162 blockHeight = 1
    [all...]
  /frameworks/native/libs/gui/tests/
CpuConsumer_test.cpp 227 const int blockHeight = h > 16 ? h / 16 : 1;
238 int parityY = (y / blockHeight) & 1;
257 const int blockHeight = h > 16 ? h / 16 : 1;
264 int blockY = (y / blockHeight);
285 const int blockHeight = (h > 16 ? h / 8 : 2) & ~0x1;
291 int blockY = (y / blockHeight) & 1;
311 const int blockHeight = h > 16 ? h / 16 : 1;
312 const int blockRows = h / blockHeight;
328 checkPixel(buf, 0, blockHeight, 63);
329 checkPixel(buf, 1, blockHeight, 63)
    [all...]
FillBuffer.cpp 27 const int blockHeight = h > 16 ? h / 16 : 1;
37 int parityY = (y / blockHeight) & 1;
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d9/
formatutils9.h 33 GLuint blockHeight;
renderer9_utils.cpp 513 GLuint numBlocksHight = (height + d3dFormatInfo.blockHeight - 1) / d3dFormatInfo.blockHeight;
522 // Don't expand the size of full textures that are at least (blockWidth x blockHeight) already.
524 *requestHeight < static_cast<GLsizei>(d3dFormatInfo.blockHeight))
526 while (*requestWidth % d3dFormatInfo.blockWidth != 0 || *requestHeight % d3dFormatInfo.blockHeight != 0)
formatutils9.cpp 59 blockHeight(0),
74 GLuint blockHeight, GLenum internalFormat, MipGenerationFunction mipFunc,
80 info.blockHeight = blockHeight;
    [all...]
Image9.cpp 109 unsigned int rows = desc.Height / d3dFormatInfo.blockHeight;
111 unsigned int bytes = d3d9::ComputeBlockSize(desc.Format, desc.Width, d3dFormatInfo.blockHeight);
429 ASSERT(yoffset % d3d9::GetD3DFormatInfo(d3d9FormatInfo.texFormat).blockHeight == 0);
  /external/chromium_org/third_party/skia/gm/
etc1bitmap.cpp 38 int blockHeight = (origH + 3) >> 2;
41 if (blockWidth < 2 || blockHeight < 2) {
46 int newHeight = (blockHeight - 1) << 2;
57 for (int j = 0; j < blockHeight - 1; ++j) {
  /external/skia/gm/
etc1bitmap.cpp 38 int blockHeight = (origH + 3) >> 2;
41 if (blockWidth < 2 || blockHeight < 2) {
46 int newHeight = (blockHeight - 1) << 2;
57 for (int j = 0; j < blockHeight - 1; ++j) {
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d11/
formatutils11.h 31 GLuint blockHeight;
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)
450 params.weightGridHeight <= blockHeight &&
829 static AssignBlock128 generateNormalBlock (const NormalBlockParams& blockParams, int blockWidth, int blockHeight, const NormalBlockISEInputs& iseInputs)
831 DE_ASSERT(isValidBlockParams(blockParams, blockWidth, blockHeight));
833 DE_UNREF(blockHeight); // \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);
81 unsigned blockWidth, blockHeight;
83 _mesa_get_format_block_size(format, &blockWidth, &blockHeight);
85 return rowStride * ((height + blockHeight - 1) / blockHeight) * depth;
454 uint32_t blockWidth, blockHeight;
455 _mesa_get_format_block_size(image->base.Base.TexFormat, &blockWidth, &blockHeight);
456 rows = (rows + blockHeight - 1) / blockHeight;
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_mipmap_tree.c 47 unsigned blockWidth, blockHeight;
50 _mesa_get_format_block_size(format, &blockWidth, &blockHeight);
81 unsigned blockWidth, blockHeight;
83 _mesa_get_format_block_size(format, &blockWidth, &blockHeight);
85 return rowStride * ((height + blockHeight - 1) / blockHeight) * depth;
454 uint32_t blockWidth, blockHeight;
455 _mesa_get_format_block_size(image->base.Base.TexFormat, &blockWidth, &blockHeight);
456 rows = (rows + blockHeight - 1) / blockHeight;
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
HtmlConversationTemplates.java 101 public void appendSuperCollapsedHtml(int firstCollapsed, int blockHeight) {
106 append(sSuperCollapsed, firstCollapsed, blockHeight);
  /external/deqp/framework/common/
tcuCompressedTexture.cpp     [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_reconstruct.h 79 u32 blockHeight,
h264bsd_reconstruct.c     [all...]
  /frameworks/native/opengl/tests/gl_yuvtex/
gl_yuvtex.cpp 95 int blockHeight = yuvTexHeight > 16 ? yuvTexHeight / 16 : 1;
107 int parityY = (y / blockHeight) & 1;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/line/
BreakingContextInlineHeaders.h 207 LayoutUnit blockHeight = block->logicalHeight();
212 toRenderInline(containerBlock)->layer()->setStaticInlinePosition(block->startAlignedOffsetForLine(blockHeight, false));
213 toRenderInline(containerBlock)->layer()->setStaticBlockPosition(blockHeight);
219 block->updateStaticInlinePositionForChild(child, blockHeight);
220 child->layer()->setStaticBlockPosition(blockHeight);
    [all...]
  /frameworks/base/media/java/android/media/
MediaCodecInfo.java     [all...]
  /frameworks/native/opengl/tests/gl2_yuvtex/
gl2_yuvtex.cpp 195 int blockHeight = yuvTexHeight > 16 ? yuvTexHeight / 16 : 1;
212 int parityY = (y / blockHeight) & 1;
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/
loadimage.h 166 template <size_t blockWidth, size_t blockHeight, size_t blockSize>
  /frameworks/av/media/libstagefright/tests/
SurfaceMediaSource_test.cpp 542 const int blockHeight = h > 16 ? h / 16 : 1;
552 int parityY = (y / blockHeight) & 1;
    [all...]

Completed in 611 milliseconds

1 2