Lines Matching refs:TOO_SHORT

4220       if (next_pos > len) { return result(error_code::TOO_SHORT, pos); }
4221 if ((data[pos + 1] & 0b11000000) != 0b10000000) { return result(error_code::TOO_SHORT, pos); }
4227 if (next_pos > len) { return result(error_code::TOO_SHORT, pos); }
4228 if ((data[pos + 1] & 0b11000000) != 0b10000000) { return result(error_code::TOO_SHORT, pos); }
4229 if ((data[pos + 2] & 0b11000000) != 0b10000000) { return result(error_code::TOO_SHORT, pos); }
4238 if (next_pos > len) { return result(error_code::TOO_SHORT, pos); }
4239 if ((data[pos + 1] & 0b11000000) != 0b10000000) { return result(error_code::TOO_SHORT, pos); }
4240 if ((data[pos + 2] & 0b11000000) != 0b10000000) { return result(error_code::TOO_SHORT, pos); }
4241 if ((data[pos + 3] & 0b11000000) != 0b10000000) { return result(error_code::TOO_SHORT, pos); }
11588 if(pos + 1 >= len) { return result(error_code::TOO_SHORT, pos); } // minimal bound checking
11589 if ((data[pos + 1] & 0b11000000) != 0b10000000) { return result(error_code::TOO_SHORT, pos); }
11601 if(pos + 2 >= len) { return result(error_code::TOO_SHORT, pos); } // minimal bound checking
11603 if ((data[pos + 1] & 0b11000000) != 0b10000000) { return result(error_code::TOO_SHORT, pos); }
11604 if ((data[pos + 2] & 0b11000000) != 0b10000000) { return result(error_code::TOO_SHORT, pos); }
11618 if(pos + 3 >= len) { return result(error_code::TOO_SHORT, pos); } // minimal bound checking
11619 if ((data[pos + 1] & 0b11000000) != 0b10000000) { return result(error_code::TOO_SHORT, pos); }
11620 if ((data[pos + 2] & 0b11000000) != 0b10000000) { return result(error_code::TOO_SHORT, pos); }
11621 if ((data[pos + 3] & 0b11000000) != 0b10000000) { return result(error_code::TOO_SHORT, pos); }
11882 if(pos + 1 >= len) { return result(error_code::TOO_SHORT, pos); } // minimal bound checking
11883 if ((data[pos + 1] & 0b11000000) != 0b10000000) { return result(error_code::TOO_SHORT, pos); }
11891 if(pos + 2 >= len) { return result(error_code::TOO_SHORT, pos); } // minimal bound checking
11893 if ((data[pos + 1] & 0b11000000) != 0b10000000) { return result(error_code::TOO_SHORT, pos); }
11894 if ((data[pos + 2] & 0b11000000) != 0b10000000) { return result(error_code::TOO_SHORT, pos); }
11905 if(pos + 3 >= len) { return result(error_code::TOO_SHORT, pos); } // minimal bound checking
11906 if ((data[pos + 1] & 0b11000000) != 0b10000000) { return result(error_code::TOO_SHORT, pos);}
11907 if ((data[pos + 2] & 0b11000000) != 0b10000000) { return result(error_code::TOO_SHORT, pos); }
11908 if ((data[pos + 3] & 0b11000000) != 0b10000000) { return result(error_code::TOO_SHORT, pos); }
12201 return result(error_code::TOO_SHORT, pos); } // minimal bound checking
12203 return result(error_code::TOO_SHORT, pos); } // checks if the next byte is a valid continuation byte in UTF-8. A valid continuation byte starts with 10.
15226 constexpr const uint8_t TOO_SHORT = 1<<0; // 11______ 0_______
15254 TOO_SHORT | OVERLONG_2,
15256 TOO_SHORT,
15258 TOO_SHORT | OVERLONG_3 | SURROGATE,
15260 TOO_SHORT | TOO_LARGE | TOO_LARGE_1000 | OVERLONG_4
15262 constexpr const uint8_t CARRY = TOO_SHORT | TOO_LONG | TWO_CONTS; // These all have ____ in byte 1 .
15293 TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT,
15294 TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT,
15305 TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT
15617 constexpr const uint8_t TOO_SHORT = 1<<0; // 11______ 0_______
15645 TOO_SHORT | OVERLONG_2,
15647 TOO_SHORT,
15649 TOO_SHORT | OVERLONG_3 | SURROGATE,
15651 TOO_SHORT | TOO_LARGE | TOO_LARGE_1000 | OVERLONG_4
15653 constexpr const uint8_t CARRY = TOO_SHORT | TOO_LONG | TWO_CONTS; // These all have ____ in byte 1 .
15684 TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT,
15685 TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT,
15696 TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT
15969 constexpr const uint8_t TOO_SHORT = 1<<0; // 11______ 0_______
15997 TOO_SHORT | OVERLONG_2,
15999 TOO_SHORT,
16001 TOO_SHORT | OVERLONG_3 | SURROGATE,
16003 TOO_SHORT | TOO_LARGE | TOO_LARGE_1000 | OVERLONG_4
16005 constexpr const uint8_t CARRY = TOO_SHORT | TOO_LONG | TWO_CONTS; // These all have ____ in byte 1 .
16036 TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT,
16037 TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT,
16048 TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT
16377 constexpr const uint8_t TOO_SHORT = 1<<0; // 11______ 0_______
16406 TOO_SHORT | OVERLONG_2,
16414 constexpr const uint8_t CARRY = TOO_SHORT | TOO_LONG | TWO_CONTS; // These all have ____ in byte 1 .
16445 TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT,
16446 TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT,
16457 TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT
24637 constexpr const uint8_t TOO_SHORT = 1<<0; // 11______ 0_______
24665 TOO_SHORT | OVERLONG_2,
24667 TOO_SHORT,
24669 TOO_SHORT | OVERLONG_3 | SURROGATE,
24671 TOO_SHORT | TOO_LARGE | TOO_LARGE_1000 | OVERLONG_4
24673 constexpr const uint8_t CARRY = TOO_SHORT | TOO_LONG | TWO_CONTS; // These all have ____ in byte 1 .
24704 TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT,
24705 TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT,
24716 TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT
25028 constexpr const uint8_t TOO_SHORT = 1<<0; // 11______ 0_______
25056 TOO_SHORT | OVERLONG_2,
25058 TOO_SHORT,
25060 TOO_SHORT | OVERLONG_3 | SURROGATE,
25062 TOO_SHORT | TOO_LARGE | TOO_LARGE_1000 | OVERLONG_4
25064 constexpr const uint8_t CARRY = TOO_SHORT | TOO_LONG | TWO_CONTS; // These all have ____ in byte 1 .
25095 TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT,
25096 TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT,
25107 TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT
25380 constexpr const uint8_t TOO_SHORT = 1<<0; // 11______ 0_______
25408 TOO_SHORT | OVERLONG_2,
25410 TOO_SHORT,
25412 TOO_SHORT | OVERLONG_3 | SURROGATE,
25414 TOO_SHORT | TOO_LARGE | TOO_LARGE_1000 | OVERLONG_4
25416 constexpr const uint8_t CARRY = TOO_SHORT | TOO_LONG | TWO_CONTS; // These all have ____ in byte 1 .
25447 TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT,
25448 TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT,
25459 TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT
25790 constexpr const uint8_t TOO_SHORT = 1<<0; // 11______ 0_______
25819 TOO_SHORT | OVERLONG_2,
25827 constexpr const uint8_t CARRY = TOO_SHORT | TOO_LONG | TWO_CONTS; // These all have ____ in byte 1 .
25858 TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT,
25859 TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT,
25870 TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT
27009 constexpr const uint8_t TOO_SHORT = 1<<0; // 11______ 0_______
27037 TOO_SHORT | OVERLONG_2,
27039 TOO_SHORT,
27041 TOO_SHORT | OVERLONG_3 | SURROGATE,
27043 TOO_SHORT | TOO_LARGE | TOO_LARGE_1000 | OVERLONG_4
27045 constexpr const uint8_t CARRY = TOO_SHORT | TOO_LONG | TWO_CONTS; // These all have ____ in byte 1 .
27076 TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT,
27077 TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT,
27088 TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT
27400 constexpr const uint8_t TOO_SHORT = 1<<0; // 11______ 0_______
27428 TOO_SHORT | OVERLONG_2,
27430 TOO_SHORT,
27432 TOO_SHORT | OVERLONG_3 | SURROGATE,
27434 TOO_SHORT | TOO_LARGE | TOO_LARGE_1000 | OVERLONG_4
27436 constexpr const uint8_t CARRY = TOO_SHORT | TOO_LONG | TWO_CONTS; // These all have ____ in byte 1 .
27467 TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT,
27468 TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT,
27479 TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT
27752 constexpr const uint8_t TOO_SHORT = 1<<0; // 11______ 0_______
27780 TOO_SHORT | OVERLONG_2,
27782 TOO_SHORT,
27784 TOO_SHORT | OVERLONG_3 | SURROGATE,
27786 TOO_SHORT | TOO_LARGE | TOO_LARGE_1000 | OVERLONG_4
27788 constexpr const uint8_t CARRY = TOO_SHORT | TOO_LONG | TWO_CONTS; // These all have ____ in byte 1 .
27819 TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT,
27820 TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT,
27831 TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT
31016 constexpr const uint8_t TOO_SHORT = 1<<0; // 11______ 0_______
31044 TOO_SHORT | OVERLONG_2,
31046 TOO_SHORT,
31048 TOO_SHORT | OVERLONG_3 | SURROGATE,
31050 TOO_SHORT | TOO_LARGE | TOO_LARGE_1000 | OVERLONG_4
31052 constexpr const uint8_t CARRY = TOO_SHORT | TOO_LONG | TWO_CONTS; // These all have ____ in byte 1 .
31083 TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT,
31084 TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT,
31095 TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT
31407 constexpr const uint8_t TOO_SHORT = 1<<0; // 11______ 0_______
31435 TOO_SHORT | OVERLONG_2,
31437 TOO_SHORT,
31439 TOO_SHORT | OVERLONG_3 | SURROGATE,
31441 TOO_SHORT | TOO_LARGE | TOO_LARGE_1000 | OVERLONG_4
31443 constexpr const uint8_t CARRY = TOO_SHORT | TOO_LONG | TWO_CONTS; // These all have ____ in byte 1 .
31474 TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT,
31475 TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT,
31486 TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT
31759 constexpr const uint8_t TOO_SHORT = 1<<0; // 11______ 0_______
31787 TOO_SHORT | OVERLONG_2,
31789 TOO_SHORT,
31791 TOO_SHORT | OVERLONG_3 | SURROGATE,
31793 TOO_SHORT | TOO_LARGE | TOO_LARGE_1000 | OVERLONG_4
31795 constexpr const uint8_t CARRY = TOO_SHORT | TOO_LONG | TWO_CONTS; // These all have ____ in byte 1 .
31826 TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT,
31827 TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT,
31838 TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT
32167 constexpr const uint8_t TOO_SHORT = 1<<0; // 11______ 0_______
32196 TOO_SHORT | OVERLONG_2,
32204 constexpr const uint8_t CARRY = TOO_SHORT | TOO_LONG | TWO_CONTS; // These all have ____ in byte 1 .
32235 TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT,
32236 TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT,
32247 TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT