HomeSort by relevance Sort by last modified time
    Searched defs:tile_width (Results 1 - 11 of 11) sorted by null

  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_span.c 71 uint32_t tile_width = 64; local
75 uint32_t tile_x = x / tile_width;
79 uint32_t byte_x = x % tile_width;
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_tile.c 45 const unsigned tile_width = 8, tile_height = 4; local
46 const unsigned tiles_in_row = (width + (tile_width - 1)) / tile_width;
51 for (col = 0; col < width; col += tile_width, ++k)
60 unsigned columns = MIN2(tile_width, width - col);
62 dst2 += tile_width;
76 const unsigned tile_width = 4, tile_height = 4; local
77 const unsigned tiles_in_row = (width + (tile_width - 1)) / tile_width;
82 for (col = 0; col < width; col += tile_width, ++k
107 const unsigned tile_width = 8, tile_height = 2; local
138 const unsigned tile_width = 4, tile_height = 2; local
169 const unsigned tile_width = 2, tile_height = 2; local
259 const unsigned tile_width = 8, tile_height = 4; local
292 const unsigned tile_width = 8, tile_height = 2; local
325 const unsigned tile_width = 4, tile_height = 4; local
358 const unsigned tile_width = 4, tile_height = 2; local
391 const unsigned tile_width = 2, tile_height = 2; local
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/
r300_texture_desc.c 122 unsigned tile_width, width, stride; local
140 tile_width = r300_get_pixel_alignment(tex->b.b.format,
145 width = align(width, tile_width);
  /external/ImageMagick/coders/
fpx.c 177 tile_width,
215 tile_width=64;
228 &width,&height,&tile_width,&tile_height,&colorspace,&flashpix);
322 if (((width >> i) < tile_width) || ((height >> i) < tile_height))
818 tile_width;
844 tile_width=64;
874 image->rows,tile_width,tile_height,colorspace,background_color,
174 tile_width, local
812 tile_width; local
    [all...]
tiff.c 2823 tile_width; local
    [all...]
  /external/opencv/otherlibs/highgui/
grfmt_tiff.cpp 202 int tile_width = tile_width0, ok; local
204 if( x + tile_width > m_width )
205 tile_width = m_width - x;
217 icvCvt_BGRA2BGR_8u_C4C3R( buffer + i*tile_width*4, 0,
219 cvSize(tile_width,1), 2 );
221 icvCvt_BGRA2Gray_8u_C4C1R( buffer + i*tile_width*4, 0,
223 cvSize(tile_width,1), 2 );
  /external/ImageMagick/MagickCore/
shear.c 765 tile_width;
773 GetPixelCacheTileSize(image,&tile_width,&tile_height);
774 tile_width=image->columns;
787 for ( ; tile_x < (ssize_t) image->columns; tile_x+=(ssize_t) tile_width)
805 width=tile_width;
806 if ((tile_x+(ssize_t) tile_width) > (ssize_t) image->columns)
807 width=(size_t) (tile_width-(tile_x+tile_width-image->columns));
979 tile_width;
987 GetPixelCacheTileSize(image,&tile_width,&tile_height)
761 tile_width; local
975 tile_width; local
    [all...]
widget.c 2802 #define tile_width macro
    [all...]
  /external/webp/src/dsp/
lossless.c 210 const int tile_width = 1 << transform->bits_; local
211 const int mask = tile_width - 1;
225 int x_end = (x & ~mask) + tile_width;
291 const int tile_width = 1 << transform->bits_; local
292 const int mask = tile_width - 1;
307 VP8LTransformColorInverse(&m, src, tile_width, dst);
308 src += tile_width;
309 dst += tile_width;
  /external/webp/src/enc/
predictor_enc.c 519 const uint32_t* argb, int stride, int tile_width, int tile_height,
525 VP8LCollectColorRedTransforms(argb, stride, tile_width, tile_height,
542 const uint32_t* argb, int stride, int tile_width, int tile_height,
549 argb, stride, tile_width, tile_height, prev_x, prev_y,
560 argb, stride, tile_width, tile_height, prev_x, prev_y,
572 const uint32_t* argb, int stride, int tile_width, int tile_height,
578 VP8LCollectColorBlueTransforms(argb, stride, tile_width, tile_height,
606 const uint32_t* argb, int stride, int tile_width, int tile_height,
620 argb, stride, tile_width, tile_height, prev_x, prev_y,
630 argb, stride, tile_width, tile_height, prev_x, prev_y
666 const int tile_width = all_x_max - tile_x_offset; local
    [all...]
  /external/libdrm/intel/
intel_bufmgr_gem.c 368 unsigned long tile_width; local
380 tile_width = 512;
382 tile_width = 128;
386 return ROUND_UP_TO(pitch, tile_width);
397 for (i = tile_width; i < pitch; i <<= 1)
    [all...]

Completed in 1812 milliseconds