Home | History | Annotate | Download | only in base

Lines Matching defs:qbuf

124                               unsigned char qbuf[4], bool* padded)
128 qbuf[byte_len] = DecodeTable[static_cast<unsigned char>(data[*dpos])];
129 if ((il == qbuf[byte_len]) || (illegal_pads && (pd == qbuf[byte_len]))) {
133 } else if (sp == qbuf[byte_len]) {
137 } else if (pd == qbuf[byte_len]) {
162 qbuf[i] = 0;
207 unsigned char c, qbuf[4];
210 data, len, &dpos, qbuf, &padded);
211 c = (qbuf[0] << 2) | ((qbuf[1] >> 4) & 0x3);
214 c = ((qbuf[1] << 4) & 0xf0) | ((qbuf[2] >> 2) & 0xf);
217 c = ((qbuf[2] << 6) & 0xc0) | qbuf[3];