Lines Matching refs:fmtcnt
604 Py_ssize_t fmtcnt; in _PyBytes_FormatEx() local
614 fmtcnt = format_len; in _PyBytes_FormatEx()
619 res = _PyBytesWriter_Alloc(&writer, fmtcnt); in _PyBytes_FormatEx()
639 while (--fmtcnt >= 0) { in _PyBytes_FormatEx()
644 pos = (char *)memchr(fmt + 1, '%', fmtcnt); in _PyBytes_FormatEx()
648 len = fmtcnt + 1; in _PyBytes_FormatEx()
654 fmtcnt -= (len - 1); in _PyBytes_FormatEx()
675 fmtcnt--; in _PyBytes_FormatEx()
690 --fmtcnt; in _PyBytes_FormatEx()
693 while (pcount > 0 && --fmtcnt >= 0) { in _PyBytes_FormatEx()
701 if (fmtcnt < 0 || pcount > 0) { in _PyBytes_FormatEx()
725 while (--fmtcnt >= 0) { in _PyBytes_FormatEx()
753 if (--fmtcnt >= 0) in _PyBytes_FormatEx()
758 while (--fmtcnt >= 0) { in _PyBytes_FormatEx()
775 if (--fmtcnt >= 0) in _PyBytes_FormatEx()
792 if (--fmtcnt >= 0) in _PyBytes_FormatEx()
797 while (--fmtcnt >= 0) { in _PyBytes_FormatEx()
811 if (fmtcnt >= 0) { in _PyBytes_FormatEx()
813 if (--fmtcnt >= 0) in _PyBytes_FormatEx()
817 if (fmtcnt < 0) { in _PyBytes_FormatEx()
826 if (fmtcnt == 0) { in _PyBytes_FormatEx()
1055 assert(writer.overallocate || fmtcnt == 0 || use_bytearray); in _PyBytes_FormatEx()