Home
last modified time | relevance | path

Searched refs:tile_size (Results 1 – 11 of 11) sorted by relevance

/external/skia/gm/
Dimageresizetiled.cpp24 const SkScalar tile_size = SkIntToScalar(100); in DEF_SIMPLE_GM() local
27 for (SkScalar y = 0; y < HEIGHT; y += tile_size) { in DEF_SIMPLE_GM()
28 for (SkScalar x = 0; x < WIDTH; x += tile_size) { in DEF_SIMPLE_GM()
30 canvas->clipRect(SkRect::MakeXYWH(x, y, tile_size, tile_size)); in DEF_SIMPLE_GM()
Dimageblurtiled.cpp36 const SkScalar tile_size = SkIntToScalar(128); in onDraw() local
41 for (SkScalar y = bounds.top(); y < bounds.bottom(); y += tile_size) { in onDraw()
42 for (SkScalar x = bounds.left(); x < bounds.right(); x += tile_size) { in onDraw()
44 canvas->clipRect(SkRect::MakeXYWH(x, y, tile_size, tile_size)); in onDraw()
Dcomplexclip_blur_tiled.cpp36 const SkScalar tile_size = SkIntToScalar(128); in onDraw() local
41 int ts = SkScalarCeilToInt(tile_size); in onDraw()
48 for (SkScalar y = bounds.top(); y < bounds.bottom(); y += tile_size) { in onDraw()
49 for (SkScalar x = bounds.left(); x < bounds.right(); x += tile_size) { in onDraw()
/external/opencv/cv/src/
Dcvmoments.cpp199 icvAccumulateMoments( double *tiles, CvSize size, CvSize tile_size, CvMoments * moments ) in icvAccumulateMoments() argument
203 for( y = 0; y < size.height; y += tile_size.height ) in icvAccumulateMoments()
205 for( x = 0; x < size.width; x += tile_size.width, tiles += 10 ) in icvAccumulateMoments()
381 CvSize size, tile_size = { 32, 32 }; in cvMoments() local
471 tile_size = size; in cvMoments()
473 tile_num = ((size.width + tile_size.width - 1)/tile_size.width)* in cvMoments()
474 ((size.height + tile_size.height - 1)/tile_size.height); in cvMoments()
478 for( y = 0, k = 0; y < size.height; y += tile_size.height ) in cvMoments()
480 CvSize cur_tile_size = tile_size; in cvMoments()
484 for( x = 0; x < size.width; x += tile_size.width, k++ ) in cvMoments()
[all …]
/external/skia/bench/
Dtile_analyze.py130 def GetTileMatrix(layout, tile_size, values, viewport): argument
145 [tile_x, tile_y] = [int(i) for i in tile_size.split('x')]
231 tile_size = config.split('_')[1]
233 not re.search(DIMENSIONS_RE, tile_size) or
237 layout, tile_size, value_li, viewport)
/external/libdrm/tests/exynos/
Dexynos_fimg2d_test.c149 unsigned int num_tiles_y, unsigned int tile_size) in create_checkerboard_pattern() argument
153 const unsigned int stride = num_tiles_x * tile_size; in create_checkerboard_pattern()
155 if (posix_memalign((void*)&buf, 64, num_tiles_y * tile_size * stride * 4) != 0) in create_checkerboard_pattern()
162 for (i = 0; i < tile_size; ++i) { in create_checkerboard_pattern()
163 for (j = 0; j < tile_size; ++j) { in create_checkerboard_pattern()
164 buf[x * tile_size + y * stride * tile_size + i + j * stride] = color; in create_checkerboard_pattern()
/external/mesa3d/src/mesa/drivers/dri/i965/
Dintel_span.c70 uint32_t tile_size = 4096; in intel_offset_S8() local
83 + tile_x * tile_size in intel_offset_S8()
/external/mesa3d/src/mesa/drivers/dri/intel/
Dintel_span.c70 uint32_t tile_size = 4096; in intel_offset_S8() local
83 + tile_x * tile_size in intel_offset_S8()
/external/mesa3d/src/mesa/drivers/dri/i915/
Dintel_span.c70 uint32_t tile_size = 4096; in intel_offset_S8() local
83 + tile_x * tile_size in intel_offset_S8()
/external/webp/src/dsp/
Dlossless_enc.c563 const int tile_size = 1 << bits; in GetBestPredictorForTile() local
564 const int max_y = GetMin(tile_size, height - row_start); in GetBestPredictorForTile()
565 const int max_x = GetMin(tile_size, width - col_start); in GetBestPredictorForTile()
/external/webp/src/enc/
Dvp8l.c1126 const int tile_size = 1 << enc->transform_bits_; in AllocateTransformBuffer() local
1131 enc->use_predict_ ? tile_size * width + width + 2 : 0; in AllocateTransformBuffer()