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

  /external/skia/gm/
complexclip_blur_tiled.cpp 36 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) {
imageresizetiled.cpp 24 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));
imageblurtiled.cpp 36 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));
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_span.c 70 uint32_t tile_size = 4096; local
83 + tile_x * tile_size
  /external/opencv3/modules/imgproc/src/
clahe.cpp 74 int tile_size[2]; local
75 tile_size[0] = tileSize.width;
76 tile_size[1] = tileSize.height;
84 idx = k.set(idx, tile_size);
100 int tile_size[2]; local
101 tile_size[0] = tileSize.width;
102 tile_size[1] = tileSize.height;
118 idx = k.set(idx, tile_size);
  /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/opencv3/3rdparty/libwebp/enc/
vp8l.c 792 const int tile_size = 1 << enc->transform_bits_; local
794 const uint64_t argb_scratch_size = tile_size * width + width;
    [all...]
  /external/webp/src/dsp/
lossless_enc.c 563 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);
    [all...]
  /external/opencv3/3rdparty/libwebp/dsp/
lossless.c 528 const int tile_size = 1 << bits; local
529 const int ymax = (tile_size <= height - row_start) ?
530 tile_size : height - row_start;
531 const int xmax = (tile_size <= width - col_start) ?
532 tile_size : width - col_start;
583 const int tile_size = 1 << bits; local
584 const int ymax = (tile_size <= height - row_start) ?
585 tile_size : height - row_start;
586 const int xmax = (tile_size <= width - col_start) ?
587 tile_size : width - col_start
    [all...]
  /external/webp/src/enc/
vp8l.c 1126 const int tile_size = 1 << enc->transform_bits_; local
    [all...]

Completed in 2779 milliseconds