Home
last modified time | relevance | path

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

/base/global/resource_management/frameworks/resmgr/src/utils/
H A Dutils.cpp105 unsigned char byte1 = static_cast<unsigned char>(srcData[i]); in EncodeBase64() local
108 base64data += g_codes[byte1 >> BitOperatorNum::BIT_TWO]; in EncodeBase64()
109 base64data += g_codes[((byte1 & 0x3) << BitOperatorNum::BIT_FOUR) | (byte2 >> BitOperatorNum::BIT_FOUR)]; in EncodeBase64()
121 unsigned char byte1 = static_cast<unsigned char>(srcData[i]); in EncodeBase64() local
122 base64data += g_codes[byte1 >> BitOperatorNum::BIT_TWO]; in EncodeBase64()
123 base64data += g_codes[(byte1 & 0x3) << BitOperatorNum::BIT_FOUR]; in EncodeBase64()
127 unsigned char byte1 = static_cast<unsigned char>(srcData[i]); in EncodeBase64() local
129 base64data += g_codes[byte1 >> BitOperatorNum::BIT_TWO]; in EncodeBase64()
130 base64data += g_codes[((byte1 & 0x3) << BitOperatorNum::BIT_FOUR) | (byte2 >> BitOperatorNum::BIT_FOUR)]; in EncodeBase64()

Completed in 1 milliseconds