Home
last modified time | relevance | path

Searched refs:width_index (Results 1 – 13 of 13) sorted by relevance

/external/ComputeLibrary/src/graph/mutators/
DMutatorUtils.cpp35 const unsigned int width_index = get_dimension_idx(layout, DataLayoutDimension::WIDTH); in is_padding_in_height_or_width() local
39 if(i != height_index && i != width_index && padding_list[i] != PaddingInfo(0, 0)) in is_padding_in_height_or_width()
DNodeFusionMutator.cpp279 const unsigned int width_index = get_dimension_idx(layout, DataLayoutDimension::WIDTH); in fuse_pad_with_convolution() local
281 …const PaddingInfo pad_w = width_index < padding_list.size() ? padding_list[width_index] : PaddingI… in fuse_pad_with_convolution()
/external/libgav1/src/dsp/
Ddsp_test.cc163 const int width_index = k4x4WidthLog2[i] - 1; in CheckTables() local
166 if (width_index < 0 || height_index < 0) continue; in CheckTables()
169 EXPECT_NE(dsp->weight_mask[width_index][height_index][j], nullptr) in CheckTables()
170 << ToString(static_cast<BlockSize>(i)) << " index [" << width_index in CheckTables()
Dcdef_test.cc352 const int width_index = block_width >> 3; in TestRandomValues() local
353 if (cur_cdef_filter_[width_index][0] == nullptr) return; in TestRandomValues()
354 cur_cdef_filter_[width_index][0]( in TestRandomValues()
Dweight_mask_test.cc217 const int width_index = FloorLog2(width_) - 3; in SetUp() local
229 func_ = dsp->weight_mask[width_index][height_index][mask_is_inverse_]; in SetUp()
/external/fonttools/Lib/fontTools/
DtfmLib.py247 def width_index(c): function
251 return c < sizes.bc or c > sizes.ec or width_index(c) == 0
269 r = 4 * (width_base + width_index(c))
361 if width_index(c) > 0:
/external/cronet/tot/third_party/llvm-libc/src/src/stdio/printf_core/
Dparser.h530 size_t width_index = parse_index(&local_pos);
531 set_type_desc(width_index, type_desc_from_type<int>());
532 if (width_index == index)
/external/cronet/stable/third_party/llvm-libc/src/src/stdio/printf_core/
Dparser.h530 size_t width_index = parse_index(&local_pos);
531 set_type_desc(width_index, type_desc_from_type<int>());
532 if (width_index == index)
/external/llvm-libc/src/stdio/printf_core/
Dparser.h532 size_t width_index = parse_index(&local_pos);
533 set_type_desc(width_index, type_desc_from_type<int>());
534 if (width_index == index)
/external/tensorflow/tensorflow/lite/delegates/coreml/builders/
Dconvolution_op_builder.cc90 const int width_index = 2; in Build() local
99 GetTensorData<int32_t>(output_shape_)[width_index]); in Build()
/external/libgav1/src/post_filter/
Dcdef.cc595 const int width_index = dual_cdef | (subsampling_x ^ 1); in ApplyCdefForOneUnit() local
596 dsp_.cdef_filters[width_index][uv_strength_index]( in ApplyCdefForOneUnit()
/external/ComputeLibrary/tests/validation/fixtures/
DConvolutionLayerFixture.h250 …const unsigned int width_index = arm_compute::graph::get_dimension_idx(_data_layout, DataLayoutDi…
252 …const PaddingInfo pad_w = width_index < pre_pad_layer.size() ? pre_pad_layer[width_index] : Paddin…
/external/ComputeLibrary/src/cpu/kernels/
DCpuScaleKernel.cpp148 …const auto width_index = get_data_layout_dimension_index(data_layout, DataLayoutDimension:… in validate_arguments() local
150 const auto output_width = dst->dimension(width_index); in validate_arguments()