Searched refs:g_base64DecodeTable (Results 1 – 1 of 1) sorted by relevance
35 static const uint8_t g_base64DecodeTable[256] = { /* 256 due to character size */ variable132 uint32_t a = g_base64DecodeTable[from[i++]]; in Base64Decode()133 uint32_t b = g_base64DecodeTable[from[i++]]; in Base64Decode()134 uint32_t c = g_base64DecodeTable[from[i++]]; in Base64Decode()135 uint32_t d = g_base64DecodeTable[from[i++]]; in Base64Decode()