Lines Matching refs:four_bytes
4019 const Py_UCS4 *four_bytes;
4037 four_bytes = PyUnicode_4BYTE_DATA(unicode);
4038 ucs4_end = four_bytes + _PyUnicode_LENGTH(unicode);
4041 for (; four_bytes < ucs4_end; ++four_bytes) {
4042 if (*four_bytes > 0xFFFF)
4056 four_bytes = PyUnicode_4BYTE_DATA(unicode);
4057 for (; four_bytes < ucs4_end; ++four_bytes, ++w) {
4058 if (*four_bytes > 0xFFFF) {
4059 assert(*four_bytes <= MAX_UNICODE);
4061 *w++ = Py_UNICODE_HIGH_SURROGATE(*four_bytes);
4062 *w = Py_UNICODE_LOW_SURROGATE(*four_bytes);
4065 *w = *four_bytes;