Home
last modified time | relevance | path

Searched refs:y_num (Results 1 – 5 of 5) sorted by relevance

/third_party/jerryscript/jerry-core/ecma/operations/
Decma-comparison.c63 ecma_number_t y_num = ecma_get_number_from_value (y); in ecma_op_abstract_equality_compare() local
65 bool is_x_equal_to_y = (x_num == y_num); in ecma_op_abstract_equality_compare()
71 || ecma_number_is_nan (y_num)) in ecma_op_abstract_equality_compare()
75 else if (x_num == y_num in ecma_op_abstract_equality_compare()
77 && ecma_number_is_zero (y_num))) in ecma_op_abstract_equality_compare()
263 ecma_number_t y_num = ecma_get_number_from_value (y); in ecma_op_strict_equality_compare() local
265 bool is_x_equal_to_y = (x_num == y_num); in ecma_op_strict_equality_compare()
271 || ecma_number_is_nan (y_num)) in ecma_op_strict_equality_compare()
275 else if (x_num == y_num in ecma_op_strict_equality_compare()
277 && ecma_number_is_zero (y_num))) in ecma_op_strict_equality_compare()
Decma-conversion.c99 ecma_number_t y_num = ecma_get_number_from_value (y); in ecma_op_same_value() local
102 bool is_y_nan = ecma_number_is_nan (y_num); in ecma_op_same_value()
110 && ecma_number_is_zero (y_num) in ecma_op_same_value()
111 && ecma_number_is_negative (x_num) != ecma_number_is_negative (y_num)) in ecma_op_same_value()
116 return (x_num == y_num); in ecma_op_same_value()
149 ecma_number_t y_num = ecma_get_number_from_value (y); in ecma_op_same_value_zero() local
152 bool is_y_nan = ecma_number_is_nan (y_num); in ecma_op_same_value_zero()
167 && ecma_number_is_zero (y_num) in ecma_op_same_value_zero()
168 && ecma_number_is_negative (x_num) != ecma_number_is_negative (y_num)) in ecma_op_same_value_zero()
173 return (x_num == y_num); in ecma_op_same_value_zero()
/third_party/mindspore/mindspore/lite/src/runtime/kernel/arm/fp32/
Dwhere_fp32.cc123 int y_num = y->ElementsNum(); in RunWithTripleInputs() local
132 int num_max = condition_nums > x_num ? condition_nums : (x_num > y_num ? x_num : y_num); in RunWithTripleInputs()
135 where_param_->y_num_ = y_num; in RunWithTripleInputs()
139 ((y_num != 1) && (y_num != num_max))) { in RunWithTripleInputs()
/third_party/boost/boost/graph/
Dkamada_kawai_spring_layout.hpp109 double y_num = mat[0][0] * rhs[1] - mat[1][0] * rhs[0]; in solve() local
112 result[1] = y_num / denom; in solve()
132 double y_num in solve() local
142 result[1] = y_num / denom; in solve()
/third_party/boost/boost/polygon/detail/
Dpolygon_arbitrary_formation.hpp390 … high_precision y_high, dx1, dy1, dx2, dy2, x11, x21, y11, y21, x_num, y_num, x_den, y_den, x, y; member
393 … long double y_high, dx1, dy1, dx2, dy2, x11, x21, y11, y21, x_num, y_num, x_den, y_den, x, y; in compute_lazy_intersection() local
441 y_num = (y11 * dx1 * dy2 - y21 * dx2 * dy1 + x21 * dy1 * dy2 - x11 * dy1 * dy2); in compute_lazy_intersection()
444 y = y_num / y_den; in compute_lazy_intersection()
553 y_num = (y11 * dx1 * dy2 - y21 * dx2 * dy1 + x21 * dy1 * dy2 - x11 * dy1 * dy2); in compute_exact_intersection()
556 y = y_num / y_den; in compute_exact_intersection()
643 … high_precision y_num = (y11 * dx1 * dy2 - y21 * dx2 * dy1 + x21 * dy1 * dy2 - x11 * dy1 * dy2); in compute_intersection() local
646 high_precision y = y_num / y_den; in compute_intersection()