Lines Matching defs:b64_6
939 static const uint8_t b64_6[256] = {
983 if (b64_6[data[i]] == 64)
1000 *(out++) = b64_6[ptr[0]] << 2 | b64_6[ptr[1]] >> 4;
1001 *(out++) = b64_6[ptr[1]] << 4 | b64_6[ptr[2]] >> 2;
1002 *(out++) = b64_6[ptr[2]] << 6 | b64_6[ptr[3]];
1009 *(out++) = b64_6[ptr[0]] << 2 | b64_6[ptr[1]] >> 4;
1012 *(out++) = b64_6[ptr[1]] << 4 | b64_6[ptr[2]] >> 2;
1015 *(out++) = b64_6[ptr[2]] << 6 | b64_6[ptr[3]];