Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/lite/micro/examples/hello_world/sparkfun_edge/
Doutput_handler.cc38 float y_value) { in HandleOutput() argument
51 if (y_value < 0) { in HandleOutput()
58 if (y_value <= -0.75f) { in HandleOutput()
64 } else if (y_value > 0) { in HandleOutput()
71 if (y_value >= 0.75f) { in HandleOutput()
80 static_cast<double>(y_value)); in HandleOutput()
/external/tensorflow/tensorflow/lite/micro/examples/hello_world/disco_f746ng/
Doutput_handler.cc41 float y_value) { in HandleOutput() argument
59 y_value); in HandleOutput()
70 if (y_value >= 0) { in HandleOutput()
72 y_pos = dot_radius + static_cast<int>(midpoint * (1.f - y_value)); in HandleOutput()
76 dot_radius + midpoint + static_cast<int>(midpoint * (0.f - y_value)); in HandleOutput()
/external/tensorflow/tensorflow/lite/micro/examples/hello_world/
Doutput_handler.cc19 float y_value) { in HandleOutput() argument
23 static_cast<double>(y_value)); in HandleOutput()
Doutput_handler.h24 float y_value);
/external/tensorflow/tensorflow/lite/micro/examples/hello_world/arduino/
Doutput_handler.cc29 float y_value) { in HandleOutput() argument
39 int brightness = (int)(127.5f * (y_value + 1)); in HandleOutput()
/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/XNNPACK/test/
Dvmulcaddc-microkernel-tester.h165 for (float& y_value : y_ref) { variable
166 y_value = std::max(std::min(y_value, y_max), y_min);
233 for (float& y_value : y_ref) { variable
234 y_value = std::max<float>(std::min<float>(y_value, y_max), y_min);
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/llvm-project/lldb/test/API/functionalities/var_path/
DTestVarPath.py25 def verify_point(self, frame, var_name, var_typename, x_value, y_value): argument
53 …self.assertEquals(v.GetValue(), str(y_value), "Make sure '%s' has a value of %i" % (valid_y_path,
/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 y_value = static_cast<int64>(y_data[i]); in VectorAddition() local
277 int64 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/tensorflow/tensorflow/compiler/mlir/tosa/transforms/
Dlegalize_common.h48 Value x_value, Value y_value);
Dlegalize_common.cc366 Value x_value, Value y_value) { in convertSelectOp() argument
372 RankedTensorType y_type = y_value.getType().dyn_cast<RankedTensorType>(); in convertSelectOp()
385 x_value, y_value) in convertSelectOp()
405 y_value) in convertSelectOp()
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/ir/
Dtf_ops_n_z.cc435 APFloat y_value = constant_y.getSplatValue<APFloat>(); in fold() local
437 if (y_value.isZero() && output_type.hasStaticShape()) { in fold()
442 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.py2845 y_value = self.evaluate(y)
2848 self.assertEqual(y_value, 5.0)
2851 self.assertEqual(y_value, 3.0)