Home
last modified time | relevance | path

Searched refs:LOWER_6_BITS_MASK (Results 1 - 4 of 4) sorted by relevance

/commonlibrary/ets_utils/js_api_module/buffer/
H A Dconverter.cpp40 ((c2 & LOWER_6_BITS_MASK) << (2 * UTF8_VALID_BITS)) | in Utf8ToUtf16BEToData()
41 ((c3 & LOWER_6_BITS_MASK) << UTF8_VALID_BITS) | in Utf8ToUtf16BEToData()
42 (c4 & LOWER_6_BITS_MASK); in Utf8ToUtf16BEToData()
81 ((c2 & LOWER_6_BITS_MASK) << UTF8_VALID_BITS) | in Utf8ToUtf16BE()
82 (c3 & LOWER_6_BITS_MASK); in Utf8ToUtf16BE()
92 (c2 & LOWER_6_BITS_MASK); in Utf8ToUtf16BE()
189 *(pos + 3) = table[pStart[2] & LOWER_6_BITS_MASK]; in Base64Encode()
277 charArray3[1] = ((charArray4[1] & LOWER_4_BITS_MASK) << 4) + ((charArray4[2] & LOWER_6_BITS_MASK) >> 2); in Base64Decode()
H A Dconverter.h43 constexpr uint8_t LOWER_6_BITS_MASK = 0x3FU; member
/commonlibrary/ets_utils/platform/ohos/
H A Dutil_helper.cpp193 ((c2 & LOWER_6_BITS_MASK) << (2 * UTF8_VALID_BITS)) | // 2:multiple in Utf8ToUtf16BE()
194 ((c3 & LOWER_6_BITS_MASK) << UTF8_VALID_BITS) | (c4 & LOWER_6_BITS_MASK); in Utf8ToUtf16BE()
208 ((c2 & LOWER_6_BITS_MASK) << UTF8_VALID_BITS) | (c3 & LOWER_6_BITS_MASK); in Utf8ToUtf16BE()
215 uint32_t codePoint = ((c1 & LOWER_5_BITS_MASK) << UTF8_VALID_BITS) | (c2 & LOWER_6_BITS_MASK); in Utf8ToUtf16BE()
/commonlibrary/ets_utils/platform/
H A Dutil_helper.h39 constexpr uint8_t LOWER_6_BITS_MASK = 0x3FU; member

Completed in 3 milliseconds