Symbol: DES_LONG
crypto/openssl/crypto/des/cbc_cksm.c
18
DES_LONG DES_cbc_cksum(const unsigned char *in, DES_cblock *output,
crypto/openssl/crypto/des/cbc_cksm.c
22
register DES_LONG tout0, tout1, tin0, tin1;
crypto/openssl/crypto/des/cbc_cksm.c
24
DES_LONG tin[2];
crypto/openssl/crypto/des/cbc_cksm.c
41
DES_encrypt1((DES_LONG *)tin, schedule, DES_ENCRYPT);
crypto/openssl/crypto/des/cfb64ede.c
29
register DES_LONG v0, v1;
crypto/openssl/crypto/des/cfb64ede.c
32
DES_LONG ti[2];
crypto/openssl/crypto/des/cfb64ede.c
96
register DES_LONG d0, d1, v0, v1;
crypto/openssl/crypto/des/cfb64ede.c
99
DES_LONG ti[2];
crypto/openssl/crypto/des/cfb64enc.c
28
register DES_LONG v0, v1;
crypto/openssl/crypto/des/cfb64enc.c
31
DES_LONG ti[2];
crypto/openssl/crypto/des/cfb_enc.c
107
DES_encrypt1((DES_LONG *)ti, schedule, DES_ENCRYPT);
crypto/openssl/crypto/des/cfb_enc.c
34
register DES_LONG d0, d1, v0, v1;
crypto/openssl/crypto/des/cfb_enc.c
37
DES_LONG ti[2];
crypto/openssl/crypto/des/cfb_enc.c
61
DES_encrypt1((DES_LONG *)ti, schedule, DES_ENCRYPT);
crypto/openssl/crypto/des/des_enc.c
155
void DES_encrypt3(DES_LONG *data, DES_key_schedule *ks1,
crypto/openssl/crypto/des/des_enc.c
158
register DES_LONG l, r;
crypto/openssl/crypto/des/des_enc.c
165
DES_encrypt2((DES_LONG *)data, ks1, DES_ENCRYPT);
crypto/openssl/crypto/des/des_enc.c
166
DES_encrypt2((DES_LONG *)data, ks2, DES_DECRYPT);
crypto/openssl/crypto/des/des_enc.c
167
DES_encrypt2((DES_LONG *)data, ks3, DES_ENCRYPT);
crypto/openssl/crypto/des/des_enc.c
175
void DES_decrypt3(DES_LONG *data, DES_key_schedule *ks1,
crypto/openssl/crypto/des/des_enc.c
178
register DES_LONG l, r;
crypto/openssl/crypto/des/des_enc.c
185
DES_encrypt2((DES_LONG *)data, ks3, DES_DECRYPT);
crypto/openssl/crypto/des/des_enc.c
186
DES_encrypt2((DES_LONG *)data, ks2, DES_ENCRYPT);
crypto/openssl/crypto/des/des_enc.c
187
DES_encrypt2((DES_LONG *)data, ks1, DES_DECRYPT);
crypto/openssl/crypto/des/des_enc.c
20
void DES_encrypt1(DES_LONG *data, DES_key_schedule *ks, int enc)
crypto/openssl/crypto/des/des_enc.c
207
register DES_LONG tin0, tin1;
crypto/openssl/crypto/des/des_enc.c
208
register DES_LONG tout0, tout1, xor0, xor1;
crypto/openssl/crypto/des/des_enc.c
212
DES_LONG tin[2];
crypto/openssl/crypto/des/des_enc.c
22
register DES_LONG l, r, t, u;
crypto/openssl/crypto/des/des_enc.c
23
register DES_LONG *s;
crypto/openssl/crypto/des/des_enc.c
230
DES_encrypt3((DES_LONG *)tin, ks1, ks2, ks3);
crypto/openssl/crypto/des/des_enc.c
244
DES_encrypt3((DES_LONG *)tin, ks1, ks2, ks3);
crypto/openssl/crypto/des/des_enc.c
255
register DES_LONG t0, t1;
crypto/openssl/crypto/des/des_enc.c
268
DES_decrypt3((DES_LONG *)tin, ks1, ks2, ks3);
crypto/openssl/crypto/des/des_enc.c
288
DES_decrypt3((DES_LONG *)tin, ks1, ks2, ks3);
crypto/openssl/crypto/des/des_enc.c
91
void DES_encrypt2(DES_LONG *data, DES_key_schedule *ks, int enc)
crypto/openssl/crypto/des/des_enc.c
93
register DES_LONG l, r, t, u;
crypto/openssl/crypto/des/des_enc.c
94
register DES_LONG *s;
crypto/openssl/crypto/des/des_local.h
144
DES_LONG tmp; \
crypto/openssl/crypto/des/des_local.h
222
register DES_LONG tt; \
crypto/openssl/crypto/des/des_local.h
232
register DES_LONG tt; \
crypto/openssl/crypto/des/des_local.h
240
extern const DES_LONG DES_SPtrans[8][64];
crypto/openssl/crypto/des/des_local.h
242
void fcrypt_body(DES_LONG *out, DES_key_schedule *ks,
crypto/openssl/crypto/des/des_local.h
243
DES_LONG Eswap0, DES_LONG Eswap1);
crypto/openssl/crypto/des/des_local.h
29
#define c2l(c, l) (l = ((DES_LONG)(*((c)++))), \
crypto/openssl/crypto/des/des_local.h
30
l |= ((DES_LONG)(*((c)++))) << 8L, \
crypto/openssl/crypto/des/des_local.h
31
l |= ((DES_LONG)(*((c)++))) << 16L, \
crypto/openssl/crypto/des/des_local.h
32
l |= ((DES_LONG)(*((c)++))) << 24L)
crypto/openssl/crypto/des/des_local.h
41
l2 = ((DES_LONG)(*(--(c)))) << 24L; \
crypto/openssl/crypto/des/des_local.h
44
l2 |= ((DES_LONG)(*(--(c)))) << 16L; \
crypto/openssl/crypto/des/des_local.h
47
l2 |= ((DES_LONG)(*(--(c)))) << 8L; \
crypto/openssl/crypto/des/des_local.h
50
l2 |= ((DES_LONG)(*(--(c)))); \
crypto/openssl/crypto/des/des_local.h
53
l1 = ((DES_LONG)(*(--(c)))) << 24L; \
crypto/openssl/crypto/des/des_local.h
56
l1 |= ((DES_LONG)(*(--(c)))) << 16L; \
crypto/openssl/crypto/des/des_local.h
59
l1 |= ((DES_LONG)(*(--(c)))) << 8L; \
crypto/openssl/crypto/des/des_local.h
62
l1 |= ((DES_LONG)(*(--(c)))); \
crypto/openssl/crypto/des/ecb3_enc.c
22
register DES_LONG l0, l1;
crypto/openssl/crypto/des/ecb3_enc.c
23
DES_LONG ll[2];
crypto/openssl/crypto/des/ecb_enc.c
26
if (sizeof(DES_LONG) != sizeof(long))
crypto/openssl/crypto/des/ecb_enc.c
38
register DES_LONG l;
crypto/openssl/crypto/des/ecb_enc.c
39
DES_LONG ll[2];
crypto/openssl/crypto/des/fcrypt.c
212
DES_LONG Eswap0, Eswap1;
crypto/openssl/crypto/des/fcrypt.c
213
DES_LONG out[2], ll;
crypto/openssl/crypto/des/fcrypt_b.c
31
void fcrypt_body(DES_LONG *out, DES_key_schedule *ks, DES_LONG Eswap0,
crypto/openssl/crypto/des/fcrypt_b.c
32
DES_LONG Eswap1)
crypto/openssl/crypto/des/fcrypt_b.c
34
register DES_LONG l, r, t, u;
crypto/openssl/crypto/des/fcrypt_b.c
35
register DES_LONG *s;
crypto/openssl/crypto/des/fcrypt_b.c
37
register DES_LONG E0, E1;
crypto/openssl/crypto/des/fcrypt_b.c
42
s = (DES_LONG *)ks;
crypto/openssl/crypto/des/ncbc_enc.c
27
register DES_LONG tin0, tin1;
crypto/openssl/crypto/des/ncbc_enc.c
28
register DES_LONG tout0, tout1, xor0, xor1;
crypto/openssl/crypto/des/ncbc_enc.c
30
DES_LONG tin[2];
crypto/openssl/crypto/des/ncbc_enc.c
45
DES_encrypt1((DES_LONG *)tin, _schedule, DES_ENCRYPT);
crypto/openssl/crypto/des/ncbc_enc.c
57
DES_encrypt1((DES_LONG *)tin, _schedule, DES_ENCRYPT);
crypto/openssl/crypto/des/ncbc_enc.c
76
DES_encrypt1((DES_LONG *)tin, _schedule, DES_DECRYPT);
crypto/openssl/crypto/des/ncbc_enc.c
89
DES_encrypt1((DES_LONG *)tin, _schedule, DES_DECRYPT);
crypto/openssl/crypto/des/ofb64ede.c
28
register DES_LONG v0, v1;
crypto/openssl/crypto/des/ofb64ede.c
33
DES_LONG ti[2];
crypto/openssl/crypto/des/ofb64enc.c
27
register DES_LONG v0, v1, t;
crypto/openssl/crypto/des/ofb64enc.c
32
DES_LONG ti[2];
crypto/openssl/crypto/des/ofb_enc.c
28
register DES_LONG d0, d1, vv0, vv1, v0, v1, n = (numbits + 7) / 8;
crypto/openssl/crypto/des/ofb_enc.c
29
register DES_LONG mask0, mask1;
crypto/openssl/crypto/des/ofb_enc.c
32
DES_LONG ti[2];
crypto/openssl/crypto/des/ofb_enc.c
59
DES_encrypt1((DES_LONG *)ti, schedule, DES_ENCRYPT);
crypto/openssl/crypto/des/pcbc_enc.c
22
register DES_LONG sin0, sin1, xor0, xor1, tout0, tout1;
crypto/openssl/crypto/des/pcbc_enc.c
23
DES_LONG tin[2];
crypto/openssl/crypto/des/pcbc_enc.c
42
DES_encrypt1((DES_LONG *)tin, schedule, DES_ENCRYPT);
crypto/openssl/crypto/des/pcbc_enc.c
58
DES_encrypt1((DES_LONG *)tin, schedule, DES_DECRYPT);
crypto/openssl/crypto/des/qud_cksm.c
25
#define Q_B0(a) (((DES_LONG)(a)))
crypto/openssl/crypto/des/qud_cksm.c
26
#define Q_B1(a) (((DES_LONG)(a)) << 8)
crypto/openssl/crypto/des/qud_cksm.c
27
#define Q_B2(a) (((DES_LONG)(a)) << 16)
crypto/openssl/crypto/des/qud_cksm.c
28
#define Q_B3(a) (((DES_LONG)(a)) << 24)
crypto/openssl/crypto/des/qud_cksm.c
32
#define NOISE ((DES_LONG)83653421L)
crypto/openssl/crypto/des/qud_cksm.c
34
DES_LONG DES_quad_cksum(const unsigned char *input, DES_cblock output[],
crypto/openssl/crypto/des/qud_cksm.c
37
DES_LONG z0, z1, t0, t1;
crypto/openssl/crypto/des/qud_cksm.c
41
DES_LONG *lp;
crypto/openssl/crypto/des/qud_cksm.c
45
lp = (DES_LONG *)&(output[0])[0];
crypto/openssl/crypto/des/qud_cksm.c
55
t0 = (DES_LONG)(*(cp++));
crypto/openssl/crypto/des/qud_cksm.c
56
t0 |= (DES_LONG)Q_B1(*(cp++));
crypto/openssl/crypto/des/qud_cksm.c
59
t0 = (DES_LONG)(*(cp++));
crypto/openssl/crypto/des/set_key.c
142
static const DES_LONG des_skb[8][64] = {
crypto/openssl/crypto/des/set_key.c
714
register DES_LONG c, d, t, s, t2;
crypto/openssl/crypto/des/set_key.c
716
register DES_LONG *k;
crypto/openssl/crypto/des/spr.h
10
const DES_LONG DES_SPtrans[8][64] = {
crypto/openssl/crypto/des/xcbc_enc.c
25
register DES_LONG tin0, tin1;
crypto/openssl/crypto/des/xcbc_enc.c
26
register DES_LONG tout0, tout1, xor0, xor1;
crypto/openssl/crypto/des/xcbc_enc.c
27
register DES_LONG inW0, inW1, outW0, outW1;
crypto/openssl/crypto/des/xcbc_enc.c
30
DES_LONG tin[2];
crypto/openssl/crypto/mdc2/mdc2dgst.c
24
#define c2l(c, l) (l = ((DES_LONG)(*((c)++))), \
crypto/openssl/crypto/mdc2/mdc2dgst.c
25
l |= ((DES_LONG)(*((c)++))) << 8L, \
crypto/openssl/crypto/mdc2/mdc2dgst.c
26
l |= ((DES_LONG)(*((c)++))) << 16L, \
crypto/openssl/crypto/mdc2/mdc2dgst.c
27
l |= ((DES_LONG)(*((c)++))) << 24L)
crypto/openssl/crypto/mdc2/mdc2dgst.c
79
register DES_LONG tin0, tin1;
crypto/openssl/crypto/mdc2/mdc2dgst.c
80
register DES_LONG ttin0, ttin1;
crypto/openssl/crypto/mdc2/mdc2dgst.c
81
DES_LONG d[2], dd[2];
crypto/openssl/include/openssl/des.h
121
void DES_encrypt1(DES_LONG *data, DES_key_schedule *ks, int enc);
crypto/openssl/include/openssl/des.h
134
void DES_encrypt2(DES_LONG *data, DES_key_schedule *ks, int enc);
crypto/openssl/include/openssl/des.h
136
void DES_encrypt3(DES_LONG *data, DES_key_schedule *ks1, DES_key_schedule *ks2,
crypto/openssl/include/openssl/des.h
139
void DES_decrypt3(DES_LONG *data, DES_key_schedule *ks1, DES_key_schedule *ks2,
crypto/openssl/include/openssl/des.h
173
DES_LONG DES_quad_cksum(const unsigned char *input, DES_cblock output[],
crypto/openssl/include/openssl/des.h
48
DES_LONG deslong[2];
crypto/openssl/include/openssl/des.h
82
DES_LONG DES_cbc_cksum(const unsigned char *input, DES_cblock *output,
crypto/openssl/test/destest.c
389
static DES_LONG cbc_cksum_ret = 0xF7FE62B4L;
crypto/openssl/test/destest.c
771
DES_LONG cs;
crypto/openssl/test/destest.c
785
DES_LONG cs, lqret[4];
sys/crypto/des/des.h
67
DES_LONG deslong[2];
sys/crypto/des/des.h
86
void des_encrypt1(DES_LONG *, des_key_schedule, int);
sys/crypto/des/des.h
87
void des_encrypt2(DES_LONG *, des_key_schedule, int);
sys/crypto/des/des.h
88
void des_encrypt3(DES_LONG *, des_key_schedule, des_key_schedule,
sys/crypto/des/des.h
90
void des_decrypt3(DES_LONG *, des_key_schedule, des_key_schedule,
sys/crypto/des/des_ecb.c
100
register DES_LONG l;
sys/crypto/des/des_ecb.c
101
DES_LONG ll[2];
sys/crypto/des/des_ecb.c
117
register DES_LONG l0,l1;
sys/crypto/des/des_ecb.c
118
DES_LONG ll[2];
sys/crypto/des/des_ecb.c
88
if (sizeof(DES_LONG) != sizeof(long))
sys/crypto/des/des_enc.c
165
void des_encrypt2(DES_LONG *data, des_key_schedule ks, int enc)
sys/crypto/des/des_enc.c
167
DES_LONG l,r,t,u;
sys/crypto/des/des_enc.c
174
DES_LONG *s;
sys/crypto/des/des_enc.c
256
void des_encrypt3(DES_LONG *data, des_key_schedule ks1, des_key_schedule ks2,
sys/crypto/des/des_enc.c
259
DES_LONG l,r;
sys/crypto/des/des_enc.c
266
des_encrypt2((DES_LONG *)data,ks1,DES_ENCRYPT);
sys/crypto/des/des_enc.c
267
des_encrypt2((DES_LONG *)data,ks2,DES_DECRYPT);
sys/crypto/des/des_enc.c
268
des_encrypt2((DES_LONG *)data,ks3,DES_ENCRYPT);
sys/crypto/des/des_enc.c
276
void des_decrypt3(DES_LONG *data, des_key_schedule ks1, des_key_schedule ks2,
sys/crypto/des/des_enc.c
279
DES_LONG l,r;
sys/crypto/des/des_enc.c
286
des_encrypt2((DES_LONG *)data,ks3,DES_DECRYPT);
sys/crypto/des/des_enc.c
287
des_encrypt2((DES_LONG *)data,ks2,DES_ENCRYPT);
sys/crypto/des/des_enc.c
288
des_encrypt2((DES_LONG *)data,ks1,DES_DECRYPT);
sys/crypto/des/des_enc.c
65
extern const DES_LONG des_SPtrans[8][64];
sys/crypto/des/des_enc.c
67
void des_encrypt1(DES_LONG *data, des_key_schedule ks, int enc)
sys/crypto/des/des_enc.c
69
DES_LONG l,r,t,u;
sys/crypto/des/des_enc.c
76
DES_LONG *s;
sys/crypto/des/des_locl.h
100
l|=((DES_LONG)(*((c)++)))<< 8L, \
sys/crypto/des/des_locl.h
101
l|=((DES_LONG)(*((c)++))))
sys/crypto/des/des_locl.h
152
LL^= *(const DES_LONG *)(des_SP +u1); \
sys/crypto/des/des_locl.h
153
LL^= *(const DES_LONG *)(des_SP+0x200+u2); \
sys/crypto/des/des_locl.h
157
LL^= *(const DES_LONG *)(des_SP+0x400+u1); \
sys/crypto/des/des_locl.h
158
LL^= *(const DES_LONG *)(des_SP+0x600+u3); \
sys/crypto/des/des_locl.h
163
LL^= *(const DES_LONG *)(des_SP+0x100+u1); \
sys/crypto/des/des_locl.h
164
LL^= *(const DES_LONG *)(des_SP+0x300+u2); \
sys/crypto/des/des_locl.h
168
LL^= *(const DES_LONG *)(des_SP+0x500+u1); \
sys/crypto/des/des_locl.h
169
LL^= *(const DES_LONG *)(des_SP+0x700+u3); }
sys/crypto/des/des_locl.h
179
LL^= *(const DES_LONG *)(des_SP +u1); \
sys/crypto/des/des_locl.h
180
LL^= *(const DES_LONG *)(des_SP+0x200+u2); \
sys/crypto/des/des_locl.h
185
LL^= *(const DES_LONG *)(des_SP+0x400+s1); \
sys/crypto/des/des_locl.h
186
LL^= *(const DES_LONG *)(des_SP+0x600+s2); \
sys/crypto/des/des_locl.h
190
LL^= *(const DES_LONG *)(des_SP+0x100+u1); \
sys/crypto/des/des_locl.h
191
LL^= *(const DES_LONG *)(des_SP+0x300+u2); \
sys/crypto/des/des_locl.h
196
LL^= *(const DES_LONG *)(des_SP+0x400+s1); \
sys/crypto/des/des_locl.h
197
LL^= *(const DES_LONG *)(des_SP+0x600+s2); \
sys/crypto/des/des_locl.h
201
LL^= *(const DES_LONG *)(des_SP+0x100+u1); \
sys/crypto/des/des_locl.h
202
LL^= *(const DES_LONG *)(des_SP+0x300+u2); \
sys/crypto/des/des_locl.h
207
LL^= *(const DES_LONG *)(des_SP+0x500+s1); \
sys/crypto/des/des_locl.h
208
LL^= *(const DES_LONG *)(des_SP+0x700+s2); }
sys/crypto/des/des_locl.h
215
*(const DES_LONG *)(des_SP +((u )&0xfc))^ \
sys/crypto/des/des_locl.h
216
*(const DES_LONG *)(des_SP+0x200+((u>> 8L)&0xfc))^ \
sys/crypto/des/des_locl.h
217
*(const DES_LONG *)(des_SP+0x400+((u>>16L)&0xfc))^ \
sys/crypto/des/des_locl.h
218
*(const DES_LONG *)(des_SP+0x600+((u>>24L)&0xfc))^ \
sys/crypto/des/des_locl.h
219
*(const DES_LONG *)(des_SP+0x100+((t )&0xfc))^ \
sys/crypto/des/des_locl.h
220
*(const DES_LONG *)(des_SP+0x300+((t>> 8L)&0xfc))^ \
sys/crypto/des/des_locl.h
221
*(const DES_LONG *)(des_SP+0x500+((t>>16L)&0xfc))^ \
sys/crypto/des/des_locl.h
222
*(const DES_LONG *)(des_SP+0x700+((t>>24L)&0xfc)); }
sys/crypto/des/des_locl.h
346
register DES_LONG tt; \
sys/crypto/des/des_locl.h
356
register DES_LONG tt; \
sys/crypto/des/des_locl.h
68
#define c2l(c,l) (l =((DES_LONG)(*((c)++))) , \
sys/crypto/des/des_locl.h
69
l|=((DES_LONG)(*((c)++)))<< 8L, \
sys/crypto/des/des_locl.h
70
l|=((DES_LONG)(*((c)++)))<<16L, \
sys/crypto/des/des_locl.h
71
l|=((DES_LONG)(*((c)++)))<<24L)
sys/crypto/des/des_locl.h
78
case 8: l2 =((DES_LONG)(*(--(c))))<<24L; \
sys/crypto/des/des_locl.h
79
case 7: l2|=((DES_LONG)(*(--(c))))<<16L; \
sys/crypto/des/des_locl.h
80
case 6: l2|=((DES_LONG)(*(--(c))))<< 8L; \
sys/crypto/des/des_locl.h
81
case 5: l2|=((DES_LONG)(*(--(c)))); \
sys/crypto/des/des_locl.h
82
case 4: l1 =((DES_LONG)(*(--(c))))<<24L; \
sys/crypto/des/des_locl.h
83
case 3: l1|=((DES_LONG)(*(--(c))))<<16L; \
sys/crypto/des/des_locl.h
84
case 2: l1|=((DES_LONG)(*(--(c))))<< 8L; \
sys/crypto/des/des_locl.h
85
case 1: l1|=((DES_LONG)(*(--(c)))); \
sys/crypto/des/des_locl.h
98
#define n2l(c,l) (l =((DES_LONG)(*((c)++)))<<24L, \
sys/crypto/des/des_locl.h
99
l|=((DES_LONG)(*((c)++)))<<16L, \
sys/crypto/des/des_setkey.c
172
DES_LONG c,d,t,s,t2;
sys/crypto/des/des_setkey.c
174
DES_LONG *k;
sys/crypto/des/sk.h
50
static const DES_LONG des_skb[8][64]={
sys/crypto/des/spr.h
61
const DES_LONG des_SPtrans[8][64]={