Home
last modified time | relevance | path

Searched refs:PyFloat_CheckExact (Results 1 – 25 of 38) sorted by relevance

12

/aosp_15_r20/external/python/cpython3/Modules/clinic/
Dmathmodule.c.h90 if (PyFloat_CheckExact(arg)) { in math_frexp()
130 if (PyFloat_CheckExact(args[0])) { in math_ldexp()
167 if (PyFloat_CheckExact(arg)) { in math_modf()
268 if (PyFloat_CheckExact(args[0])) { in math_fmod()
278 if (PyFloat_CheckExact(args[1])) { in math_fmod()
352 if (PyFloat_CheckExact(args[0])) { in math_pow()
362 if (PyFloat_CheckExact(args[1])) { in math_pow()
396 if (PyFloat_CheckExact(arg)) { in math_degrees()
430 if (PyFloat_CheckExact(arg)) { in math_radians()
464 if (PyFloat_CheckExact(arg)) { in math_isfinite()
[all …]
D_statisticsmodule.c.h29 if (PyFloat_CheckExact(args[0])) { in _statistics__normal_dist_inv_cdf()
39 if (PyFloat_CheckExact(args[1])) { in _statistics__normal_dist_inv_cdf()
49 if (PyFloat_CheckExact(args[2])) { in _statistics__normal_dist_inv_cdf()
Dcmathmodule.c.h754 if (PyFloat_CheckExact(args[0])) { in cmath_rect()
764 if (PyFloat_CheckExact(args[1])) { in cmath_rect()
922 if (PyFloat_CheckExact(args[2])) { in cmath_isclose()
936 if (PyFloat_CheckExact(args[3])) { in cmath_isclose()
Daudioop.c.h563 if (PyFloat_CheckExact(args[2])) { in audioop_mul()
620 if (PyFloat_CheckExact(args[2])) { in audioop_tomono()
630 if (PyFloat_CheckExact(args[3])) { in audioop_tomono()
687 if (PyFloat_CheckExact(args[2])) { in audioop_tostereo()
697 if (PyFloat_CheckExact(args[3])) { in audioop_tostereo()
/aosp_15_r20/external/python/cpython3/Python/
Dspecialize.c1762 if (PyFloat_CheckExact(lhs)) { in binary_op_fail_kind()
1801 if (PyFloat_CheckExact(lhs)) { in _Py_Specialize_BinaryOp()
1815 if (PyFloat_CheckExact(lhs)) { in _Py_Specialize_BinaryOp()
1829 if (PyFloat_CheckExact(lhs)) { in _Py_Specialize_BinaryOp()
1860 if (PyFloat_CheckExact(lhs) && PyLong_CheckExact(rhs)) { in compare_op_fail_kind()
1863 if (PyLong_CheckExact(lhs) && PyFloat_CheckExact(rhs)) { in compare_op_fail_kind()
1944 if (PyFloat_CheckExact(lhs)) { in _Py_Specialize_CompareOp()
Dast.c159 || PyFloat_CheckExact(value) in validate_constant()
407 return (allow_real && PyFloat_CheckExact(value)) || in ensure_literal_number()
487 if (PyLong_CheckExact(literal) || PyFloat_CheckExact(literal) || in validate_pattern_match_value()
Dceval.c1982 DEOPT_IF(!PyFloat_CheckExact(left), BINARY_OP);
1983 DEOPT_IF(!PyFloat_CheckExact(right), BINARY_OP);
2022 DEOPT_IF(!PyFloat_CheckExact(left), BINARY_OP);
2023 DEOPT_IF(!PyFloat_CheckExact(right), BINARY_OP);
2097 DEOPT_IF(!PyFloat_CheckExact(left), BINARY_OP);
3741 DEOPT_IF(!PyFloat_CheckExact(left), COMPARE_OP);
3742 DEOPT_IF(!PyFloat_CheckExact(right), COMPARE_OP);
/aosp_15_r20/external/python/cpython2/Modules/_sqlite/
Dstatement.c125 } else if (PyFloat_CheckExact(parameter)) { in pysqlite_statement_bind_parameter()
209 || PyFloat_CheckExact(obj) || PyString_CheckExact(obj) in _need_adapt()
/aosp_15_r20/external/python/cpython2/Objects/
Dfloatobject.c250 if (PyFloat_CheckExact(op)) { in float_dealloc()
1284 if (PyFloat_CheckExact(v)) in float_float()
2230 if (PyFloat_CheckExact(p) && Py_REFCNT(p) != 0) in PyFloat_ClearFreeList()
2240 if (!PyFloat_CheckExact(p) || in PyFloat_ClearFreeList()
2284 if (PyFloat_CheckExact(p) && in PyFloat_Fini()
Dcodeobject.c436 else if (PyFloat_CheckExact(op)) { in _PyCode_ConstantKey()
/aosp_15_r20/external/python/cpython3/Modules/
Dmathmodule.c99 if (PyFloat_CheckExact(obj)) { \
1220 if (!PyFloat_CheckExact(number)) { in math_ceil()
1288 if (PyFloat_CheckExact(number)) { in math_floor()
2162 if (PyFloat_CheckExact(x)) { in math_trunc()
3190 if (PyFloat_CheckExact(result)) { in math_prod_impl()
3203 if (PyFloat_CheckExact(item)) { in math_prod_impl()
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/include/python3.11/
Dfloatobject.h17 #define PyFloat_CheckExact(op) Py_IS_TYPE(op, &PyFloat_Type) macro
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/include/python3.11/
Dfloatobject.h17 #define PyFloat_CheckExact(op) Py_IS_TYPE(op, &PyFloat_Type) macro
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/include/python3.11/
Dfloatobject.h17 #define PyFloat_CheckExact(op) Py_IS_TYPE(op, &PyFloat_Type) macro
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/include/python3.11/
Dfloatobject.h17 #define PyFloat_CheckExact(op) Py_IS_TYPE(op, &PyFloat_Type) macro
/aosp_15_r20/external/python/cpython3/Include/
Dfloatobject.h17 #define PyFloat_CheckExact(op) Py_IS_TYPE(op, &PyFloat_Type) macro
/aosp_15_r20/external/python/cpython2/Include/
Dfloatobject.h22 #define PyFloat_CheckExact(op) (Py_TYPE(op) == &PyFloat_Type) macro
/aosp_15_r20/external/python/cpython3/Objects/
Dfloatobject.c252 assert(PyFloat_CheckExact(obj)); in _PyFloat_ExactDealloc()
278 if (PyFloat_CheckExact(op)) { in float_dealloc()
324 if (!PyFloat_CheckExact(res)) { in PyFloat_AsDouble()
1127 if (PyFloat_CheckExact(v)) in float_float()
/aosp_15_r20/external/libchrome/third_party/markupsafe/
H A D_speedups.c127 PyFloat_CheckExact(text) || PyBool_Check(text) || in escape()
/aosp_15_r20/external/python/markupsafe/src/markupsafe/
D_speedups.c201 PyFloat_CheckExact(text) || PyBool_Check(text) || in escape()
/aosp_15_r20/external/python/cpython2/Doc/c-api/
Dfloat.rst33 .. c:function:: int PyFloat_CheckExact(PyObject *p)
/aosp_15_r20/external/python/cpython3/Modules/_sqlite/clinic/
Dconnection.c.h40 if (PyFloat_CheckExact(fastargs[1])) { in pysqlite_connection_init()
872 if (PyFloat_CheckExact(args[4])) { in pysqlite_connection_backup()
/aosp_15_r20/external/python/cpython3/Modules/_sqlite/
Dcursor.c545 } else if (PyFloat_CheckExact(parameter)) { in bind_param()
625 if (PyLong_CheckExact(obj) || PyFloat_CheckExact(obj) in need_adapt()
/aosp_15_r20/external/python/cpython3/Doc/c-api/
Dfloat.rst28 .. c:function:: int PyFloat_CheckExact(PyObject *p)
/aosp_15_r20/external/python/cpython3/Python/clinic/
Dsysmodule.c.h331 if (PyFloat_CheckExact(arg)) { in sys_setswitchinterval()

12