Lines Matching defs:code_point
182 uint32_t code_point =
184 if (code_point < 0x80 || 0x7ff < code_point) {
187 *utf32_output++ = char32_t(code_point);
202 uint32_t code_point = (leading_byte & 0b00001111) << 12 |
205 if (code_point < 0x800 || 0xffff < code_point ||
206 (0xd7ff < code_point && code_point < 0xe000)) {
209 *utf32_output++ = char32_t(code_point);
227 uint32_t code_point = (leading_byte & 0b00000111) << 18 |
231 if (code_point <= 0xffff || 0x10ffff < code_point) {
234 *utf32_output++ = char32_t(code_point);
8028 uint8_t code_point = input.front();
8030 int32_t digit = char_to_digit_value(code_point);
8087 uint8_t code_point = input.front();
8089 int32_t digit = char_to_digit_value(code_point);
8144 for (auto code_point : input) {
8145 if (code_point >= n && code_point < m) m = code_point;
8953 inline static direction find_direction(uint32_t code_point) noexcept {
8955 std::begin(dir_table), std::end(dir_table), code_point,
8963 if (code_point >= it->start_code) {