Lines Matching refs:decstring
2422 char *decstring = NULL;
2502 cp = decstring = PyMem_Malloc(mem);
2503 if (decstring == NULL) {
2557 return decstring;
2562 if (decstring) PyMem_Free(decstring);
3200 char *decstring = NULL;
3303 decstring = mpd_qformat_spec(MPD(dec), &spec, CTX(context), &status);
3304 if (decstring == NULL) {
3314 size = strlen(decstring);
3316 dec_replace_fillchar(decstring);
3319 result = PyUnicode_DecodeUTF8(decstring, size, NULL);
3327 if (decstring) mpd_free(decstring);