Lines Matching refs:result
54 input string, updates *result with the corresponding positive
61 Py_ssize_t *result)
88 *result = accumulator;
772 int result = -1;
842 result = fill_padding(writer, len, format->fill_char, lpad, rpad);
843 if (result == -1)
852 result = 0;
855 return result;
867 int result = -1;
1025 result = fill_number(writer, &spec,
1033 return result;
1058 int result = -1;
1090 format the result. We take care of that later. */
1131 result = _PyUnicodeWriter_WriteASCIIString(writer, buf, n_digits);
1133 return result;
1175 result = fill_number(writer, &spec,
1183 return result;
1216 int result = -1;
1282 format the result. We take care of that later. */
1387 result = fill_padding(writer,
1390 if (result == -1)
1399 result = fill_number(writer, &re_spec,
1404 if (result == -1)
1407 result = fill_number(writer, &im_spec,
1412 if (result == -1)
1430 return result;
1494 int result = -1;
1520 result = format_long_internal(obj, &format, writer);
1534 result = format_float_internal(tmp, &format, writer);
1545 return result;