Home
last modified time | relevance | path

Searched refs:in_w (Results 1 – 20 of 20) sorted by relevance

/external/libaom/libaom/test/
Dcomp_avg_pred_test.h112 const int in_w = block_size_wide[block_idx]; in RunCheckOutput() local
124 const int offset_c = 3 + rnd_.PseudoUniform(w - in_w - 7); in RunCheckOutput()
126 in_w, in_h, ref8 + offset_r * w + offset_c, in RunCheckOutput()
127 in_w, &dist_wtd_comp_params); in RunCheckOutput()
128 test_impl(output2, pred8 + offset_r * w + offset_c, in_w, in_h, in RunCheckOutput()
129 ref8 + offset_r * w + offset_c, in_w, &dist_wtd_comp_params); in RunCheckOutput()
132 for (int j = 0; j < in_w; ++j) { in RunCheckOutput()
133 int idx = i * in_w + j; in RunCheckOutput()
136 << in_w << "x" << in_h << " Pixel mismatch at index " << idx in RunCheckOutput()
157 const int in_w = block_size_wide[block_idx]; in RunSpeedTest() local
[all …]
/external/curl/lib/
Didn_win32.c75 wchar_t *in_w = curlx_convert_UTF8_to_wchar(in); in curl_win32_idn_to_ascii() local
76 if(in_w) { in curl_win32_idn_to_ascii()
78 int chars = IdnToAscii(0, in_w, -1, punycode, IDN_MAX_LENGTH); in curl_win32_idn_to_ascii()
79 free(in_w); in curl_win32_idn_to_ascii()
94 wchar_t *in_w = curlx_convert_UTF8_to_wchar(in); in curl_win32_ascii_to_idn() local
95 if(in_w) { in curl_win32_ascii_to_idn()
96 size_t in_len = wcslen(in_w) + 1; in curl_win32_ascii_to_idn()
98 int chars = IdnToUnicode(0, in_w, curlx_uztosi(in_len), in curl_win32_ascii_to_idn()
100 free(in_w); in curl_win32_ascii_to_idn()
/external/tensorflow/tensorflow/lite/kernels/internal/reference/
Dspace_to_depth.h55 for (int in_w = 0; in_w < input_width; ++in_w) { in SpaceToDepth() local
58 in_d + ((in_h % block_size) * block_size + in_w % block_size) * in SpaceToDepth()
60 const int out_w = in_w / block_size; in SpaceToDepth()
64 const int input_index = Offset(input_shape, in_b, in_h, in_w, in_d); in SpaceToDepth()
Dbatch_to_space_nd.h82 for (int in_w = 0; in_w < input_width; ++in_w) { in BatchToSpaceND() local
83 const int out_w = in_w * block_shape_width + in BatchToSpaceND()
91 input1_data + Offset(input1_shape, in_batch, in_h, in_w, 0); in BatchToSpaceND()
Dreduce.h250 for (int in_w = 0; in_w < input_width; ++in_w) { in Mean() local
251 value += input_data[Offset(input_shape, out_b, in_h, in_w, out_d)]; in Mean()
306 for (int in_w = 0; in_w < input_width; ++in_w) { in Mean() local
307 acc += input_data[Offset(input_shape, out_b, in_h, in_w, out_d)]; in Mean()
Ddepth_to_space.h61 const int in_w = out_w / block_size; in DepthToSpace() local
65 const int input_index = Offset(input_shape, in_b, in_h, in_w, in_d); in DepthToSpace()
/external/tensorflow/tensorflow/core/lib/jpeg/
Djpeg_mem_unittest.cc288 const int in_w = 256; in TEST() local
290 const int stride1 = 3 * in_w; in TEST()
293 for (int j = 0; j < in_w; j++) { in TEST()
305 memcpy(&refdata2[i * stride2], &refdata1[i * stride1], 3 * in_w); in TEST()
318 cpdata1 = Compress(refdata1.get(), in_w, in_h, flags); in TEST()
320 cpdata2 = Compress(refdata2.get(), in_w, in_h, flags); in TEST()
330 Compress(refdata1.get(), in_w, in_h, flags, &cptest); in TEST()
333 Compress(refdata2.get(), in_w, in_h, flags, &cptest); in TEST()
348 CHECK_EQ(w, in_w); in TEST()
355 imgdata1.get(), refdata1.get(), in_w, in_h, stride1, stride1); in TEST()
[all …]
/external/tensorflow/tensorflow/lite/kernels/internal/reference/integer_ops/
Dmean.h58 for (int in_w = 0; in_w < input_width; ++in_w) { in Mean() local
59 acc += input_data[Offset(input_shape, out_b, in_h, in_w, out_d)] - in Mean()
/external/tensorflow/tensorflow/lite/kernels/internal/optimized/integer_ops/
Dmean.h66 for (int in_w = 0; in_w < input_width; ++in_w) { in MeanImpl() local
68 input_data + Offset(input_shape, out_b, in_h, in_w, out_d); in MeanImpl()
129 for (int in_w = 0; in_w < input_width; ++in_w) { in MeanImpl() local
130 acc += input_data[Offset(input_shape, out_b, in_h, in_w, out_d)]; in MeanImpl()
/external/tensorflow/tensorflow/lite/toco/graph_transformations/
Dresolve_constant_slice.cc75 for (int in_w = begin[2]; in_w <= end[2]; ++in_w) { in Slice() local
78 input_data[Offset(padded_shape, {in_b, in_h, in_w, in_d})]; in Slice()
/external/deqp/external/openglcts/modules/glesext/tessellation_shader/
DesextcTessellationShaderUtils.hpp52 _ivec4(int in_x, int in_y, int in_z, int in_w) in _ivec4()
57 w = in_w; in _ivec4()
134 _vec4(float in_x, float in_y, float in_z, float in_w) in _vec4()
139 w = in_w; in _vec4()
/external/tensorflow/tensorflow/lite/tools/evaluation/stages/
Dimage_preprocessing_stage.cc130 for (int in_w = start_w; in_w < start_w + crop_width; ++in_w) { in Crop() local
132 cropped_image->push_back(image_data->GetData(in_h, in_w, c)); in Crop()
/external/tensorflow/tensorflow/compiler/mlir/lite/transforms/
Dload_quantization_recipe.cc54 Operation* CreateGate(Location loc, Value in, Value in_w, Value rec,
109 Location loc, Value in, Value in_w, Value rec, Value rec_w, in CreateGate() argument
112 auto s1 = builder->create<FullyConnectedOp>(loc, int16, in, in_w, none_cst, in CreateGate()
/external/tensorflow/tensorflow/core/kernels/image/
Dresize_area_op_test.cc165 for (int in_w : {2, 4, 7, 20, 165}) { in RunManyRandomTests()
169 RunRandomTest(in_h, in_w, target_height, target_width, channels); in RunManyRandomTests()
Dresize_bicubic_op_test.cc190 for (int in_w : {2, 4, 7, 20, 165}) { in RunManyRandomTests()
194 RunRandomTest(batch_size, in_h, in_w, target_height, target_width, in RunManyRandomTests()
Dresize_bilinear_op_test.cc152 for (int in_w : {2, 4, 7, 20, 165}) { in RunManyRandomTests()
156 TestResize(batch_size, in_w, in_h, channels, target_width, in RunManyRandomTests()
/external/tensorflow/tensorflow/core/kernels/
Ddepthtospace_op.cc162 const int in_w = w / block_size; in operator ()() local
168 output(b, h, w, d) = input(b, in_h, in_w, in_d); in operator ()()
Ddepthtospace_op_gpu.cu.cc51 const int in_w = w / block_size; in D2S_NHWC() local
56 in_d + input_depth * (in_w + input_width * (in_h + input_height * b)); in D2S_NHWC()
/external/tensorflow/tensorflow/lite/delegates/gpu/common/
Dconvert.cc71 const int in_w = reverse_space ? shape.w - 1 - w : w; in ConvertToPHWO4I4() local
72 value = in[shape.LinearIndex({tensor_o, in_h, in_w, tensor_i})]; in ConvertToPHWO4I4()
/external/tensorflow/tensorflow/lite/kernels/internal/optimized/
Doptimized_ops.h1012 for (int in_w = 0; in_w < input_width; ++in_w) { in MeanImpl() local
1014 input_data + Offset(input_shape, out_b, in_h, in_w, out_d); in MeanImpl()
1079 for (int in_w = 0; in_w < input_width; ++in_w) { in MeanImpl() local
1080 acc += input_data[Offset(input_shape, out_b, in_h, in_w, out_d)]; in MeanImpl()
1670 for (int in_w = 0; in_w < input_width; ++in_w) { in DepthToSpace() local
5052 for (int in_w = in_w_start; in_w < in_w_end; ++in_w) { in BatchToSpaceND() local
5053 const int out_w = in_w * block_shape_width + in BatchToSpaceND()
5059 input1_data + Offset(input1_shape, in_batch, in_h, in_w, 0); in BatchToSpaceND()