Searched refs:PyNumber_TrueDivide (Results 1 – 22 of 22) sorted by relevance
/external/python/cpython2/Include/ |
D | abstract.h | 707 PyAPI_FUNC(PyObject *) PyNumber_TrueDivide(PyObject *o1, PyObject *o2);
|
/external/python/cpython3/Include/ |
D | abstract.h | 644 PyAPI_FUNC(PyObject *) PyNumber_TrueDivide(PyObject *o1, PyObject *o2);
|
/external/python/cpython2/Python/ |
D | peephole.c | 116 newconst = PyNumber_TrueDivide(v, w); in fold_binops_on_constants()
|
D | ceval.c | 1433 x = PyNumber_TrueDivide(v, w); in PyEval_EvalFrameEx()
|
/external/python/cpython3/PC/ |
D | python3.def | 416 PyNumber_TrueDivide=python37.PyNumber_TrueDivide
|
/external/python/cpython2/Doc/data/ |
D | refcounts.dat | 902 PyNumber_TrueDivide:PyObject*::+1: 903 PyNumber_TrueDivide:PyObject*:v:0: 904 PyNumber_TrueDivide:PyObject*:w:0:
|
/external/python/cpython3/Objects/ |
D | weakrefobject.c | 500 WRAP_BINARY(proxy_true_div, PyNumber_TrueDivide) in WRAP_BINARY()
|
D | abstract.c | 1017 PyNumber_TrueDivide(PyObject *v, PyObject *w) in PyNumber_TrueDivide() function
|
/external/python/cpython2/Objects/ |
D | weakrefobject.c | 499 WRAP_BINARY(proxy_true_div, PyNumber_TrueDivide) in WRAP_BINARY()
|
D | classobject.c | 1646 BINARY(instance_truediv, "truediv", PyNumber_TrueDivide)
|
D | abstract.c | 1240 PyNumber_TrueDivide(PyObject *v, PyObject *w) function
|
/external/python/cpython3/Doc/c-api/ |
D | number.rst | 47 .. c:function:: PyObject* PyNumber_TrueDivide(PyObject *o1, PyObject *o2)
|
/external/python/cpython2/Modules/ |
D | operator.c | 95 spam2(op_truediv , PyNumber_TrueDivide) in spami()
|
D | datetimemodule.c | 2122 total_seconds = PyNumber_TrueDivide(total_microseconds, one_million); in delta_total_seconds()
|
/external/python/cpython2/PC/os2emx/ |
D | python27.def | 135 "PyNumber_TrueDivide"
|
/external/python/cpython2/Doc/c-api/ |
D | number.rst | 47 .. c:function:: PyObject* PyNumber_TrueDivide(PyObject *o1, PyObject *o2)
|
/external/python/cpython3/Modules/ |
D | _operator.c | 116 return PyNumber_TrueDivide(a, b); in _operator_truediv_impl()
|
D | mathmodule.c | 1957 ans = PyNumber_TrueDivide(num, den); in math_log_impl()
|
D | _datetimemodule.c | 2023 result = PyNumber_TrueDivide(pyus_left, pyus_right); in truedivide_timedelta_timedelta() 2623 total_seconds = PyNumber_TrueDivide(total_microseconds, us_per_second); in delta_total_seconds()
|
/external/python/cpython3/Python/ |
D | ast_opt.c | 279 newval = PyNumber_TrueDivide(lv, rv); in fold_binop()
|
D | ceval.c | 1231 PyObject *quotient = PyNumber_TrueDivide(dividend, divisor); in _PyEval_EvalFrameDefault()
|
/external/python/cpython3/Doc/data/ |
D | refcounts.dat | 1518 PyNumber_TrueDivide:PyObject*::+1: 1519 PyNumber_TrueDivide:PyObject*:v:0: 1520 PyNumber_TrueDivide:PyObject*:w:0:
|