Lines Matching defs:fmtcnt
586 Py_ssize_t fmtcnt;
596 fmtcnt = format_len;
601 res = _PyBytesWriter_Alloc(&writer, fmtcnt);
621 while (--fmtcnt >= 0) {
626 pos = (char *)memchr(fmt + 1, '%', fmtcnt);
630 len = fmtcnt + 1;
636 fmtcnt -= (len - 1);
657 fmtcnt--;
672 --fmtcnt;
675 while (pcount > 0 && --fmtcnt >= 0) {
683 if (fmtcnt < 0 || pcount > 0) {
707 while (--fmtcnt >= 0) {
735 if (--fmtcnt >= 0)
740 while (--fmtcnt >= 0) {
757 if (--fmtcnt >= 0)
774 if (--fmtcnt >= 0)
779 while (--fmtcnt >= 0) {
793 if (fmtcnt >= 0) {
795 if (--fmtcnt >= 0)
799 if (fmtcnt < 0) {
808 if (fmtcnt == 0) {
1037 assert(writer.overallocate || fmtcnt == 0 || use_bytearray);