Lines Matching refs:Py_CHARMASK
755 c = Py_CHARMASK(*fmt++); in _PyBytes_FormatEx()
794 c = Py_CHARMASK(*fmt++); in _PyBytes_FormatEx()
1194 digit1 = _PyLong_DigitValue[Py_CHARMASK(s[0])]; in _PyBytes_DecodeEscape()
1195 digit2 = _PyLong_DigitValue[Py_CHARMASK(s[1])]; in _PyBytes_DecodeEscape()
1632 c = Py_CHARMASK(*a->ob_sval) - Py_CHARMASK(*b->ob_sval); in bytes_richcompare()
1962 while (i < len && memchr(sep, Py_CHARMASK(s[i]), seplen)) { in do_xstrip()
1971 } while (j >= i && memchr(sep, Py_CHARMASK(s[j]), seplen)); in do_xstrip()
2171 c = Py_CHARMASK(*input++); in bytes_translate_impl()
2172 if (Py_CHARMASK((*output++ = table_chars[c])) != c) in bytes_translate_impl()
2187 trans_table[i] = Py_CHARMASK(i); in bytes_translate_impl()
2190 trans_table[i] = Py_CHARMASK(table_chars[i]); in bytes_translate_impl()
2195 trans_table[(int) Py_CHARMASK(del_table_chars[i])] = -1; in bytes_translate_impl()
2199 c = Py_CHARMASK(*input++); in bytes_translate_impl()
2201 if (Py_CHARMASK(*output++ = (char)trans_table[c]) == c) in bytes_translate_impl()