Home
last modified time | relevance | path

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

/external/v8/src/runtime/
Druntime-numbers.cc89 CONVERT_SMI_ARG_CHECKED(y_value, 1); in RUNTIME_FUNCTION()
92 if (x_value == y_value) return Smi::FromInt(0); in RUNTIME_FUNCTION()
96 if (x_value == 0 || y_value == 0) in RUNTIME_FUNCTION()
97 return Smi::FromInt(x_value < y_value ? -1 : 1); in RUNTIME_FUNCTION()
106 uint32_t y_scaled = y_value; in RUNTIME_FUNCTION()
107 if (x_value < 0 || y_value < 0) { in RUNTIME_FUNCTION()
108 if (y_value >= 0) return Smi::FromInt(-1); in RUNTIME_FUNCTION()
111 y_scaled = -y_value; in RUNTIME_FUNCTION()
/external/tensorflow/tensorflow/contrib/distributions/python/kernel_tests/
Dshape_test.py581 y_value = np.ones((4, 2), dtype=y.dtype.as_numpy_dtype())
582 feed_dict = {y: y_value, batch_ndims: 1, event_ndims: 1}
612 y_value = self._random_sample((10, 3, 5, 5), dtype=y.dtype)
613 feed_dict = {y: y_value, batch_ndims: 1, event_ndims: 2}
664 y_value = np.ones((3, 4, 2), dtype=y.dtype.as_numpy_dtype())
667 sess.run(shaper.get_shape(y), feed_dict={y: y_value}))
671 y_value = np.ones((3, 2), dtype=y.dtype.as_numpy_dtype())
674 sess.run(shaper.get_shape(y), feed_dict={y: y_value}))
682 y_value = self._random_sample((3, 4, 2), dtype=y.dtype)
683 feed_dict = {y: y_value, batch_ndims: 1, event_ndims: 1}
[all …]
/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/talk/media/base/
Dfakevideorenderer.h127 uint8_t y_value = *(y_pos + j); in CheckFrameColorYuv() local
128 if (y_value < y_min || y_value > y_max) { in CheckFrameColorYuv()
/external/v8/src/builtins/
Dbuiltins-math-gen.cc221 Node* y_value = TruncateTaggedToFloat64(context, y); in TF_BUILTIN() local
223 Node* value = Float64Atan2(y_value, x_value); in TF_BUILTIN()
352 Node* y_value = TruncateTaggedToWord32(context, y); in TF_BUILTIN() local
353 Node* value = Int32Mul(x_value, y_value); in TF_BUILTIN()
/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.cc340 auto y_value = in XLA_TEST_F() local
343 Clamp(zero, y_value, ConstantR0<float>(&builder, 5)); in XLA_TEST_F()
/external/v8/src/objects/
Dbigint.cc797 int y_value = Smi::ToInt(*y); in CompareToNumber() local
798 bool y_sign = (y_value < 0); in CompareToNumber()
803 return y_value == 0 ? ComparisonResult::kEqual in CompareToNumber()
807 STATIC_ASSERT(sizeof(digit_t) >= sizeof(y_value)); in CompareToNumber()
810 digit_t abs_value = std::abs(static_cast<int64_t>(y_value)); in CompareToNumber()
/external/tensorflow/tensorflow/python/eager/
Dfunction_test.py2161 y_value = self.evaluate(y)
2164 self.assertEqual(y_value, 5.0)
2167 self.assertEqual(y_value, 3.0)