Home
last modified time | relevance | path

Searched refs:bufin (Results 1 – 3 of 3) sorted by relevance

/mirbsd/src/usr.sbin/httpd/src/ap/
Dap_base64.c99 register const unsigned char *bufin; in ap_base64decode_len() local
102 bufin = (const unsigned char *) bufcoded; in ap_base64decode_len()
103 while (pr2six[*(bufin++)] <= 63); in ap_base64decode_len()
105 nprbytes = (bufin - (const unsigned char *) bufcoded) - 1; in ap_base64decode_len()
128 register const unsigned char *bufin; in ap_base64decode_binary() local
131 bufin = (const unsigned char *) bufcoded; in ap_base64decode_binary()
132 while (pr2six[*(bufin++)] <= 63); in ap_base64decode_binary()
133 nprbytes = (bufin - (const unsigned char *) bufcoded) - 1; in ap_base64decode_binary()
137 bufin = (const unsigned char *) bufcoded; in ap_base64decode_binary()
140 *(bufout++) = (unsigned char) (pr2six[*bufin] << 2 in ap_base64decode_binary()
[all …]
/mirbsd/src/gnu/usr.bin/lynx/WWW/Library/Implementation/
DHTUU.c71 int HTUU_encode(unsigned char *bufin, in HTUU_encode() argument
84 *(outptr++) = ENC(*bufin >> 2); /* c1 */ in HTUU_encode()
85 *(outptr++) = ENC(((*bufin << 4) & 060) | ((bufin[1] >> 4) & 017)); /*c2 */ in HTUU_encode()
86 *(outptr++) = ENC(((bufin[1] << 2) & 074) | ((bufin[2] >> 6) & 03)); /*c3 */ in HTUU_encode()
87 *(outptr++) = ENC(bufin[2] & 077); /* c4 */ in HTUU_encode()
89 bufin += 3; in HTUU_encode()
137 register char *bufin; in HTUU_decode() local
183 bufin = bufcoded; in HTUU_decode()
184 while (pr2six[UCH(*(bufin++))] <= MAXVAL) ; in HTUU_decode()
185 nprbytes = (int) (bufin - bufcoded - 1); in HTUU_decode()
[all …]
DHTUU.h25 extern int HTUU_encode(unsigned char *bufin,