lib/libcrypt/crypt.c
747
int32_t L0, L1, R0, R1, k;
lib/libcrypt/crypt.c
752
L0 = salt;
lib/libcrypt/crypt.c
753
TO_SIX_BIT(salt, L0); /* convert to 4*(6+2) format */
lib/libcrypt/crypt.c
765
LOAD(L,L0,L1,B);
lib/libcrypt/crypt.c
767
LOAD(L,L0,L1,*(const C_block *)in);
lib/libcrypt/crypt.c
769
LOADREG(R,R0,R1,L,L0,L1);
lib/libcrypt/crypt.c
770
L0 &= 0x55555555L;
lib/libcrypt/crypt.c
772
L0 = ((uint32_t)L0 << 1) | L1; /* L0 is the even-numbered input bits */
lib/libcrypt/crypt.c
776
STORE(L,L0,L1,B);
lib/libcrypt/crypt.c
777
PERM3264(L,L0,L1,B.b, (C_block *)IE3264); /* even bits */
lib/libcrypt/crypt.c
826
CRUNCH(L0, L1, R0, R1);
lib/libcrypt/crypt.c
827
CRUNCH(R0, R1, L0, L1);
lib/libcrypt/crypt.c
833
L0 ^= R0; L1 ^= R1;
lib/libcrypt/crypt.c
834
R0 ^= L0; R1 ^= L1;
lib/libcrypt/crypt.c
835
L0 ^= R0; L1 ^= R1;
lib/libcrypt/crypt.c
839
L0 = (((uint32_t)L0 >> 3) & 0x0f0f0f0fL) | (((uint32_t)L1 << 1) & 0xf0f0f0f0L);
lib/libcrypt/crypt.c
841
STORE(L,L0,L1,B);
lib/libcrypt/crypt.c
842
PERM6464(L,L0,L1,B.b, (C_block *)CF6464);
lib/libcrypt/crypt.c
844
STORE(L,L0,L1,B);
lib/libcrypt/crypt.c
848
STORE(L,L0,L1,*(C_block *)out);
libexec/getty/subr.c
218
tmode.c_lflag = L0;