Home
last modified time | relevance | path

Searched refs:o_ndigits (Results 1 - 4 of 4) sorted by relevance

/third_party/python/Objects/clinic/
H A Dfloatobject.c.h89 float___round___impl(PyObject *self, PyObject *o_ndigits);
95 PyObject *o_ndigits = Py_None; in float___round__() local
103 o_ndigits = args[0]; in float___round__()
105 return_value = float___round___impl(self, o_ndigits); in float___round__()
H A Dlongobject.c.h102 int___round___impl(PyObject *self, PyObject *o_ndigits);
108 PyObject *o_ndigits = NULL; in int___round__() local
116 o_ndigits = args[0]; in int___round__()
118 return_value = int___round___impl(self, o_ndigits); in int___round__()
/third_party/python/Objects/
H A Dfloatobject.c1071 ndigits as o_ndigits: object = None
1080 float___round___impl(PyObject *self, PyObject *o_ndigits) in float___round___impl() argument
1087 if (o_ndigits == Py_None) { in float___round___impl()
1098 ndigits = PyNumber_AsSsize_t(o_ndigits, NULL); in float___round___impl()
H A Dlongobject.c5582 ndigits as o_ndigits: object = NULL
5591 int___round___impl(PyObject *self, PyObject *o_ndigits) in int___round___impl() argument
5610 if (o_ndigits == NULL) in int___round___impl()
5613 ndigits = _PyNumber_Index(o_ndigits); in int___round___impl()

Completed in 12 milliseconds