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 | 769 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 | 1425 x = PyNumber_TrueDivide(v, w); in PyEval_EvalFrameEx()
|
/external/python/cpython3/PC/ |
D | python3.def | 416 PyNumber_TrueDivide=python36.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/Doc/data/ |
D | refcounts.dat | 913 PyNumber_TrueDivide:PyObject*::+1: 914 PyNumber_TrueDivide:PyObject*:v:0: 915 PyNumber_TrueDivide:PyObject*:w:0:
|
/external/python/cpython3/Python/ |
D | peephole.c | 254 newconst = PyNumber_TrueDivide(v, w); in fold_binops_on_constants()
|
D | ceval.c | 1388 PyObject *quotient = PyNumber_TrueDivide(dividend, divisor); in _PyEval_EvalFrameDefault()
|
/external/python/cpython3/Objects/ |
D | weakrefobject.c | 500 WRAP_BINARY(proxy_true_div, PyNumber_TrueDivide) in WRAP_BINARY()
|
D | abstract.c | 975 PyNumber_TrueDivide(PyObject *v, PyObject *w) in PyNumber_TrueDivide() function
|
/external/python/cpython2/Objects/ |
D | weakrefobject.c | 497 WRAP_BINARY(proxy_true_div, PyNumber_TrueDivide) in WRAP_BINARY()
|
D | classobject.c | 1647 BINARY(instance_truediv, "truediv", PyNumber_TrueDivide)
|
D | abstract.c | 1240 PyNumber_TrueDivide(PyObject *v, PyObject *w) function
|
/external/python/cpython2/Modules/ |
D | operator.c | 95 spam2(op_truediv , PyNumber_TrueDivide) in spami()
|
D | datetimemodule.c | 2117 total_seconds = PyNumber_TrueDivide(total_microseconds, one_million); in delta_total_seconds()
|
/external/python/cpython3/Doc/c-api/ |
D | number.rst | 47 .. c:function:: PyObject* PyNumber_TrueDivide(PyObject *o1, PyObject *o2)
|
/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 | 74 spam2(op_truediv , PyNumber_TrueDivide) in spami()
|
D | mathmodule.c | 1733 ans = PyNumber_TrueDivide(num, den); in math_log()
|
D | _datetimemodule.c | 1741 result = PyNumber_TrueDivide(pyus_left, pyus_right); in truedivide_timedelta_timedelta() 2344 total_seconds = PyNumber_TrueDivide(total_microseconds, us_per_second); in delta_total_seconds()
|