Lines Matching refs:TWO
92 return UtfLength::TWO;
125 case UtfLength::TWO:
190 return {UtfLength::TWO, {UTF8_2B_FIRST, UTF8_2B_SECOND}};
201 return {UtfLength::TWO, {ch0, ch1}};
240 res += UtfLength::TWO; // special case for U+0000 => C0 80
245 res += UtfLength::TWO;
326 return {((d0 & utf::MASK_5BIT) << utf::DATA_WIDTH) | (d1 & utf::MASK_6BIT), UtfLength::TWO};
329 uint8_t d2 = data[UtfLength::TWO]; // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic)
504 if (maxLen < UtfLength::TWO) {
511 return {((d0 & utf::MASK_5BIT) << utf::DATA_WIDTH) | (d1 & utf::MASK_6BIT), UtfLength::TWO};
520 uint8_t d2 = sp[UtfLength::TWO];