Lines Matching full:common
52 …if (!(common::utf_helper::IsHexDigits(frontChart) && common::utf_helper::IsHexDigits(behindChart))… in DecodePercentEncoding()
59 bb = common::utf_helper::GetValueFromTwoHex(frontChart, behindChart); in DecodePercentEncoding()
62 if (!((bb & common::utf_helper::BIT_MASK_2) == common::utf_helper::BIT_MASK_1)) { in DecodePercentEncoding()
76 if (!common::utf_helper::IsValidUTF8(oct)) { in UTF16EncodeCodePoint()
81 if (vv < common::utf_helper::DECODE_SECOND_FACTOR) { in UTF16EncodeCodePoint()
85 …uint16_t lv = (((vv - common::utf_helper::DECODE_SECOND_FACTOR) & common::utf_helper::BIT16_MASK) + in UTF16EncodeCodePoint()
86 common::utf_helper::DECODE_TRAIL_LOW); in UTF16EncodeCodePoint()
88 …uint16_t hv = ((((vv - common::utf_helper::DECODE_SECOND_FACTOR) >> 10U) & common::utf_helper::BIT… in UTF16EncodeCodePoint()
89 common::utf_helper::DECODE_LEAD_LOW); // 10: means shift left by 10 digits in UTF16EncodeCodePoint()
95 …uint16_t lv = (((vv - common::utf_helper::DECODE_SECOND_FACTOR) & common::utf_helper::BIT16_MASK) + in UTF16EncodeCodePoint()
96 common::utf_helper::DECODE_TRAIL_LOW); in UTF16EncodeCodePoint()
98 …uint16_t hv = ((((vv - common::utf_helper::DECODE_SECOND_FACTOR) >> 10U) & common::utf_helper::BIT… in UTF16EncodeCodePoint()
99 common::utf_helper::DECODE_LEAD_LOW); // 10: means shift left by 10 digits in UTF16EncodeCodePoint()
122 …if (!(common::utf_helper::IsHexDigits(frontChar) && common::utf_helper::IsHexDigits(behindChar))) { in DecodePercentEncoding()
129 if ((bb & common::utf_helper::BIT_MASK_1) == 0) { in DecodePercentEncoding()
132 uint8_t bb = common::utf_helper::GetValueFromTwoHex(frontChar, behindChar); in DecodePercentEncoding()
134 if ((bb & common::utf_helper::BIT_MASK_1) == 0) { in DecodePercentEncoding()
161 …while ((((static_cast<uint32_t>(bb) << static_cast<uint32_t>(n)) & common::utf_helper::BIT_MASK_1)… in DecodePercentEncoding()
272 …uint8_t res = ((idxf << 4U) | idxb) & common::utf_helper::BIT_MASK_FF; // NOLINT 4: means shift l… in DecodePercentEncoding()