Searched defs:c4 (Results 1 - 4 of 4) sorted by relevance

/osnet-11/usr/src/lib/crypt_modules/bsdbf/
H A Dbcrypt.c114 uint8_t c1, c2, c3, c4; local
135 c4 = CHAR64(*(p + 3));
136 if (c4 == 255)
138 *bp++ = ((c3 & 0x03) << 6) | c4;
/osnet-11/usr/src/cmd/sendmail/aux/
H A Drfc2047.c227 int c1, c2, c3, c4; local
260 ((c4 = char64(*pp)) == -1)) {
264 c4 != -1) {
265 *q++ = ((c3 & 0x3) << 6) | (c4);
/osnet-11/usr/src/cmd/sendmail/src/
H A Dmime.c1101 int c1, c2, c3, c4; local
1126 c4 = sm_io_getc(e->e_dfp, SM_TIME_DEFAULT);
1127 } while (isascii(c4) && isspace(c4));
1128 if (c4 == SM_IO_EOF)
1167 if (c4 == '=')
1169 c4 = CHAR64(c4);
1170 *fbufp = ((c3 & 0x03) << 6) | c4;
/osnet-11/usr/src/lib/libsasl/lib/
H A Dsaslutil.c193 int c1, c2, c3, c4; local
214 c4 = in[3];
215 if (c4 != '=' && CHAR64(c4) == -1) return SASL_BADPROT;
222 if (c4 != '=') {
223 *out++ = ((CHAR64(c3) << 6) & 0xc0) | CHAR64(c4);

Completed in 19 milliseconds