HomeSort by relevance Sort by last modified time
    Searched refs:y_value (Results 1 - 10 of 10) sorted by null

  /external/v8/src/runtime/
runtime-numbers.cc 89 CONVERT_SMI_ARG_CHECKED(y_value, 1);
92 if (x_value == y_value) return Smi::FromInt(0);
96 if (x_value == 0 || y_value == 0)
97 return Smi::FromInt(x_value < y_value ? -1 : 1);
106 uint32_t y_scaled = y_value;
107 if (x_value < 0 || y_value < 0) {
108 if (y_value >= 0) return Smi::FromInt(-1);
111 y_scaled = -y_value;
  /external/autotest/client/cros/input_playback/
stylus.py 45 def replace_with_prefix(self, in_file, out_file, prefix, x_value, y_value):
55 @param y_value: the target value of Y.
68 line = line.replace(prefix + '_Y', str(y_value))
69 y_value += 1
  /external/webrtc/talk/media/base/
fakevideorenderer.h 127 uint8_t y_value = *(y_pos + j); local
128 if (y_value < y_min || y_value > y_max) {
  /art/test/004-checker-UnsafeTest18/src/
Main.java 43 public int y_value; field in class:Main
311 m.y_value = -1;
320 int local_y = m.y_value;
332 m.y_value = many_times;
  /external/tensorflow/tensorflow/contrib/distributions/python/kernel_tests/
shape_test.py 581 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/v8/src/builtins/
builtins-math-gen.cc 221 Node* y_value = TruncateTaggedToFloat64(context, y); local
223 Node* value = Float64Atan2(y_value, x_value);
352 Node* y_value = TruncateTaggedToWord32(context, y); local
353 Node* value = Int32Mul(x_value, y_value);
  /external/tensorflow/tensorflow/compiler/xla/tests/
vector_ops_simple_test.cc 340 auto y_value = local
341 Parameter(&builder, 0, ShapeUtil::MakeShape(F32, {}), "y_value");
343 Clamp(zero, y_value, ConstantR0<float>(&builder, 5));
  /external/tensorflow/tensorflow/core/kernels/
quantized_add_op.cc 231 const int64 y_value = static_cast<int64>(y_data[i]); local
232 int64 y_in_output_range_64 = y_0_int64 + (y_value * y_mult_int32);
276 const int64 y_value = static_cast<int64>(y_data[i]); local
277 int64 y_in_output_range_64 = y_0_int64 + (y_value * y_mult_int32);
  /external/v8/src/objects/
bigint.cc 797 int y_value = Smi::ToInt(*y); local
798 bool y_sign = (y_value < 0);
803 return y_value == 0 ? ComparisonResult::kEqua
    [all...]
  /external/tensorflow/tensorflow/python/eager/
function_test.py     [all...]

Completed in 855 milliseconds