HomeSort by relevance Sort by last modified time
    Searched full:blockheight (Results 1 - 23 of 23) sorted by null

  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_rect.c 60 int blockheight = util_format_get_blockheight(format); local
64 assert(blockheight > 0);
67 dst_y /= blockheight;
69 height = (height + blockheight - 1)/blockheight;
71 src_y /= blockheight;
105 int blockheight = desc->block.height; local
109 assert(blockheight > 0);
112 dst_y /= blockheight;
114 height = (height + blockheight - 1)/blockheight
    [all...]
u_format.h 712 unsigned blockheight = util_format_get_blockheight(format); local
713 return (y + blockheight - 1) / blockheight;
  /external/mesa3d/src/gallium/auxiliary/util/
u_rect.c 60 int blockheight = util_format_get_blockheight(format); local
64 assert(blockheight > 0);
67 dst_y /= blockheight;
69 height = (height + blockheight - 1)/blockheight;
71 src_y /= blockheight;
105 int blockheight = desc->block.height; local
109 assert(blockheight > 0);
112 dst_y /= blockheight;
114 height = (height + blockheight - 1)/blockheight
    [all...]
u_format.h 712 unsigned blockheight = util_format_get_blockheight(format); local
713 return (y + blockheight - 1) / blockheight;
  /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...]
SurfaceTexture_test.cpp 687 const int blockHeight = h > 16 ? h / 16 : 1;
697 int parityY = (y / blockHeight) & 1;
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
nouveau_util.h 215 GLuint blockheight; local
216 _mesa_get_format_block_size(format, &blockwidth, &blockheight);
225 GLuint blockheight; local
226 _mesa_get_format_block_size(format, &blockwidth, &blockheight);
227 return (y + blockheight - 1) / blockheight;
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nouveau_util.h 215 GLuint blockheight; local
216 _mesa_get_format_block_size(format, &blockwidth, &blockheight);
225 GLuint blockheight; local
226 _mesa_get_format_block_size(format, &blockwidth, &blockheight);
227 return (y + blockheight - 1) / blockheight;
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/
FEGaussianBlur.cpp 177 // Split the job into "blockHeight"-sized jobs but there a few jobs that need to be slightly larger since
178 // blockHeight * jobs < total size. These extras are handled by the remainder "jobsWithExtra".
179 const int blockHeight = paintSize.height() / jobs;
188 currentY += job < jobsWithExtra ? blockHeight + 1 : blockHeight;
216 int adjustedBlockHeight = job < jobsWithExtra ? blockHeight + 1 : blockHeight;
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
HtmlConversationTemplates.java 115 public void appendSuperCollapsedHtml(int firstCollapsed, int blockHeight) {
120 append(sSuperCollapsed, firstCollapsed, blockHeight);
125 * @param blockHeight height of the border
127 public void appendBorder(int blockHeight) {
128 append(sBorder, blockHeight);
  /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...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
omxVCM4P10_MotionEstimationMB.c 910 * [in] BlockHeight - Height of current block
934 OMX_S32 BlockHeight,
966 for (y = 0; y < PartHeight; y += BlockHeight)
988 BlockHeight,
999 for (j = 0; j < (BlockHeight >> 2); j++)
1011 for (j = 0; j < (BlockHeight >> 3); j++)
1030 for (y = 0; y < (PartHeight/BlockHeight); y++)
1035 OffY = (PartStartY + y * BlockHeight) >> 2;
1050 for (y = 0; y < (PartHeight/BlockHeight); y++)
1055 OffY = (PartStartY + y * BlockHeight) >> 2;
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
svga_resource_texture.c 137 unsigned blockheight = util_format_get_blockheight(st->base.resource->format); local
138 h = st->hw_nblocksy * blockheight;
148 assert(y % blockheight == 0);
149 assert(h % blockheight == 0);
151 offset = y * st->base.stride / blockheight;
152 length = h * st->base.stride / blockheight;
  /external/mesa3d/src/gallium/drivers/svga/
svga_resource_texture.c 137 unsigned blockheight = util_format_get_blockheight(st->base.resource->format); local
138 h = st->hw_nblocksy * blockheight;
148 assert(y % blockheight == 0);
149 assert(h % blockheight == 0);
151 offset = y * st->base.stride / blockheight;
152 length = h * st->base.stride / blockheight;
  /frameworks/native/opengl/tests/gl_yuvtex/
gl_yuvtex.cpp 95 int blockHeight = yuvTexHeight > 16 ? yuvTexHeight / 16 : 1;
107 int parityY = (y / blockHeight) & 1;
  /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/mesa/src/src/mesa/main/
formats.c 70 GLubyte BlockWidth, BlockHeight;
    [all...]
  /external/mesa3d/src/mesa/main/
formats.c 70 GLubyte BlockWidth, BlockHeight;
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_reconstruct.h 79 u32 blockHeight,
h264bsd_reconstruct.c     [all...]
  /frameworks/av/media/libstagefright/tests/
SurfaceMediaSource_test.cpp 544 const int blockHeight = h > 16 ? h / 16 : 1;
554 int parityY = (y / blockHeight) & 1;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderBlockLineLayout.cpp     [all...]

Completed in 5378 milliseconds