Lines Matching refs:result
101 PyErr_SetString(PyExc_OverflowError, "result too long");
287 PyObject *result;
310 result = STRINGLIB_NEW(NULL, result_len);
311 if (result == NULL) {
316 result_s = STRINGLIB_STR(result);
344 return result;
357 PyObject *result;
370 result = STRINGLIB_NEW(NULL, result_len);
371 if (result == NULL) {
374 result_s = STRINGLIB_STR(result);
388 return result;
402 PyObject *result;
419 result = STRINGLIB_NEW(NULL, result_len);
420 if (result == NULL) {
423 result_s = STRINGLIB_STR(result);
441 return result;
453 PyObject *result;
455 /* The result string will be the same size */
467 result = STRINGLIB_NEW(NULL, self_len);
468 if (result == NULL) {
471 result_s = STRINGLIB_STR(result);
488 return result;
501 PyObject *result;
503 /* The result bytes will be the same size */
517 result = STRINGLIB_NEW(NULL, self_len);
518 if (result == NULL) {
521 result_s = STRINGLIB_STR(result);
540 return result;
554 PyObject *result;
574 result = STRINGLIB_NEW(NULL, result_len);
575 if (result == NULL) {
578 result_s = STRINGLIB_STR(result);
604 return result;
618 PyObject *result;
641 result = STRINGLIB_NEW(NULL, result_len);
642 if (result == NULL) {
645 result_s = STRINGLIB_STR(result);
673 return result;