Home
last modified time | relevance | path

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

/xnu-8019.80.24/libkern/c++/
H A DOSData.cpp514 static const char __CFPLDataEncodeTable[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz01… variable
541 c = __CFPLDataEncodeTable[((p[0] >> 2) & 0x3f)]; in serialize()
547 c = __CFPLDataEncodeTable[((((p[-1] << 8) | p[0]) >> 4) & 0x3f)]; in serialize()
553 c = __CFPLDataEncodeTable[((((p[-1] << 8) | p[0]) >> 6) & 0x3f)]; in serialize()
557 c = __CFPLDataEncodeTable[(p[0] & 0x3f)]; in serialize()
568 c = __CFPLDataEncodeTable[((p[-1] << 4) & 0x30)]; in serialize()
580 c = __CFPLDataEncodeTable[((p[-1] << 2) & 0x3c)]; in serialize()