Lines Matching defs:nprbytes
98 size_t nprbytes;
121 nprbytes = (bufin - (const unsigned char *) bufcoded) - 1;
122 nbytesdecoded = ((nprbytes + 3) / 4) * 3;
123 if ((nbytesdecoded - ((4 - nprbytes) & 3)) > max_decoded_len)
129 while (nprbytes > 4) {
137 nprbytes -= 4;
140 /* Note: (nprbytes == 1) would be an error, so just ignore that case */
141 if (nprbytes > 1) {
144 if (nprbytes > 2) {
147 if (nprbytes > 3) {
152 *len = nbytesdecoded - ((4 - nprbytes) & 3);