Lines Matching refs:fmtcnt
616 Py_ssize_t fmtcnt; in _PyBytes_FormatEx() local
626 fmtcnt = format_len; in _PyBytes_FormatEx()
631 res = _PyBytesWriter_Alloc(&writer, fmtcnt); in _PyBytes_FormatEx()
651 while (--fmtcnt >= 0) { in _PyBytes_FormatEx()
656 pos = (char *)memchr(fmt + 1, '%', fmtcnt); in _PyBytes_FormatEx()
660 len = fmtcnt + 1; in _PyBytes_FormatEx()
666 fmtcnt -= (len - 1); in _PyBytes_FormatEx()
687 fmtcnt--; in _PyBytes_FormatEx()
702 --fmtcnt; in _PyBytes_FormatEx()
705 while (pcount > 0 && --fmtcnt >= 0) { in _PyBytes_FormatEx()
713 if (fmtcnt < 0 || pcount > 0) { in _PyBytes_FormatEx()
737 while (--fmtcnt >= 0) { in _PyBytes_FormatEx()
765 if (--fmtcnt >= 0) in _PyBytes_FormatEx()
770 while (--fmtcnt >= 0) { in _PyBytes_FormatEx()
787 if (--fmtcnt >= 0) in _PyBytes_FormatEx()
804 if (--fmtcnt >= 0) in _PyBytes_FormatEx()
809 while (--fmtcnt >= 0) { in _PyBytes_FormatEx()
823 if (fmtcnt >= 0) { in _PyBytes_FormatEx()
825 if (--fmtcnt >= 0) in _PyBytes_FormatEx()
829 if (fmtcnt < 0) { in _PyBytes_FormatEx()
838 if (fmtcnt == 0) { in _PyBytes_FormatEx()
1067 assert(writer.overallocate || fmtcnt == 0 || use_bytearray); in _PyBytes_FormatEx()