Lines Matching defs:six
4623 unsigned six;
4628 six = c - 'A';
4630 six = c - 'a' + 26;
4632 six = c - '0' + 52;
4634 six = 62;
4636 six = 63;
4643 screen->base64_accu = six;
4648 ch = CharOf((screen->base64_accu << 6) + six);
4654 ch = CharOf((screen->base64_accu << 4) + (six >> 2));
4655 screen->base64_accu = (six & 0x3);
4661 ch = CharOf((screen->base64_accu << 2) + (six >> 4));
4662 screen->base64_accu = (six & 0xF);