Searched refs:y_num (Results 1 – 5 of 5) sorted by relevance
/third_party/jerryscript/jerry-core/ecma/operations/ |
D | ecma-comparison.c | 63 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()
|
D | ecma-conversion.c | 99 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/ |
D | where_fp32.cc | 123 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/ |
D | kamada_kawai_spring_layout.hpp | 109 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/ |
D | polygon_arbitrary_formation.hpp | 390 … 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()
|