Lines Matching refs:dest
51 char *dest = static_cast<char *>(output);
62 *dest++ = (base64Chars[0] << 2) | ((base64Chars[1] & 0x30) >> 4); // 2: shift 2bits, 4: shift 4bits
63 *dest++ = (base64Chars[1] << 4) | ((base64Chars[2] & 0x3c) >> 2); // 2: shift 2bits, 4: shift 4bits
64 *dest++ = (base64Chars[2] << 6) | base64Chars[3]; // 6: shift 6bits, 2: the second char, 3: the third char
76 *dest++ = tmp[j];
81 size_t decodedLen = dest - static_cast<char *>(output);
98 char *dest = output;
100 *dest++ = ENCODE_TABLE[src[0] >> 2]; // 2: shift 2bits
101 *dest++ = ENCODE_TABLE[((src[0] & 0x03) << 4) | (src[1] >> 4)]; // 4: shift 4bits
102 *dest++ = ENCODE_TABLE[((src[1] & 0x0f) << 2) | (src[2] >> 6)]; // 2: shift 2bits, 6: shift 6bits
103 *dest++ = ENCODE_TABLE[src[2] & 0x3f]; // 2: the second char
112 *dest++ = ENCODE_TABLE[src[0] >> 2]; // 2: shift 2bits
113 *dest++ = ENCODE_TABLE[((src[0] & 0x03) << 4) | (src[1] >> 4)]; // 4: shift 4bits
114 *dest++ = ENCODE_TABLE[((src[1] & 0x0f) << 2)]; // 2: shift 2bits
115 *dest++ = '=';
118 *dest++ = ENCODE_TABLE[src[0] >> 2]; // 2: shift 2bits
119 *dest++ = ENCODE_TABLE[((src[0] & 0x03) << 4)]; // 4: shift 4bits
120 *dest++ = '=';
121 *dest++ = '=';
126 return dest - output;