HomeSort by relevance Sort by last modified time
    Searched defs: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));
  /external/skqp/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));
  /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_program.c 368 uint32_t tile_size = (tile_height * tile_width * local
376 uint32_t size = w_tiles * h_tiles * tile_size;
    [all...]
  /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/pdfium/fpdfsdk/
fpdfview_embeddertest.cpp 546 const int tile_size = 50; local
549 int tile_bitmap_size = scale * tile_size;
  /external/mesa3d/src/intel/isl/
isl.c 1285 const uint32_t tile_size = tile_info.phys_extent_B.width * local
    [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/webp/src/enc/
predictor_enc.c 307 const int tile_size = 1 << bits; local
308 const int max_y = GetMin(tile_size, height - start_y);
309 const int max_x = GetMin(tile_size, width - start_x);
  /external/libvpx/libvpx/vp9/encoder/
vp9_bitstream.c 1014 uint32_t tile_size; local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
intel_mipmap_tree.c 2371 uint32_t tile_size = 4096; local
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/gpu/
ir_emitter_unnested.cc 684 // length `tile_size`. Each thread block of `tile_size` x `num_rows` threads
688 // `tile_size` should usually be same as warp size.
699 const int64 tile_size, const int64 num_rows,
720 llvm::ArrayType::get(input.GetElementLlvmType(), tile_size),
722 tile_size + 1);
733 llvm_ir::AddRangeMetadata(0, num_rows * tile_size
921 constexpr int64 tile_size = 32; local
    [all...]

Completed in 680 milliseconds