Searched refs:s_base64Table (Results 1 – 2 of 2) 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()
188 static const char s_base64Table[64] = in operator <<() local214 d[0] = s_base64Table[s0 >> 2]; in operator <<()215 d[1] = s_base64Table[((s0&0x3)<<4) | (s1>>4)]; in operator <<()216 d[2] = s_base64Table[((s1&0xF)<<2) | (s2>>6)]; in operator <<()217 d[3] = s_base64Table[s2&0x3F]; in operator <<()