Searched refs:__CFPLDataEncodeTable (Results 1 – 1 of 1) sorted by relevance
509 static const char __CFPLDataEncodeTable[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz01… variable536 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()