Lines Matching refs:result
98 char* result = (char *)PyMem_Malloc(len + 1);
99 if (!result) {
103 memcpy(result, s, len);
104 result[len] = '\0';
105 return result;
343 stored the result in tok->decoding_buffer
530 will result in surrogates in range D800-DFFF. Surrogates are
659 char* result = PyMem_Realloc(buf, final_length);
660 if (result == NULL) {
663 buf = result;
2136 int result = tok_get(tok, p_start, p_end);
2138 result = ERRORTOKEN;
2141 return result;