Lines Matching defs:b64
668 char* b64;
672 b64 = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123"
675 b64 = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123"
682 target[o] = b64[src[i] >> 2];
683 target[o+1] = b64[ ((src[i]&0x03)<<4) | (src[i+1]>>4) ];
684 target[o+2] = b64[ ((src[i+1]&0x0f)<<2) | (src[i+2]>>6) ];
685 target[o+3] = b64[ (src[i+2]&0x3f) ];
693 target[o] = b64[src[i] >> 2];
694 target[o+1] = b64[ ((src[i]&0x03)<<4) | (src[i+1]>>4) ];
695 target[o+2] = b64[ ((src[i+1]&0x0f)<<2) ];
706 target[o] = b64[src[i] >> 2];
707 target[o+1] = b64[ ((src[i]&0x03)<<4) ];
751 const uint8_t pad64 = 64; /* is 64th in the b64 array */
760 const char* b64 = pad'=' is appended to array
762 const char* d = strchr(b64, *s++);
763 and use d-b64;
843 /* the '+' and the '/' and padding '=' is not allowed in b64