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

/haiku-fatelf/src/servers/app/drawing/html5/
H A Dbase64.cpp13 static const char kBase64Alphabet[64] = { variable
44 out[k++] = kBase64Alphabet[(concat >> 18) & 63];
45 out[k++] = kBase64Alphabet[(concat >> 12) & 63];
47 out[k++] = kBase64Alphabet[(concat >> 6) & 63];
51 out[k++] = kBase64Alphabet[concat & 63];
/haiku-fatelf/src/kits/mail/
H A Dmail_encoding.cpp18 static const char kBase64Alphabet[64] = { variable
144 out[k++] = kBase64Alphabet[(concat >> 18) & 63];
145 out[k++] = kBase64Alphabet[(concat >> 12) & 63];
146 out[k++] = kBase64Alphabet[(concat >> 6) & 63];
147 out[k++] = kBase64Alphabet[concat & 63];

Completed in 40 milliseconds