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

/darwin-on-arm/xnu/libkern/c++/
H A DOSData.cpp391 static const char __CFPLDataEncodeTable[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; variable
411 c = __CFPLDataEncodeTable [ ((p[0] >> 2) & 0x3f)];
415 c = __CFPLDataEncodeTable [ ((((p[-1] << 8) | p[0]) >> 4) & 0x3f)];
419 c = __CFPLDataEncodeTable [ ((((p[-1] << 8) | p[0]) >> 6) & 0x3f)];
421 c = __CFPLDataEncodeTable [ (p[0] & 0x3f)];
430 c = __CFPLDataEncodeTable [ ((p[-1] << 4) & 0x30)];
436 c = __CFPLDataEncodeTable [ ((p[-1] << 2) & 0x3c)];

Completed in 21 milliseconds