Home
last modified time | relevance | path

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

/commonlibrary/ets_utils/js_api_module/buffer/
H A Dconverter.cpp80 uint32_t codePoint = ((c1 & LOWER_4_BITS_MASK) << (2 * UTF8_VALID_BITS)) | in Utf8ToUtf16BE()
187 *(pos + 2) = table[((pStart[1] & LOWER_4_BITS_MASK) << 2) | (pStart[2] >> 6)]; in Base64Encode()
209 *(pos + 2) = table[(pStart[1] & LOWER_4_BITS_MASK) << 2]; in Base64Encode()
252 charArray3[1] = ((charArray4[1] & LOWER_4_BITS_MASK) << 4) + ((charArray4[2] & MIDDLE_4_BITS_MASK) >> 2); in Base64Decode()
277 charArray3[1] = ((charArray4[1] & LOWER_4_BITS_MASK) << 4) + ((charArray4[2] & LOWER_6_BITS_MASK) >> 2); in Base64Decode()
H A Dconverter.h45 constexpr uint8_t LOWER_4_BITS_MASK = 0x0FU; member
/commonlibrary/ets_utils/platform/
H A Dutil_helper.h41 constexpr uint8_t LOWER_4_BITS_MASK = 0x0FU; member
/commonlibrary/ets_utils/platform/ohos/
H A Dutil_helper.cpp207 uint32_t codePoint = ((c1 & LOWER_4_BITS_MASK) << (2 * UTF8_VALID_BITS)) | // 2:multiple in Utf8ToUtf16BE()

Completed in 3 milliseconds