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

/external/skia/gm/
H A Dimageblurtiled.cpp36 const SkScalar tile_size = SkIntToScalar(128); local
41 for (SkScalar y = bounds.top(); y < bounds.bottom(); y += tile_size) {
42 for (SkScalar x = bounds.left(); x < bounds.right(); x += tile_size) {
44 canvas->clipRect(SkRect::MakeXYWH(x, y, tile_size, tile_size));
H A Dimageresizetiled.cpp24 const SkScalar tile_size = SkIntToScalar(100); local
27 for (SkScalar y = 0; y < HEIGHT; y += tile_size) {
28 for (SkScalar x = 0; x < WIDTH; x += tile_size) {
30 canvas->clipRect(SkRect::MakeXYWH(x, y, tile_size, tile_size));
H A Dcomplexclip_blur_tiled.cpp36 const SkScalar tile_size = SkIntToScalar(128); variable
41 int ts = SkScalarCeilToInt(tile_size);
48 for (SkScalar y = bounds.top(); y < bounds.bottom(); y += tile_size) {
49 for (SkScalar x = bounds.left(); x < bounds.right(); x += tile_size) {
/external/opencv/cv/src/
H A Dcvmoments.cpp199 icvAccumulateMoments( double *tiles, CvSize size, CvSize tile_size, CvMoments * moments ) argument
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
[all...]
/external/skia/bench/
H A Dtile_analyze.py130 def GetTileMatrix(layout, tile_size, values, viewport):
134 layout, tile_size and viewport are given in string of format <w>x<h>, where
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/mesa3d/src/mesa/drivers/dri/i915/
H A Dintel_span.c70 uint32_t tile_size = 4096; local
83 + tile_x * tile_size
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dintel_span.c70 uint32_t tile_size = 4096; local
83 + tile_x * tile_size
/external/mesa3d/src/mesa/drivers/dri/intel/
H A Dintel_span.c70 uint32_t tile_size = 4096; local
83 + tile_x * tile_size
/external/libdrm/tests/exynos/
H A Dexynos_fimg2d_test.c149 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;
148 create_checkerboard_pattern(unsigned int num_tiles_x, unsigned int num_tiles_y, unsigned int tile_size) argument
/external/webp/src/dsp/
H A Dlossless_enc.c563 const int tile_size = 1 << bits; local
564 const int max_y = GetMin(tile_size, height - row_start);
565 const int max_x = GetMin(tile_size, width - col_start);
/external/webp/src/enc/
H A Dvp8l.c1126 const int tile_size = 1 << enc->transform_bits_; local
1131 enc->use_predict_ ? tile_size * width + width + 2 : 0;

Completed in 3051 milliseconds