Searched refs:ENC (Results 1 – 2 of 2) sorted by relevance
131 static const char *ENC = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; in Base64Encode() local137 ss << ENC[*in >> 2]; in Base64Encode()140 ss << ENC[(*in & 0x3) << 4]; in Base64Encode()146 ss << ENC[((*in & 0x3) << 4) | (*(in + 1) >> 4)]; in Base64Encode()150 ss << ENC[(*in & 0xF) << 2]; in Base64Encode()155 ss << ENC[((*in & 0xF) << 2) | (*(in + 1) >> 6)]; in Base64Encode()158 ss << ENC[*in & 0x3F]; in Base64Encode()
138 parse_makefile_am(${WEBP_SRC_DIR}/dsp "WEBP_DSP_ENC_SRCS" "ENC")143 parse_makefile_am(${WEBP_SRC_DIR}/utils "WEBP_UTILS_ENC_SRCS" "ENC")
Completed in 8 milliseconds