Home
last modified time | relevance | path

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

/NextBSD/contrib/apr-util/encoding/
HDapr_base64.c112 int nbytesdecoded; in apr_base64_decode_len() local
120 nbytesdecoded = (((int)nprbytes + 3) / 4) * 3; in apr_base64_decode_len()
122 return nbytesdecoded + 1; in apr_base64_decode_len()
148 int nbytesdecoded; in apr_base64_decode_binary() local
156 nbytesdecoded = (((int)nprbytes + 3) / 4) * 3; in apr_base64_decode_binary()
186 nbytesdecoded -= (4 - (int)nprbytes) & 3; in apr_base64_decode_binary()
187 return nbytesdecoded; in apr_base64_decode_binary()