Home
last modified time | relevance | path

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

/xnu-8020.140.41/libkern/c++/
H A DOSData.cpp509 static const char __CFPLDataEncodeTable[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz01… variable
536 c = __CFPLDataEncodeTable[((p[0] >> 2) & 0x3f)]; in serialize()
542 c = __CFPLDataEncodeTable[((((p[-1] << 8) | p[0]) >> 4) & 0x3f)]; in serialize()
548 c = __CFPLDataEncodeTable[((((p[-1] << 8) | p[0]) >> 6) & 0x3f)]; in serialize()
552 c = __CFPLDataEncodeTable[(p[0] & 0x3f)]; in serialize()
563 c = __CFPLDataEncodeTable[((p[-1] << 4) & 0x30)]; in serialize()
575 c = __CFPLDataEncodeTable[((p[-1] << 2) & 0x3c)]; in serialize()