Home
last modified time | relevance | path

Searched refs:y_value (Results 1 – 12 of 12) sorted by relevance

/external/XNNPACK/test/
Dvmulcaddc-microkernel-tester.h160 for (float& y_value : y_ref) { in Test() local
161 y_value = std::max(std::min(y_value, y_max), y_min); in Test()
227 for (float& y_value : y_ref) { in Test() local
228 y_value = std::max<float>(std::min<float>(y_value, y_max), y_min); in Test()
Dgavgpool-cw-microkernel-tester.h122 for (float& y_value : y_ref) { variable
123 y_value = std::max(std::min(y_value, y_max), y_min);
/external/autotest/client/cros/input_playback/
Dstylus.py45 def replace_with_prefix(self, in_file, out_file, prefix, x_value, y_value): argument
68 line = line.replace(prefix + '_Y', str(y_value))
69 y_value += 1
/external/webrtc/media/base/
Dfake_video_renderer.h102 uint8_t y_value = *(y_pos + j); in CheckFrameColorYuv() local
103 if (y_value < y_min || y_value > y_max) { in CheckFrameColorYuv()
/external/tensorflow/tensorflow/core/kernels/
Dquantized_add_op.cc231 const int64 y_value = static_cast<int64>(y_data[i]); in VectorAddition() local
232 int64 y_in_output_range_64 = y_0_int64 + (y_value * y_mult_int32); in VectorAddition()
276 const int64_t y_value = static_cast<int64>(y_data[i]); in VectorAddition() local
277 int64_t y_in_output_range_64 = y_0_int64 + (y_value * y_mult_int32); in VectorAddition()
/external/tensorflow/tensorflow/compiler/xla/tests/
Dvector_ops_simple_test.cc352 auto y_value = in XLA_TEST_F() local
355 Clamp(zero, y_value, ConstantR0<float>(&builder, 5)); in XLA_TEST_F()
/external/ComputeLibrary/tests/validation/reference/
DColorConvertHelper.h126 inline float compute_rgb_value(int y_value, int v_value, int u_value, unsigned char channel_idx) in compute_rgb_value() argument
134 result = y_value + red; in compute_rgb_value()
140 result = y_value + green; in compute_rgb_value()
146 result = y_value + blue; in compute_rgb_value()
/external/tensorflow/tensorflow/compiler/mlir/tosa/transforms/
Dlegalize_common.h49 Value x_value, Value y_value);
Dlegalize_common.cc374 Value x_value, Value y_value) { in convertSelectOp() argument
380 RankedTensorType y_type = y_value.getType().dyn_cast<RankedTensorType>(); in convertSelectOp()
393 x_value, y_value) in convertSelectOp()
412 y_value) in convertSelectOp()
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/ir/
Dtf_ops_n_z.cc480 APFloat y_value = constant_y.getSplatValue<APFloat>(); in fold() local
482 if (y_value.isZero() && output_type.hasStaticShape()) { in fold()
487 if (y_value.isExactlyValue(1.0)) { in fold()
/external/libcups/tools/
Dippeveprinter.c8236 y_value; /* x-dimension value */ in valid_job_attributes() local
8288 y_value = ippGetInteger(y_dim, 0); in valid_job_attributes()
8298 if (ippContainsInteger(x_dim, x_value) && ippContainsInteger(y_dim, y_value)) in valid_job_attributes()
/external/tensorflow/tensorflow/python/eager/
Dfunction_test.py2924 y_value = self.evaluate(y)
2927 self.assertEqual(y_value, 5.0)
2930 self.assertEqual(y_value, 3.0)