Searched refs:nprbytes (Results 1 - 1 of 1) sorted by relevance

/freebsd-10.3-release/contrib/apr-util/encoding/
H A Dapr_base64.c114 register apr_size_t nprbytes; local
119 nprbytes = (bufin - (const unsigned char *) bufcoded) - 1;
120 nbytesdecoded = (((int)nprbytes + 3) / 4) * 3;
151 register apr_size_t nprbytes; local
155 nprbytes = (bufin - (const unsigned char *) bufcoded) - 1;
156 nbytesdecoded = (((int)nprbytes + 3) / 4) * 3;
161 while (nprbytes > 4) {
169 nprbytes -= 4;
172 /* Note: (nprbytes == 1) would be an error, so just ingore that case */
173 if (nprbytes >
[all...]

Completed in 50 milliseconds