Lines Matching refs:b64
668 char* b64; in sldns_b64_ntop_base() local
672 b64 = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123" in sldns_b64_ntop_base()
675 b64 = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123" in sldns_b64_ntop_base()
682 target[o] = b64[src[i] >> 2]; in sldns_b64_ntop_base()
683 target[o+1] = b64[ ((src[i]&0x03)<<4) | (src[i+1]>>4) ]; in sldns_b64_ntop_base()
684 target[o+2] = b64[ ((src[i+1]&0x0f)<<2) | (src[i+2]>>6) ]; in sldns_b64_ntop_base()
685 target[o+3] = b64[ (src[i+2]&0x3f) ]; in sldns_b64_ntop_base()
693 target[o] = b64[src[i] >> 2]; in sldns_b64_ntop_base()
694 target[o+1] = b64[ ((src[i]&0x03)<<4) | (src[i+1]>>4) ]; in sldns_b64_ntop_base()
695 target[o+2] = b64[ ((src[i+1]&0x0f)<<2) ]; in sldns_b64_ntop_base()
706 target[o] = b64[src[i] >> 2]; in sldns_b64_ntop_base()
707 target[o+1] = b64[ ((src[i]&0x03)<<4) ]; in sldns_b64_ntop_base()