Lines Matching refs:result
206 PyObject *result = NULL;
242 result = _Py_string_to_number_with_underscores(s, len, "float", v, v,
246 return result;
384 PyObject *result;
393 result = _PyUnicode_FromASCII(buf, strlen(buf));
395 return result;
400 * that, e.g., Python x == y delivers the same result as the platform
509 PyObject *result = NULL;
554 result = PyBool_FromLong(r);
558 return result;
678 vx - mod is an approximation; the result is that div may
821 * to negate the pow result if iw is odd.
968 PyObject *result = NULL;
1004 result = PyFloat_FromDouble(rounded);
1011 return result;
1313 PyObject *result;
1478 This is top_exp - DBL_MANT_DIG unless result is subnormal. */
1528 result = PyFloat_FromDouble(negate ? -x : x);
1529 if (type != &PyFloat_Type && result != NULL) {
1530 Py_SETREF(result, PyObject_CallOneArg((PyObject *)type, result));
1532 return result;
2107 "frexp() result out of range");
2152 /* Write out result. */
2207 "frexp() result out of range");
2315 "frexp() result out of range");