Lines Matching refs:Py_CHARMASK
761 c = Py_CHARMASK(*fmt++); in _PyBytes_FormatEx()
800 c = Py_CHARMASK(*fmt++); in _PyBytes_FormatEx()
1200 digit1 = _PyLong_DigitValue[Py_CHARMASK(s[0])]; in _PyBytes_DecodeEscape()
1201 digit2 = _PyLong_DigitValue[Py_CHARMASK(s[1])]; in _PyBytes_DecodeEscape()
1637 c = Py_CHARMASK(*a->ob_sval) - Py_CHARMASK(*b->ob_sval); in bytes_richcompare()
1955 while (i < len && memchr(sep, Py_CHARMASK(s[i]), seplen)) { in do_xstrip()
1964 } while (j >= i && memchr(sep, Py_CHARMASK(s[j]), seplen)); in do_xstrip()
2164 c = Py_CHARMASK(*input++); in bytes_translate_impl()
2165 if (Py_CHARMASK((*output++ = table_chars[c])) != c) in bytes_translate_impl()
2180 trans_table[i] = Py_CHARMASK(i); in bytes_translate_impl()
2183 trans_table[i] = Py_CHARMASK(table_chars[i]); in bytes_translate_impl()
2188 trans_table[(int) Py_CHARMASK(del_table_chars[i])] = -1; in bytes_translate_impl()
2192 c = Py_CHARMASK(*input++); in bytes_translate_impl()
2194 if (Py_CHARMASK(*output++ = (char)trans_table[c]) == c) in bytes_translate_impl()