Home
last modified time | relevance | path

Searched refs:fmtcnt (Results 1 – 2 of 2) sorted by relevance

/third_party/python/Objects/
Dbytesobject.c616 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()
[all …]
Dunicodeobject.c14656 Py_ssize_t fmtcnt, fmtpos; member
15042 --ctx->fmtcnt; in unicode_format_arg_parse()
15045 while (pcount > 0 && --ctx->fmtcnt >= 0) { in unicode_format_arg_parse()
15054 if (ctx->fmtcnt < 0 || pcount > 0) { in unicode_format_arg_parse()
15077 while (--ctx->fmtcnt >= 0) { in unicode_format_arg_parse()
15107 if (--ctx->fmtcnt >= 0) { in unicode_format_arg_parse()
15114 while (--ctx->fmtcnt >= 0) { in unicode_format_arg_parse()
15134 if (--ctx->fmtcnt >= 0) { in unicode_format_arg_parse()
15152 if (--ctx->fmtcnt >= 0) { in unicode_format_arg_parse()
15159 while (--ctx->fmtcnt >= 0) { in unicode_format_arg_parse()
[all …]