/aosp_15_r20/external/python/cpython3/Modules/clinic/ |
D | mathmodule.c.h | 90 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.h | 29 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()
|
D | cmathmodule.c.h | 754 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()
|
D | audioop.c.h | 563 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/ |
D | specialize.c | 1762 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()
|
D | ast.c | 159 || 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()
|
D | ceval.c | 1982 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/ |
D | statement.c | 125 } 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/ |
D | floatobject.c | 250 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()
|
D | codeobject.c | 436 else if (PyFloat_CheckExact(op)) { in _PyCode_ConstantKey()
|
/aosp_15_r20/external/python/cpython3/Modules/ |
D | mathmodule.c | 99 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/ |
D | floatobject.h | 17 #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/ |
D | floatobject.h | 17 #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/ |
D | floatobject.h | 17 #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/ |
D | floatobject.h | 17 #define PyFloat_CheckExact(op) Py_IS_TYPE(op, &PyFloat_Type) macro
|
/aosp_15_r20/external/python/cpython3/Include/ |
D | floatobject.h | 17 #define PyFloat_CheckExact(op) Py_IS_TYPE(op, &PyFloat_Type) macro
|
/aosp_15_r20/external/python/cpython2/Include/ |
D | floatobject.h | 22 #define PyFloat_CheckExact(op) (Py_TYPE(op) == &PyFloat_Type) macro
|
/aosp_15_r20/external/python/cpython3/Objects/ |
D | floatobject.c | 252 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.c | 127 PyFloat_CheckExact(text) || PyBool_Check(text) || in escape()
|
/aosp_15_r20/external/python/markupsafe/src/markupsafe/ |
D | _speedups.c | 201 PyFloat_CheckExact(text) || PyBool_Check(text) || in escape()
|
/aosp_15_r20/external/python/cpython2/Doc/c-api/ |
D | float.rst | 33 .. c:function:: int PyFloat_CheckExact(PyObject *p)
|
/aosp_15_r20/external/python/cpython3/Modules/_sqlite/clinic/ |
D | connection.c.h | 40 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/ |
D | cursor.c | 545 } 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/ |
D | float.rst | 28 .. c:function:: int PyFloat_CheckExact(PyObject *p)
|
/aosp_15_r20/external/python/cpython3/Python/clinic/ |
D | sysmodule.c.h | 331 if (PyFloat_CheckExact(arg)) { in sys_setswitchinterval()
|