/external/skia/gm/ |
D | imageresizetiled.cpp | 27 const SkScalar tile_size = SkIntToScalar(100); in DEF_SIMPLE_GM() local 28 for (SkScalar y = 0; y < HEIGHT; y += tile_size) { in DEF_SIMPLE_GM() 29 for (SkScalar x = 0; x < WIDTH; x += tile_size) { in DEF_SIMPLE_GM() 31 canvas->clipRect(SkRect::MakeXYWH(x, y, tile_size, tile_size)); in DEF_SIMPLE_GM()
|
/external/skqp/gm/ |
D | imageresizetiled.cpp | 27 const SkScalar tile_size = SkIntToScalar(100); in DEF_SIMPLE_GM() local 28 for (SkScalar y = 0; y < HEIGHT; y += tile_size) { in DEF_SIMPLE_GM() 29 for (SkScalar x = 0; x < WIDTH; x += tile_size) { in DEF_SIMPLE_GM() 31 canvas->clipRect(SkRect::MakeXYWH(x, y, tile_size, tile_size)); in DEF_SIMPLE_GM()
|
/external/tensorflow/tensorflow/compiler/xla/service/llvm_ir/ |
D | sort_util.cc | 148 const std::vector<llvm::Value*>& param_shmem_buffers, int64 tile_size, in EmitTiledCompareLoop() argument 154 llvm_ir::AddRangeMetadata(0, tile_size / 2, in EmitTiledCompareLoop() 234 if (dimension_to_sort_bound % tile_size) { in EmitTiledCompareLoop() 243 RoundDownToNearest(dimension_to_sort_bound, tile_size))), in EmitTiledCompareLoop() 246 dimension_to_sort_bound % tile_size, params.size(), in EmitTiledCompareLoop() 252 tile_size, params.size(), element_pair_index, xor_mask, in EmitTiledCompareLoop() 259 tile_size, params.size(), element_pair_index, xor_mask, in EmitTiledCompareLoop() 296 int64 num_iterations_in_sort_dim, const int64 tile_size, in EmitSortInPlace() argument 333 tile_size); in EmitSortInPlace() 364 values_arrays, param_shmem_buffers, tile_size, emit_compare_callback, in EmitSortInPlace()
|
D | sort_util.h | 41 int64 num_iterations_in_sort_dim, int64 tile_size,
|
/external/libaom/libaom/examples/ |
D | lightfield_tile_list_decoder.c | 53 unsigned int tile_size = 0; in write_tile_yuv1d() local 54 if (aom_codec_control(codec, AV1D_GET_TILE_SIZE, &tile_size)) in write_tile_yuv1d() 56 const unsigned int tile_width = tile_size >> 16; in write_tile_yuv1d() 57 const unsigned int tile_height = tile_size & 65535; in write_tile_yuv1d()
|
D | lightfield_decoder.c | 128 unsigned int tile_size = 0; in decode_tile() local 129 if (aom_codec_control(codec, AV1D_GET_TILE_SIZE, &tile_size)) in decode_tile() 131 const unsigned int tile_width = tile_size >> 16; in decode_tile() 132 const unsigned int tile_height = tile_size & 65535; in decode_tile()
|
D | lightfield_bitstream_parsing.c | 338 unsigned int tile_size = 0; in main() local 339 if (aom_codec_control(&codec, AV1D_GET_TILE_SIZE, &tile_size)) in main() 341 const unsigned int tile_width = tile_size >> 16; in main() 342 const unsigned int tile_height = tile_size & 65535; in main()
|
/external/mesa3d/src/gallium/drivers/vc4/ |
D | vc4_nir_lower_txf_ms.c | 80 uint32_t tile_size = (tile_h * tile_w * in vc4_nir_lower_txf_ms_instr() local 90 nir_imm_int(b, tile_size)), in vc4_nir_lower_txf_ms_instr() 93 tile_size)))); in vc4_nir_lower_txf_ms_instr()
|
D | vc4_blit.c | 45 is_tile_unaligned(unsigned size, unsigned tile_size) in is_tile_unaligned() argument 47 return size & (tile_size - 1); in is_tile_unaligned()
|
D | vc4_program.c | 374 uint32_t tile_size = (tile_height * tile_width * in ntq_emit_txf() local 382 uint32_t size = w_tiles * h_tiles * tile_size; in ntq_emit_txf()
|
/external/libdrm/tests/exynos/ |
D | exynos_fimg2d_test.c | 156 unsigned int num_tiles_y, unsigned int tile_size) in create_checkerboard_pattern() argument 160 const unsigned int stride = num_tiles_x * tile_size; in create_checkerboard_pattern() 162 if (posix_memalign((void*)&buf, 64, num_tiles_y * tile_size * stride * 4) != 0) in create_checkerboard_pattern() 169 for (i = 0; i < tile_size; ++i) { in create_checkerboard_pattern() 170 for (j = 0; j < tile_size; ++j) { in create_checkerboard_pattern() 171 buf[x * tile_size + y * stride * tile_size + i + j * stride] = color; in create_checkerboard_pattern()
|
/external/tensorflow/tensorflow/core/kernels/ |
D | depthwise_conv_op_gpu.h | 210 const int tile_size = tile_height * tile_row_size; in DepthwiseConv2dGPUKernelNHWCSmall() local 227 for (int i = thread_idx; i < tile_size; i += block_size) { in DepthwiseConv2dGPUKernelNHWCSmall() 245 thread_pix < filter_pixels ? tile_size + thread_idx : 0; in DepthwiseConv2dGPUKernelNHWCSmall() 247 tile_size + thread_depth + in DepthwiseConv2dGPUKernelNHWCSmall() 495 const int tile_size = tile_pixels * kBlockDepth; in DepthwiseConv2dGPUKernelNCHWSmall() local 510 for (int i = thread_idx; i < tile_size; i += block_size) { in DepthwiseConv2dGPUKernelNCHWSmall() 532 filter_pix < filter_pixels ? tile_size + thread_idx : 0; in DepthwiseConv2dGPUKernelNCHWSmall() 534 tile_size + thread_depth + in DepthwiseConv2dGPUKernelNCHWSmall() 1202 const int tile_size = tile_height * tile_row_size; 1223 for (int i = thread_idx; i < tile_size + accum_size; i += block_size) { [all …]
|
/external/libaom/libaom/av1/encoder/ |
D | bitstream.c | 3213 int tile_size; in remux_tiles() local 3216 tile_size = data_size - rpos; in remux_tiles() 3218 tile_size = mem_get_le32(dst + rpos); in remux_tiles() 3220 mem_put_varsize(dst + wpos, tsb, tile_size); in remux_tiles() 3221 tile_size += AV1_MIN_TILE_SIZE_BYTES; in remux_tiles() 3225 memmove(dst + wpos, dst + rpos, tile_size); in remux_tiles() 3227 rpos += tile_size; in remux_tiles() 3228 wpos += tile_size; in remux_tiles() 3417 unsigned int tile_size = 0; in write_tiles_in_tg_obus() local 3494 tile_size = mode_bc.pos; in write_tiles_in_tg_obus() [all …]
|
D | level.c | 403 const int tile_size = tile_width * tile_height; in get_tile_stats() local 404 *max_tile_size = AOMMAX(*max_tile_size, tile_size); in get_tile_stats()
|
/external/mesa3d/src/gallium/drivers/vc5/ |
D | vc5_blit.c | 46 is_tile_unaligned(unsigned size, unsigned tile_size) 48 return size & (tile_size - 1);
|
/external/webp/src/enc/ |
D | predictor_enc.c | 309 const int tile_size = 1 << bits; in GetBestPredictorForTile() local 310 const int max_y = GetMin(tile_size, height - start_y); in GetBestPredictorForTile() 311 const int max_x = GetMin(tile_size, width - start_x); in GetBestPredictorForTile()
|
/external/pdfium/fpdfsdk/ |
D | fpdfview_embeddertest.cpp | 546 const int tile_size = 50; in TEST_F() local 549 int tile_bitmap_size = scale * tile_size; in TEST_F()
|
/external/mesa3d/src/gallium/drivers/etnaviv/ |
D | etnaviv_rs.c | 442 size_t tile_size; in etna_manual_blit() local 449 tile_size = util_format_get_blocksize(blit_info->src.format) * 4 * 4; in etna_manual_blit() 466 memcpy(drow, srow, tile_size * blit_info->src.box.width); in etna_manual_blit()
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_bitstream.c | 1029 uint32_t tile_size; in encode_tiles_mt() local 1033 tile_size = data->bit_writer.pos; in encode_tiles_mt() 1044 mem_put_be32(data_ptr + total_size, tile_size); in encode_tiles_mt() 1048 memcpy(data_ptr + total_size, data->dest, tile_size); in encode_tiles_mt() 1050 total_size += tile_size; in encode_tiles_mt()
|
/external/libaom/libaom/av1/common/ |
D | restoration.h | 371 int av1_lr_count_units_in_tile(int unit_size, int tile_size);
|
D | restoration.c | 62 int av1_lr_count_units_in_tile(int unit_size, int tile_size) { in av1_lr_count_units_in_tile() argument 63 return AOMMAX((tile_size + (unit_size >> 1)) / unit_size, 1); in av1_lr_count_units_in_tile()
|
/external/libaom/libaom/av1/ |
D | av1_dx_iface.c | 1186 unsigned int *const tile_size = va_arg(args, unsigned int *); in ctrl_get_tile_size() local 1189 if (tile_size) { in ctrl_get_tile_size() 1196 *tile_size = ((tile_width * MI_SIZE) << 16) + tile_height * MI_SIZE; in ctrl_get_tile_size()
|
/external/mesa3d/src/intel/isl/ |
D | isl.c | 1489 const uint32_t tile_size = tile_info.phys_extent_B.width * in isl_surf_init_s() local 1491 assert(isl_is_pow2(info->min_alignment) && isl_is_pow2(tile_size)); in isl_surf_init_s() 1492 base_alignment = MAX(info->min_alignment, tile_size); in isl_surf_init_s()
|
/external/tensorflow/tensorflow/compiler/xla/service/gpu/ |
D | ir_emitter_unnested.cc | 2594 int64 tile_size = mapping_scheme_->GetTileSizeForDimensionX(); in GetNumberOfPartialResults() local 2595 CHECK_EQ(tile_size % num_thread, 0); in GetNumberOfPartialResults() 2596 return tile_size / num_thread; in GetNumberOfPartialResults()
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | intel_mipmap_tree.c | 2882 uint32_t tile_size = 4096; in intel_offset_S8() local 2895 + tile_x * tile_size in intel_offset_S8()
|