Home
last modified time | relevance | path

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

/external/pytorch/c10/util/
DTypeSafeSignMath.h80 constexpr bool can_overflow = in greater_than_max() local
82 return can_overflow && x > std::numeric_limits<Limit>::max(); in greater_than_max()
/external/pytorch/aten/src/ATen/native/vulkan/api/
DUtils.h158 constexpr bool can_overflow = in greater_than_max() local
160 return can_overflow && x > std::numeric_limits<Limit>::max(); in greater_than_max()
/external/executorch/backends/vulkan/runtime/utils/
DVecUtils.h164 constexpr bool can_overflow = in greater_than_max() local
166 return can_overflow && x > std::numeric_limits<Limit>::max(); in greater_than_max()
/external/python/cpython3/Modules/
Dmathmodule.c961 math_1(PyObject *arg, double (*func) (double), int can_overflow) in math_1() argument
975 if (can_overflow) in math_1()
1070 #define FUNC1(funcname, func, can_overflow, docstring) \ argument
1072 return math_1(args, func, can_overflow); \