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

/haiku/src/kits/support/
H A DBase64.cpp14 static const char kBase64Alphabet[64] = { variable
44 out[k++] = kBase64Alphabet[(concat >> 18) & 63];
45 out[k++] = kBase64Alphabet[(concat >> 12) & 63];
46 out[k++] = kBase64Alphabet[(concat >> 6) & 63];
47 out[k++] = kBase64Alphabet[concat & 63];
/haiku/src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/
H A DResponse.cpp28 static const char kBase64Alphabet[64] = { member in namespace:IMAP
44 for (size_t i = 0; i < sizeof(kBase64Alphabet); i++)
45 kInverseBase64Alphabet[(int)kBase64Alphabet[i]] = i + 1;
85 buffer += kBase64Alphabet[(sextet + (c >> bitsToWrite)) & 0x3f];
183 buffer += kBase64Alphabet[sextet];

Completed in 37 milliseconds