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

/external/skia/gm/
H A Dimageblurtiled.cpp35 const SkScalar tile_size = SkIntToScalar(128); local
40 for (SkScalar y = bounds.top(); y < bounds.bottom(); y += tile_size) {
41 for (SkScalar x = bounds.left(); x < bounds.right(); x += tile_size) {
43 canvas->clipRect(SkRect::MakeXYWH(x, y, tile_size, tile_size));
H A Dimageresizetiled.cpp41 const SkScalar tile_size = SkIntToScalar(100); variable
44 for (SkScalar y = 0; y < HEIGHT; y += tile_size) {
45 for (SkScalar x = 0; x < WIDTH; x += tile_size) {
47 canvas->clipRect(SkRect::MakeXYWH(x, y, tile_size, 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/webp/src/dsp/
H A Dlossless.c609 const int tile_size = 1 << bits; local
610 const int max_y = GetMin(tile_size, height - row_start);
611 const int max_x = GetMin(tile_size, width - col_start);
657 const int tile_size = 1 << bits; local
658 const int max_y = GetMin(tile_size, height - row_start);
659 const int max_x = GetMin(tile_size, width - col_start);
/external/webp/src/enc/
H A Dvp8l.c852 const int tile_size = 1 << enc->transform_bits_; local
854 const uint64_t argb_scratch_size = tile_size * width + width;
/external/libhevc/decoder/
H A Dihevcd_api.c1977 WORD32 tile_size; local
1979 tile_size = max_tile_cols * max_tile_rows;
1980 tile_size *= sizeof(tile_t);
1983 ps_mem_rec->u4_mem_size = MAX_PPS_CNT * tile_size;

Completed in 260 milliseconds