Home
last modified time | relevance | path

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

/xnu-11215/libkern/c++/
H A DOSData.cpp503 static const char __CFPLDataEncodeTable[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz01… variable
530 c = __CFPLDataEncodeTable[((p[0] >> 2) & 0x3f)]; in serialize()
536 c = __CFPLDataEncodeTable[((((p[-1] << 8) | p[0]) >> 4) & 0x3f)]; in serialize()
542 c = __CFPLDataEncodeTable[((((p[-1] << 8) | p[0]) >> 6) & 0x3f)]; in serialize()
546 c = __CFPLDataEncodeTable[(p[0] & 0x3f)]; in serialize()
557 c = __CFPLDataEncodeTable[((p[-1] << 4) & 0x30)]; in serialize()
569 c = __CFPLDataEncodeTable[((p[-1] << 2) & 0x3c)]; in serialize()