Home
last modified time | relevance | path

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

/third_party/python/Modules/
Dmathmodule.c2512 vector_norm(Py_ssize_t n, double *vec, double max, int found_nan) in vector_norm() argument
2523 if (found_nan) { in vector_norm()
2634 int found_nan = 0, p_allocated = 0, q_allocated = 0; in math_dist_impl() local
2677 found_nan |= Py_IS_NAN(x); in math_dist_impl()
2682 result = vector_norm(n, diffs, max, found_nan); in math_dist_impl()
2715 int found_nan = 0; in math_hypot() local
2730 found_nan |= Py_IS_NAN(x); in math_hypot()
2735 result = vector_norm(nargs, coordinates, max, found_nan); in math_hypot()