Searched refs:s_base64Table (Results 1 – 3 of 3) sorted by relevance
258 static const char s_base64Table[64] = in qpXmlWriter_writeBase64() local288 d[0] = s_base64Table[s0 >> 2]; in qpXmlWriter_writeBase64()289 d[1] = s_base64Table[((s0&0x3)<<4) | (s1>>4)]; in qpXmlWriter_writeBase64()290 d[2] = s_base64Table[((s1&0xF)<<2) | (s2>>6)]; in qpXmlWriter_writeBase64()291 d[3] = s_base64Table[s2&0x3F]; in qpXmlWriter_writeBase64()
186 static const char s_base64Table[64] = in operator <<() local212 d[0] = s_base64Table[s0 >> 2]; in operator <<()213 d[1] = s_base64Table[((s0&0x3)<<4) | (s1>>4)]; in operator <<()214 d[2] = s_base64Table[((s1&0xF)<<2) | (s2>>6)]; in operator <<()215 d[3] = s_base64Table[s2&0x3F]; in operator <<()
240 static const char s_base64Table[64] = in operator <<() local266 d[0] = s_base64Table[s0 >> 2]; in operator <<()267 d[1] = s_base64Table[((s0 & 0x3) << 4) | (s1 >> 4)]; in operator <<()268 d[2] = s_base64Table[((s1 & 0xF) << 2) | (s2 >> 6)]; in operator <<()269 d[3] = s_base64Table[s2 & 0x3F]; in operator <<()