Searched refs:o_ndigits (Results 1 – 3 of 3) sorted by relevance
89 float___round___impl(PyObject *self, PyObject *o_ndigits);95 PyObject *o_ndigits = Py_None; in float___round__() local103 o_ndigits = args[0]; in float___round__()105 return_value = float___round___impl(self, o_ndigits); in float___round__()
1024 float___round___impl(PyObject *self, PyObject *o_ndigits) in float___round___impl() argument1031 if (o_ndigits == Py_None) { in float___round___impl()1042 ndigits = PyNumber_AsSsize_t(o_ndigits, NULL); in float___round___impl()
5325 PyObject *o_ndigits=NULL, *temp, *result, *ndigits; in long_round() local5341 if (!PyArg_ParseTuple(args, "|O", &o_ndigits)) in long_round()5343 if (o_ndigits == NULL) in long_round()5346 ndigits = PyNumber_Index(o_ndigits); in long_round()