Lines Matching defs:result
696 PyObject *result;
731 result = PyBytes_FromStringAndSize(NULL, bufsize);
732 if (result == NULL)
742 Py_DECREF(result);
746 if (PyBytes_GET_SIZE(result) < (Py_ssize_t)bufsize) {
747 if (_PyBytes_Resize(&result, bufsize) < 0)
753 PyBytes_AS_STRING(result) + bytes_read,
763 Py_DECREF(result);
766 Py_DECREF(result);
773 if (PyBytes_GET_SIZE(result) > bytes_read) {
774 if (_PyBytes_Resize(&result, bytes_read) < 0)
777 return result;