Home
last modified time | relevance | path

Searched refs:LOWER_2_BITS_MASK (Results 1 - 2 of 2) sorted by relevance

/commonlibrary/ets_utils/js_api_module/buffer/
H A Dconverter.cpp185 *(pos + 1) = table[((pStart[0] & LOWER_2_BITS_MASK) << 4) | (pStart[1] >> 4)]; in Base64Encode()
202 *(pos + 1) = table[(pStart[0] & LOWER_2_BITS_MASK) << 4]; in Base64Encode()
207 *(pos + 1) = table[((pStart[0] & LOWER_2_BITS_MASK) << 4) | (pStart[1] >> 4)]; in Base64Encode()
255 charArray3[2] = ((charArray4[2] & LOWER_2_BITS_MASK) << 6) + charArray4[3]; in Base64Decode()
H A Dconverter.h47 constexpr uint8_t LOWER_2_BITS_MASK = 0x03U; member

Completed in 2 milliseconds