HomeSort by relevance Sort by last modified time
    Searched refs:tile_size (Results 1 - 12 of 12) sorted by null

  /external/skia/gm/
imageresizetiled.cpp 25 const SkScalar tile_size = SkIntToScalar(100); local
26 for (SkScalar y = 0; y < HEIGHT; y += tile_size) {
27 for (SkScalar x = 0; x < WIDTH; x += tile_size) {
29 canvas->clipRect(SkRect::MakeXYWH(x, y, tile_size, tile_size));
  /cts/apps/CameraITS/tests/dng_noise_model/
dng_noise_model.py 31 # Convert a 2D array a to a 4D array with dimensions [tile_size,
32 # tile_size, row, col] where row, col are tile indices.
33 def tile(a, tile_size):
34 tile_rows, tile_cols = a.shape[0]/tile_size, a.shape[1]/tile_size
35 a = a.reshape([tile_rows, tile_size, tile_cols, tile_size])
48 tile_size = 64
140 p = p[0:p.shape[0] - p.shape[0]%tile_size,
141 0:p.shape[1] - p.shape[1]%tile_size]
    [all...]
  /external/opencv/cv/src/
cvmoments.cpp 199 icvAccumulateMoments( double *tiles, CvSize size, CvSize tile_size, CvMoments * moments )
203 for( y = 0; y < size.height; y += tile_size.height )
205 for( x = 0; x < size.width; x += tile_size.width, tiles += 10 )
381 CvSize size, tile_size = { 32, 32 }; local
471 tile_size = size;
473 tile_num = ((size.width + tile_size.width - 1)/tile_size.width)*
474 ((size.height + tile_size.height - 1)/tile_size.height);
478 for( y = 0, k = 0; y < size.height; y += tile_size.height
    [all...]
  /external/mesa3d/src/gallium/drivers/vc4/
vc4_nir_lower_txf_ms.c 80 uint32_t tile_size = (tile_h * tile_w * local
90 nir_imm_int(b, tile_size)),
93 tile_size))));
vc4_blit.c 45 is_tile_unaligned(unsigned size, unsigned tile_size)
47 return size & (tile_size - 1);
vc4_program.c 368 uint32_t tile_size = (tile_height * tile_width * local
376 uint32_t size = w_tiles * h_tiles * tile_size;
    [all...]
  /external/libdrm/tests/exynos/
exynos_fimg2d_test.c 149 unsigned int num_tiles_y, unsigned int tile_size)
153 const unsigned int stride = num_tiles_x * tile_size;
155 if (posix_memalign((void*)&buf, 64, num_tiles_y * tile_size * stride * 4) != 0)
162 for (i = 0; i < tile_size; ++i) {
163 for (j = 0; j < tile_size; ++j) {
164 buf[x * tile_size + y * stride * tile_size + i + j * stride] = color;
  /external/mesa3d/src/gallium/drivers/etnaviv/
etnaviv_clear_blit.c 317 size_t tile_size; local
324 tile_size = util_format_get_blocksize(blit_info->src.format) * 4 * 4;
341 memcpy(drow, srow, tile_size * blit_info->src.box.width);
  /external/webp/src/enc/
predictor_enc.c 294 const int tile_size = 1 << bits; local
295 const int max_y = GetMin(tile_size, height - start_y);
296 const int max_x = GetMin(tile_size, width - start_x);
  /external/libvpx/libvpx/vp9/encoder/
vp9_bitstream.c 1012 uint32_t tile_size; local
    [all...]
  /external/mesa3d/src/intel/isl/
isl.c 1285 const uint32_t tile_size = tile_info.phys_extent_B.width * local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
intel_mipmap_tree.c 2371 uint32_t tile_size = 4096; local
    [all...]

Completed in 272 milliseconds