Searched refs:fmtcnt (Results 1 – 2 of 2) sorted by relevance
4250 Py_ssize_t reslen, rescnt, fmtcnt; in PyString_Format() local4263 fmtcnt = PyString_GET_SIZE(format); in PyString_Format()4264 reslen = rescnt = fmtcnt + 100; in PyString_Format()4280 while (--fmtcnt >= 0) { in PyString_Format()4283 rescnt = fmtcnt + 100; in PyString_Format()4326 --fmtcnt; in PyString_Format()4329 while (pcount > 0 && --fmtcnt >= 0) { in PyString_Format()4337 if (fmtcnt < 0 || pcount > 0) { in PyString_Format()4359 while (--fmtcnt >= 0) { in PyString_Format()4385 if (--fmtcnt >= 0) in PyString_Format()[all …]
8361 Py_ssize_t fmtcnt, rescnt, reslen, arglen, argidx; in PyUnicode_Format() local8375 fmtcnt = PyUnicode_GET_SIZE(uformat); in PyUnicode_Format()8377 reslen = rescnt = fmtcnt + 100; in PyUnicode_Format()8395 while (--fmtcnt >= 0) { in PyUnicode_Format()8398 rescnt = fmtcnt + 100; in PyUnicode_Format()8435 --fmtcnt; in PyUnicode_Format()8438 while (pcount > 0 && --fmtcnt >= 0) { in PyUnicode_Format()8446 if (fmtcnt < 0 || pcount > 0) { in PyUnicode_Format()8477 while (--fmtcnt >= 0) { in PyUnicode_Format()8503 if (--fmtcnt >= 0) in PyUnicode_Format()[all …]