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

  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_span.c 72 uint32_t tile_height = 64; local
76 uint32_t tile_y = y / tile_height;
80 uint32_t byte_y = y % tile_height;
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_tile.c 45 const unsigned tile_width = 8, tile_height = 4; local
49 for (row = 0; row < height; row += tile_height)
58 for (j = 0; j < MIN2(tile_height, height - row); ++j)
76 const unsigned tile_width = 4, tile_height = 4; local
80 for (row = 0; row < height; row += tile_height)
89 for (j = 0; j < MIN2(tile_height, height - row); ++j)
107 const unsigned tile_width = 8, tile_height = 2; local
111 for (row = 0; row < height; row += tile_height)
120 for (j = 0; j < MIN2(tile_height, height - row); ++j)
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.c 1085 uint32_t offset, tile_height; local
    [all...]
r300_texture_desc.c 159 unsigned height, tile_height; local
172 tile_height = r300_get_pixel_alignment(tex->b.b.format,
177 height = align(height, tile_height);
194 height >= tile_height * 3) {
195 height = align(height, tile_height * 2);
198 *out_aligned_for_cbzb = height % (tile_height * 2) == 0;
  /external/opencv/otherlibs/highgui/
grfmt_tiff.cpp 195 int tile_height = tile_height0; local
197 if( y + tile_height > m_height )
198 tile_height = m_height - y;
215 for( i = 0; i < tile_height; i++ )
218 data + x*3 + step*(tile_height - i - 1), 0,
222 data + x + step*(tile_height - i - 1), 0,

Completed in 817 milliseconds