Lines Matching refs:c2
389 unsigned int tmp, c1, c2, c3, c4;
393 BF_safe_atoi64(c2, *sptr++);
394 *dptr++ = (c1 << 2) | ((c2 & 0x30) >> 4);
398 *dptr++ = ((c2 & 0x0F) << 4) | ((c3 & 0x3C) >> 2);
413 unsigned int c1, c2;
424 c2 = *sptr++;
425 c1 |= c2 >> 4;
427 c1 = (c2 & 0x0f) << 2;
433 c2 = *sptr++;
434 c1 |= c2 >> 6;
436 *dptr++ = BF_itoa64[c2 & 0x3f];