Home | History | Annotate | Download | only in lib

Lines Matching refs:obuf

178   unsigned char obuf[4];
223 obuf[0] = (unsigned char) ((ibuf[0] & 0xFC) >> 2);
224 obuf[1] = (unsigned char) (((ibuf[0] & 0x03) << 4) | \
226 obuf[2] = (unsigned char) (((ibuf[1] & 0x0F) << 2) | \
228 obuf[3] = (unsigned char) (ibuf[2] & 0x3F);
233 table64[obuf[0]],
234 table64[obuf[1]]);
239 table64[obuf[0]],
240 table64[obuf[1]],
241 table64[obuf[2]]);
246 table64[obuf[0]],
247 table64[obuf[1]],
248 table64[obuf[2]],
249 table64[obuf[3]]);