crypto/heimdal/lib/krb5/context.c
40
#define INIT_FIELD(C, T, E, D, F) \
crypto/heimdal/lib/krb5/context.c
41
(C)->E = krb5_config_get_ ## T ## _default ((C), NULL, (D), \
crypto/heimdal/lib/krb5/context.c
44
#define INIT_FLAG(C, O, V, D, F) \
crypto/heimdal/lib/krb5/context.c
46
if (krb5_config_get_bool_default((C), NULL, (D),"libdefaults", F, NULL)) { \
crypto/heimdal/lib/krb5/verify_user.c
177
#define OPT(V, D) ((vopt && (vopt->V)) ? (vopt->V) : (D))
crypto/heimdal/lib/roken/ndbm_wrap.c
140
return dbm_get(D(db), DB_FIRST);
crypto/heimdal/lib/roken/ndbm_wrap.c
146
return dbm_get(D(db), DB_NEXT);
crypto/heimdal/lib/roken/ndbm_wrap.c
204
ret = D(db)->put(D(db),
crypto/heimdal/lib/roken/ndbm_wrap.c
71
D(db)->close(D(db), 0);
crypto/heimdal/lib/roken/ndbm_wrap.c
74
D(db)->close(D(db));
crypto/heimdal/lib/roken/ndbm_wrap.c
84
RETURN(D(db)->del(D(db), NULL, &key, 0));
crypto/heimdal/lib/roken/ndbm_wrap.c
86
RETURN(D(db)->del(D(db), &key, 0));
crypto/heimdal/lib/roken/ndbm_wrap.c
96
if(D(db)->get(D(db),
crypto/krb5/src/lib/crypto/builtin/aes/aes-gen.c
157
D(iv);
crypto/krb5/src/lib/crypto/builtin/aes/aes-gen.c
160
D(in+i);
crypto/krb5/src/lib/crypto/builtin/aes/aes-gen.c
162
D(tmp);
crypto/krb5/src/lib/crypto/builtin/aes/aes-gen.c
166
D(out+i);
crypto/krb5/src/lib/crypto/builtin/aes/aes-gen.c
208
D(in);
crypto/krb5/src/lib/crypto/builtin/aes/aes-gen.c
210
D(pn1);
crypto/krb5/src/lib/crypto/builtin/aes/aes-gen.c
213
D(cn);
crypto/krb5/src/lib/crypto/builtin/aes/aes-gen.c
216
D(pn);
crypto/krb5/src/lib/crypto/builtin/aes/aes-gen.c
218
D(pn);
crypto/krb5/src/lib/crypto/builtin/aes/aes-gen.c
221
D(cn1);
crypto/krb5/src/lib/crypto/builtin/camellia/camellia-gen.c
136
D(iv);
crypto/krb5/src/lib/crypto/builtin/camellia/camellia-gen.c
139
D(in+i);
crypto/krb5/src/lib/crypto/builtin/camellia/camellia-gen.c
141
D(tmp);
crypto/krb5/src/lib/crypto/builtin/camellia/camellia-gen.c
145
D(out+i);
crypto/krb5/src/lib/crypto/builtin/camellia/camellia-gen.c
188
D(in);
crypto/krb5/src/lib/crypto/builtin/camellia/camellia-gen.c
190
D(pn1);
crypto/krb5/src/lib/crypto/builtin/camellia/camellia-gen.c
193
D(cn);
crypto/krb5/src/lib/crypto/builtin/camellia/camellia-gen.c
196
D(pn);
crypto/krb5/src/lib/crypto/builtin/camellia/camellia-gen.c
198
D(pn);
crypto/krb5/src/lib/crypto/builtin/camellia/camellia-gen.c
201
D(cn1);
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
107
SHS_LONG A, B, C, D, E; /* Local vars */
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
114
D = digest[ 3 ];
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
125
subRound(A, B, C, D, E, f1, K1, x);
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
126
temp = E, E = D, D = C, C = B, B = A, A = temp;
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
129
subRound(A, B, C, D, E, f2, K2, expand(eData, i));
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
130
temp = E, E = D, D = C, C = B, B = A, A = temp;
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
133
subRound(A, B, C, D, E, f3, K3, expand(eData, i));
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
134
temp = E, E = D, D = C, C = B, B = A, A = temp;
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
137
subRound(A, B, C, D, E, f4, K4, expand(eData, i));
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
138
temp = E, E = D, D = C, C = B, B = A, A = temp;
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
145
subRound( A, B, C, D, E, f1, K1, eData[ 0 ] );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
146
subRound( E, A, B, C, D, f1, K1, eData[ 1 ] );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
147
subRound( D, E, A, B, C, f1, K1, eData[ 2 ] );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
148
subRound( C, D, E, A, B, f1, K1, eData[ 3 ] );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
149
subRound( B, C, D, E, A, f1, K1, eData[ 4 ] );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
150
subRound( A, B, C, D, E, f1, K1, eData[ 5 ] );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
151
subRound( E, A, B, C, D, f1, K1, eData[ 6 ] );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
152
subRound( D, E, A, B, C, f1, K1, eData[ 7 ] );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
153
subRound( C, D, E, A, B, f1, K1, eData[ 8 ] );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
154
subRound( B, C, D, E, A, f1, K1, eData[ 9 ] );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
155
subRound( A, B, C, D, E, f1, K1, eData[ 10 ] );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
156
subRound( E, A, B, C, D, f1, K1, eData[ 11 ] );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
157
subRound( D, E, A, B, C, f1, K1, eData[ 12 ] );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
158
subRound( C, D, E, A, B, f1, K1, eData[ 13 ] );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
159
subRound( B, C, D, E, A, f1, K1, eData[ 14 ] );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
160
subRound( A, B, C, D, E, f1, K1, eData[ 15 ] );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
161
subRound( E, A, B, C, D, f1, K1, expand( eData, 16 ) );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
162
subRound( D, E, A, B, C, f1, K1, expand( eData, 17 ) );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
163
subRound( C, D, E, A, B, f1, K1, expand( eData, 18 ) );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
164
subRound( B, C, D, E, A, f1, K1, expand( eData, 19 ) );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
166
subRound( A, B, C, D, E, f2, K2, expand( eData, 20 ) );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
167
subRound( E, A, B, C, D, f2, K2, expand( eData, 21 ) );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
168
subRound( D, E, A, B, C, f2, K2, expand( eData, 22 ) );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
169
subRound( C, D, E, A, B, f2, K2, expand( eData, 23 ) );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
170
subRound( B, C, D, E, A, f2, K2, expand( eData, 24 ) );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
171
subRound( A, B, C, D, E, f2, K2, expand( eData, 25 ) );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
172
subRound( E, A, B, C, D, f2, K2, expand( eData, 26 ) );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
173
subRound( D, E, A, B, C, f2, K2, expand( eData, 27 ) );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
174
subRound( C, D, E, A, B, f2, K2, expand( eData, 28 ) );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
175
subRound( B, C, D, E, A, f2, K2, expand( eData, 29 ) );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
176
subRound( A, B, C, D, E, f2, K2, expand( eData, 30 ) );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
177
subRound( E, A, B, C, D, f2, K2, expand( eData, 31 ) );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
178
subRound( D, E, A, B, C, f2, K2, expand( eData, 32 ) );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
179
subRound( C, D, E, A, B, f2, K2, expand( eData, 33 ) );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
180
subRound( B, C, D, E, A, f2, K2, expand( eData, 34 ) );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
181
subRound( A, B, C, D, E, f2, K2, expand( eData, 35 ) );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
182
subRound( E, A, B, C, D, f2, K2, expand( eData, 36 ) );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
183
subRound( D, E, A, B, C, f2, K2, expand( eData, 37 ) );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
184
subRound( C, D, E, A, B, f2, K2, expand( eData, 38 ) );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
185
subRound( B, C, D, E, A, f2, K2, expand( eData, 39 ) );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
187
subRound( A, B, C, D, E, f3, K3, expand( eData, 40 ) );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
188
subRound( E, A, B, C, D, f3, K3, expand( eData, 41 ) );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
189
subRound( D, E, A, B, C, f3, K3, expand( eData, 42 ) );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
190
subRound( C, D, E, A, B, f3, K3, expand( eData, 43 ) );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
191
subRound( B, C, D, E, A, f3, K3, expand( eData, 44 ) );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
192
subRound( A, B, C, D, E, f3, K3, expand( eData, 45 ) );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
193
subRound( E, A, B, C, D, f3, K3, expand( eData, 46 ) );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
194
subRound( D, E, A, B, C, f3, K3, expand( eData, 47 ) );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
195
subRound( C, D, E, A, B, f3, K3, expand( eData, 48 ) );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
196
subRound( B, C, D, E, A, f3, K3, expand( eData, 49 ) );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
197
subRound( A, B, C, D, E, f3, K3, expand( eData, 50 ) );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
198
subRound( E, A, B, C, D, f3, K3, expand( eData, 51 ) );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
199
subRound( D, E, A, B, C, f3, K3, expand( eData, 52 ) );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
200
subRound( C, D, E, A, B, f3, K3, expand( eData, 53 ) );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
201
subRound( B, C, D, E, A, f3, K3, expand( eData, 54 ) );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
202
subRound( A, B, C, D, E, f3, K3, expand( eData, 55 ) );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
203
subRound( E, A, B, C, D, f3, K3, expand( eData, 56 ) );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
204
subRound( D, E, A, B, C, f3, K3, expand( eData, 57 ) );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
205
subRound( C, D, E, A, B, f3, K3, expand( eData, 58 ) );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
206
subRound( B, C, D, E, A, f3, K3, expand( eData, 59 ) );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
208
subRound( A, B, C, D, E, f4, K4, expand( eData, 60 ) );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
209
subRound( E, A, B, C, D, f4, K4, expand( eData, 61 ) );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
210
subRound( D, E, A, B, C, f4, K4, expand( eData, 62 ) );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
211
subRound( C, D, E, A, B, f4, K4, expand( eData, 63 ) );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
212
subRound( B, C, D, E, A, f4, K4, expand( eData, 64 ) );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
213
subRound( A, B, C, D, E, f4, K4, expand( eData, 65 ) );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
214
subRound( E, A, B, C, D, f4, K4, expand( eData, 66 ) );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
215
subRound( D, E, A, B, C, f4, K4, expand( eData, 67 ) );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
216
subRound( C, D, E, A, B, f4, K4, expand( eData, 68 ) );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
217
subRound( B, C, D, E, A, f4, K4, expand( eData, 69 ) );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
218
subRound( A, B, C, D, E, f4, K4, expand( eData, 70 ) );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
219
subRound( E, A, B, C, D, f4, K4, expand( eData, 71 ) );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
220
subRound( D, E, A, B, C, f4, K4, expand( eData, 72 ) );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
221
subRound( C, D, E, A, B, f4, K4, expand( eData, 73 ) );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
222
subRound( B, C, D, E, A, f4, K4, expand( eData, 74 ) );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
223
subRound( A, B, C, D, E, f4, K4, expand( eData, 75 ) );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
224
subRound( E, A, B, C, D, f4, K4, expand( eData, 76 ) );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
225
subRound( D, E, A, B, C, f4, K4, expand( eData, 77 ) );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
226
subRound( C, D, E, A, B, f4, K4, expand( eData, 78 ) );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
227
subRound( B, C, D, E, A, f4, K4, expand( eData, 79 ) );
crypto/krb5/src/lib/crypto/builtin/sha1/shs.c
238
digest[ 3 ] += D;
crypto/krb5/src/lib/crypto/builtin/sha2/sha256.c
114
D = 0xa54ff53a;
crypto/krb5/src/lib/crypto/builtin/sha2/sha256.c
131
DD = D;
crypto/krb5/src/lib/crypto/builtin/sha2/sha256.c
162
D += DD;
crypto/krb5/src/lib/crypto/builtin/sha2/sha512.c
122
D = 0xa54ff53a5f1d36f1ULL;
crypto/krb5/src/lib/crypto/builtin/sha2/sha512.c
139
DD = D;
crypto/krb5/src/lib/crypto/builtin/sha2/sha512.c
170
D += DD;
crypto/krb5/src/lib/crypto/builtin/sha2/sha512.c
287
D = 0x152fecd8f70e5939ULL;
crypto/krb5/src/lib/crypto/crypto_tests/vectors.c
330
key.length = KEYLENGTH, key.contents = D.keydata;
crypto/krb5/src/lib/crypto/crypto_tests/vectors.c
331
usage.length = D.usage_len, usage.data = D.usage;
crypto/krb5/src/lib/krb5/krb/deltat.c
141
#define DO(D,H,M,S) \
crypto/krb5/src/lib/krb5/krb/deltat.c
144
if (DAY_NOT_OK(D) || HOUR_NOT_OK(H) || MIN_NOT_OK(M)) YYERROR; \
crypto/krb5/src/lib/krb5/krb/deltat.c
145
OUT_D = D * DAY; \
crypto/krb5/src/lib/krb5/krb/x-deltat.y
108
#define DO(D,H,M,S) \
crypto/krb5/src/lib/krb5/krb/x-deltat.y
111
if (DAY_NOT_OK(D) || HOUR_NOT_OK(H) || MIN_NOT_OK(M)) YYERROR; \
crypto/krb5/src/lib/krb5/krb/x-deltat.y
112
OUT_D = D * DAY; \
crypto/krb5/src/plugins/kdb/db2/libdb2/hash/page.h
120
#define PAIRSIZE(K, D) (PAIR_OVERHEAD + (K)->size + (D)->size)
crypto/krb5/src/plugins/kdb/db2/libdb2/hash/page.h
159
#define PAIRFITS(P,K,D) ((PAIRSIZE((K),(D))) <= FREESPACE((P)))
crypto/libecc/src/examples/basic/curve_basic_examples.c
118
prj_pt A, B, C, D;
crypto/libecc/src/examples/basic/curve_basic_examples.c
130
A.magic = B.magic = C.magic = D.magic = WORD(0);
crypto/libecc/src/examples/basic/curve_basic_examples.c
211
ret = prj_pt_dbl(&D, &A); EG(ret, err);
crypto/libecc/src/examples/basic/curve_basic_examples.c
262
ret = prj_pt_mul(&TMP, &(curve_params.ec_gen_order), &D); EG(ret, err);
crypto/libecc/src/examples/basic/curve_basic_examples.c
270
ret = prj_pt_mul_blind(&TMP, &(curve_params.ec_gen_order), &D); EG(ret, err);
crypto/libecc/src/examples/basic/curve_basic_examples.c
363
prj_pt_uninit(&D);
crypto/libecc/src/examples/hash/md4.c
32
u32 A, B, C, D;
crypto/libecc/src/examples/hash/md4.c
45
D = ctx->md4_state[3];
crypto/libecc/src/examples/hash/md4.c
54
A = ROTL_MD4((A + F_MD4(B, C, D) + W[idx] + C1_MD4[12]), C1_MD4[8]);
crypto/libecc/src/examples/hash/md4.c
56
D = ROTL_MD4((D + F_MD4(A, B, C) + W[idx] + C1_MD4[12]), C1_MD4[9]);
crypto/libecc/src/examples/hash/md4.c
58
C = ROTL_MD4((C + F_MD4(D, A, B) + W[idx] + C1_MD4[12]), C1_MD4[10]);
crypto/libecc/src/examples/hash/md4.c
60
B = ROTL_MD4((B + F_MD4(C, D, A) + W[idx] + C1_MD4[12]), C1_MD4[11]);
crypto/libecc/src/examples/hash/md4.c
64
A = ROTL_MD4((A + G_MD4(B, C, D) + W[idx] + C2_MD4[12]), C2_MD4[8]);
crypto/libecc/src/examples/hash/md4.c
66
D = ROTL_MD4((D + G_MD4(A, B, C) + W[idx] + C2_MD4[12]), C2_MD4[9]);
crypto/libecc/src/examples/hash/md4.c
68
C = ROTL_MD4((C + G_MD4(D, A, B) + W[idx] + C2_MD4[12]), C2_MD4[10]);
crypto/libecc/src/examples/hash/md4.c
70
B = ROTL_MD4((B + G_MD4(C, D, A) + W[idx] + C2_MD4[12]), C2_MD4[11]);
crypto/libecc/src/examples/hash/md4.c
74
A = ROTL_MD4((A + H_MD4(B, C, D) + W[idx] + C3_MD4[12]), C3_MD4[8]);
crypto/libecc/src/examples/hash/md4.c
76
D = ROTL_MD4((D + H_MD4(A, B, C) + W[idx] + C3_MD4[12]), C3_MD4[9]);
crypto/libecc/src/examples/hash/md4.c
78
C = ROTL_MD4((C + H_MD4(D, A, B) + W[idx] + C3_MD4[12]), C3_MD4[10]);
crypto/libecc/src/examples/hash/md4.c
80
B = ROTL_MD4((B + H_MD4(C, D, A) + W[idx] + C3_MD4[12]), C3_MD4[11]);
crypto/libecc/src/examples/hash/md4.c
87
ctx->md4_state[3] += D;
crypto/libecc/src/examples/hash/md5.c
41
u32 A, B, C, D, tmp;
crypto/libecc/src/examples/hash/md5.c
53
D = ctx->md5_state[3];
crypto/libecc/src/examples/hash/md5.c
62
f = F_MD5(B, C, D);
crypto/libecc/src/examples/hash/md5.c
66
f = G_MD5(B, C, D);
crypto/libecc/src/examples/hash/md5.c
70
f = H_MD5(B, C, D);
crypto/libecc/src/examples/hash/md5.c
74
f = I_MD5(B, C, D);
crypto/libecc/src/examples/hash/md5.c
77
tmp = D;
crypto/libecc/src/examples/hash/md5.c
78
D = C;
crypto/libecc/src/examples/hash/md5.c
88
ctx->md5_state[3] += D;
crypto/libecc/src/examples/hash/sha0.c
43
u32 A, B, C, D, E;
crypto/libecc/src/examples/hash/sha0.c
55
D = ctx->sha0_state[3];
crypto/libecc/src/examples/hash/sha0.c
64
SHA0_SUBROUND(A, B, C, D, E, F1_SHA0, K1_SHA0, W[i]);
crypto/libecc/src/examples/hash/sha0.c
67
SHA0_SUBROUND(A, B, C, D, E, F1_SHA0, K1_SHA0, SHA0_EXPAND(W, i));
crypto/libecc/src/examples/hash/sha0.c
70
SHA0_SUBROUND(A, B, C, D, E, F2_SHA0, K2_SHA0, SHA0_EXPAND(W, i));
crypto/libecc/src/examples/hash/sha0.c
73
SHA0_SUBROUND(A, B, C, D, E, F3_SHA0, K3_SHA0, SHA0_EXPAND(W, i));
crypto/libecc/src/examples/hash/sha0.c
76
SHA0_SUBROUND(A, B, C, D, E, F4_SHA0, K4_SHA0, SHA0_EXPAND(W, i));
crypto/libecc/src/examples/hash/sha0.c
84
ctx->sha0_state[3] += D;
crypto/libecc/src/examples/hash/sha1.c
43
u32 A, B, C, D, E;
crypto/libecc/src/examples/hash/sha1.c
55
D = ctx->sha1_state[3];
crypto/libecc/src/examples/hash/sha1.c
64
SHA1_SUBROUND(A, B, C, D, E, F1_SHA1, K1_SHA1, W[i]);
crypto/libecc/src/examples/hash/sha1.c
67
SHA1_SUBROUND(A, B, C, D, E, F1_SHA1, K1_SHA1, SHA1_EXPAND(W, i));
crypto/libecc/src/examples/hash/sha1.c
70
SHA1_SUBROUND(A, B, C, D, E, F2_SHA1, K2_SHA1, SHA1_EXPAND(W, i));
crypto/libecc/src/examples/hash/sha1.c
73
SHA1_SUBROUND(A, B, C, D, E, F3_SHA1, K3_SHA1, SHA1_EXPAND(W, i));
crypto/libecc/src/examples/hash/sha1.c
76
SHA1_SUBROUND(A, B, C, D, E, F4_SHA1, K4_SHA1, SHA1_EXPAND(W, i));
crypto/libecc/src/examples/hash/sha1.c
84
ctx->sha1_state[3] += D;
crypto/libecc/src/examples/hash/tdes.c
256
u32 C, D, T;
crypto/libecc/src/examples/hash/tdes.c
267
GET_UINT32(D, k, 4);
crypto/libecc/src/examples/hash/tdes.c
270
T = ((D >> 4) ^ C) & 0x0F0F0F0F; C ^= T; D ^= (T << 4);
crypto/libecc/src/examples/hash/tdes.c
271
T = ((D ) ^ C) & 0x10101010; C ^= T; D ^= (T );
crypto/libecc/src/examples/hash/tdes.c
278
D = (RH[ (D >> 1) & 0xF] << 3) | (RH[ (D >> 9) & 0xF ] << 2)
crypto/libecc/src/examples/hash/tdes.c
279
| (RH[ (D >> 17) & 0xF] << 1) | (RH[ (D >> 25) & 0xF ] )
crypto/libecc/src/examples/hash/tdes.c
280
| (RH[ (D >> 4) & 0xF] << 7) | (RH[ (D >> 12) & 0xF ] << 6)
crypto/libecc/src/examples/hash/tdes.c
281
| (RH[ (D >> 20) & 0xF] << 5) | (RH[ (D >> 28) & 0xF ] << 4);
crypto/libecc/src/examples/hash/tdes.c
284
D &= 0x0FFFFFFF;
crypto/libecc/src/examples/hash/tdes.c
291
D = ((D << 1) | (D >> 27)) & 0x0FFFFFFF;
crypto/libecc/src/examples/hash/tdes.c
295
D = ((D << 2) | (D >> 26)) & 0x0FFFFFFF;
crypto/libecc/src/examples/hash/tdes.c
303
| ((D >> 13) & 0x00002000) | ((D >> 4) & 0x00001000)
crypto/libecc/src/examples/hash/tdes.c
304
| ((D << 6) & 0x00000800) | ((D >> 1) & 0x00000400)
crypto/libecc/src/examples/hash/tdes.c
305
| ((D >> 14) & 0x00000200) | ((D ) & 0x00000100)
crypto/libecc/src/examples/hash/tdes.c
306
| ((D >> 5) & 0x00000020) | ((D >> 10) & 0x00000010)
crypto/libecc/src/examples/hash/tdes.c
307
| ((D >> 3) & 0x00000008) | ((D >> 18) & 0x00000004)
crypto/libecc/src/examples/hash/tdes.c
308
| ((D >> 26) & 0x00000002) | ((D >> 24) & 0x00000001);
crypto/libecc/src/examples/hash/tdes.c
316
| ((D >> 2) & 0x00002000) | ((D << 8) & 0x00001000)
crypto/libecc/src/examples/hash/tdes.c
317
| ((D >> 14) & 0x00000808) | ((D >> 9) & 0x00000400)
crypto/libecc/src/examples/hash/tdes.c
318
| ((D ) & 0x00000200) | ((D << 7) & 0x00000100)
crypto/libecc/src/examples/hash/tdes.c
319
| ((D >> 7) & 0x00000020) | ((D >> 3) & 0x00000011)
crypto/libecc/src/examples/hash/tdes.c
320
| ((D << 2) & 0x00000004) | ((D >> 21) & 0x00000002);
crypto/libecc/src/hash/sm3.c
113
D = ctx->sm3_state[3];
crypto/libecc/src/hash/sm3.c
132
TT1 = FF_j_low(A, B, C) + D + SS2 + W[j + 68];
crypto/libecc/src/hash/sm3.c
134
D = C;
crypto/libecc/src/hash/sm3.c
147
TT1 = FF_j_high(A, B, C) + D + SS2 + W[j + 68];
crypto/libecc/src/hash/sm3.c
149
D = C;
crypto/libecc/src/hash/sm3.c
162
TT1 = FF_j_high(A, B, C) + D + SS2 + W[j + 68];
crypto/libecc/src/hash/sm3.c
164
D = C;
crypto/libecc/src/hash/sm3.c
177
ctx->sm3_state[3] ^= D;
crypto/libecc/src/hash/sm3.c
87
u32 A, B, C, D, E, F, G, H;
crypto/openssl/crypto/bn/bn_div.c
118
BN_ULLONG D = ((BN_ULLONG)d0 << BN_BITS2) | d1;
crypto/openssl/crypto/bn/bn_div.c
124
if (R >= D) {
crypto/openssl/crypto/bn/bn_div.c
126
R -= D;
crypto/openssl/crypto/bn/bn_div.c
128
D >>= 1;
crypto/openssl/crypto/bn/bn_div.c
134
Q |= (R >= D);
crypto/openssl/crypto/bn/bn_div.c
22
BIGNUM *D;
crypto/openssl/crypto/bn/bn_div.c
42
D = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_div.c
47
if (D == NULL || dv == NULL || rem == NULL)
crypto/openssl/crypto/bn/bn_div.c
52
if (BN_copy(D, d) == NULL)
crypto/openssl/crypto/bn/bn_div.c
66
if (!BN_lshift(D, D, nm - nd))
crypto/openssl/crypto/bn/bn_div.c
71
if (BN_ucmp(rem, D) >= 0) {
crypto/openssl/crypto/bn/bn_div.c
73
if (!BN_usub(rem, rem, D))
crypto/openssl/crypto/bn/bn_div.c
77
if (!BN_rshift1(D, D))
crypto/openssl/crypto/bn/bn_gcd.c
101
if (!BN_div(D, M, &local_A, B, ctx))
crypto/openssl/crypto/bn/bn_gcd.c
141
if (!BN_mul(tmp, D, X, ctx))
crypto/openssl/crypto/bn/bn_gcd.c
201
BIGNUM *A, *B, *X, *Y, *M, *D, *T, *R = NULL;
crypto/openssl/crypto/bn/bn_gcd.c
225
D = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_gcd.c
25
BIGNUM *A, *B, *X, *Y, *M, *D, *T, *R = NULL;
crypto/openssl/crypto/bn/bn_gcd.c
36
D = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_gcd.c
368
if (!BN_one(D))
crypto/openssl/crypto/bn/bn_gcd.c
378
if (!BN_one(D))
crypto/openssl/crypto/bn/bn_gcd.c
386
if (!BN_add(D, T, B))
crypto/openssl/crypto/bn/bn_gcd.c
388
if (BN_ucmp(A, D) < 0) {
crypto/openssl/crypto/bn/bn_gcd.c
390
if (!BN_set_word(D, 2))
crypto/openssl/crypto/bn/bn_gcd.c
397
if (!BN_set_word(D, 3))
crypto/openssl/crypto/bn/bn_gcd.c
407
if (!BN_div(D, M, A, B, ctx))
crypto/openssl/crypto/bn/bn_gcd.c
448
if (BN_is_one(D)) {
crypto/openssl/crypto/bn/bn_gcd.c
452
if (BN_is_word(D, 2)) {
crypto/openssl/crypto/bn/bn_gcd.c
455
} else if (BN_is_word(D, 4)) {
crypto/openssl/crypto/bn/bn_gcd.c
458
} else if (D->top == 1) {
crypto/openssl/crypto/bn/bn_gcd.c
461
if (!BN_mul_word(tmp, D->d[0]))
crypto/openssl/crypto/bn/bn_gcd.c
464
if (!BN_mul(tmp, D, X, ctx))
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
141
unsigned int A[8], B[8], C[8], D[8], E[8];
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
225
ctx->D[i] = key->md.h3;
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
332
blocks[i].d[3] = BSWAP4(ctx->D[i]);
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
333
ctx->D[i] = key->tail.h3;
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
345
PUTU32(blocks[i].c + 12, ctx->D[i]);
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
346
ctx->D[i] = key->tail.h3;
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
372
PUTU32(out + 12, ctx->D[i]);
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
135
unsigned int A[8], B[8], C[8], D[8], E[8], F[8], G[8], H[8];
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
220
ctx->D[i] = key->md.h[3];
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
330
blocks[i].d[3] = BSWAP4(ctx->D[i]);
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
331
ctx->D[i] = key->tail.h[3];
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
349
PUTU32(blocks[i].c + 12, ctx->D[i]);
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
350
ctx->D[i] = key->tail.h[3];
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
382
PUTU32(out + 12, ctx->D[i]);
crypto/openssl/crypto/md4/md4_dgst.c
101
R0(B, C, D, A, X(11), 19, 0);
crypto/openssl/crypto/md4/md4_dgst.c
104
R0(A, B, C, D, X(12), 3, 0);
crypto/openssl/crypto/md4/md4_dgst.c
107
R0(D, A, B, C, X(13), 7, 0);
crypto/openssl/crypto/md4/md4_dgst.c
110
R0(C, D, A, B, X(14), 11, 0);
crypto/openssl/crypto/md4/md4_dgst.c
111
R0(B, C, D, A, X(15), 19, 0);
crypto/openssl/crypto/md4/md4_dgst.c
113
R1(A, B, C, D, X(0), 3, 0x5A827999L);
crypto/openssl/crypto/md4/md4_dgst.c
114
R1(D, A, B, C, X(4), 5, 0x5A827999L);
crypto/openssl/crypto/md4/md4_dgst.c
115
R1(C, D, A, B, X(8), 9, 0x5A827999L);
crypto/openssl/crypto/md4/md4_dgst.c
116
R1(B, C, D, A, X(12), 13, 0x5A827999L);
crypto/openssl/crypto/md4/md4_dgst.c
117
R1(A, B, C, D, X(1), 3, 0x5A827999L);
crypto/openssl/crypto/md4/md4_dgst.c
118
R1(D, A, B, C, X(5), 5, 0x5A827999L);
crypto/openssl/crypto/md4/md4_dgst.c
119
R1(C, D, A, B, X(9), 9, 0x5A827999L);
crypto/openssl/crypto/md4/md4_dgst.c
120
R1(B, C, D, A, X(13), 13, 0x5A827999L);
crypto/openssl/crypto/md4/md4_dgst.c
121
R1(A, B, C, D, X(2), 3, 0x5A827999L);
crypto/openssl/crypto/md4/md4_dgst.c
122
R1(D, A, B, C, X(6), 5, 0x5A827999L);
crypto/openssl/crypto/md4/md4_dgst.c
123
R1(C, D, A, B, X(10), 9, 0x5A827999L);
crypto/openssl/crypto/md4/md4_dgst.c
124
R1(B, C, D, A, X(14), 13, 0x5A827999L);
crypto/openssl/crypto/md4/md4_dgst.c
125
R1(A, B, C, D, X(3), 3, 0x5A827999L);
crypto/openssl/crypto/md4/md4_dgst.c
126
R1(D, A, B, C, X(7), 5, 0x5A827999L);
crypto/openssl/crypto/md4/md4_dgst.c
127
R1(C, D, A, B, X(11), 9, 0x5A827999L);
crypto/openssl/crypto/md4/md4_dgst.c
128
R1(B, C, D, A, X(15), 13, 0x5A827999L);
crypto/openssl/crypto/md4/md4_dgst.c
130
R2(A, B, C, D, X(0), 3, 0x6ED9EBA1L);
crypto/openssl/crypto/md4/md4_dgst.c
131
R2(D, A, B, C, X(8), 9, 0x6ED9EBA1L);
crypto/openssl/crypto/md4/md4_dgst.c
132
R2(C, D, A, B, X(4), 11, 0x6ED9EBA1L);
crypto/openssl/crypto/md4/md4_dgst.c
133
R2(B, C, D, A, X(12), 15, 0x6ED9EBA1L);
crypto/openssl/crypto/md4/md4_dgst.c
134
R2(A, B, C, D, X(2), 3, 0x6ED9EBA1L);
crypto/openssl/crypto/md4/md4_dgst.c
135
R2(D, A, B, C, X(10), 9, 0x6ED9EBA1L);
crypto/openssl/crypto/md4/md4_dgst.c
136
R2(C, D, A, B, X(6), 11, 0x6ED9EBA1L);
crypto/openssl/crypto/md4/md4_dgst.c
137
R2(B, C, D, A, X(14), 15, 0x6ED9EBA1L);
crypto/openssl/crypto/md4/md4_dgst.c
138
R2(A, B, C, D, X(1), 3, 0x6ED9EBA1L);
crypto/openssl/crypto/md4/md4_dgst.c
139
R2(D, A, B, C, X(9), 9, 0x6ED9EBA1L);
crypto/openssl/crypto/md4/md4_dgst.c
140
R2(C, D, A, B, X(5), 11, 0x6ED9EBA1L);
crypto/openssl/crypto/md4/md4_dgst.c
141
R2(B, C, D, A, X(13), 15, 0x6ED9EBA1L);
crypto/openssl/crypto/md4/md4_dgst.c
142
R2(A, B, C, D, X(3), 3, 0x6ED9EBA1L);
crypto/openssl/crypto/md4/md4_dgst.c
143
R2(D, A, B, C, X(11), 9, 0x6ED9EBA1L);
crypto/openssl/crypto/md4/md4_dgst.c
144
R2(C, D, A, B, X(7), 11, 0x6ED9EBA1L);
crypto/openssl/crypto/md4/md4_dgst.c
145
R2(B, C, D, A, X(15), 15, 0x6ED9EBA1L);
crypto/openssl/crypto/md4/md4_dgst.c
150
D = c->D += D;
crypto/openssl/crypto/md4/md4_dgst.c
35
c->D = INIT_DATA_D;
crypto/openssl/crypto/md4/md4_dgst.c
46
register unsigned MD32_REG_T A, B, C, D, l;
crypto/openssl/crypto/md4/md4_dgst.c
60
D = c->D;
crypto/openssl/crypto/md4/md4_dgst.c
68
R0(A, B, C, D, X(0), 3, 0);
crypto/openssl/crypto/md4/md4_dgst.c
71
R0(D, A, B, C, X(1), 7, 0);
crypto/openssl/crypto/md4/md4_dgst.c
74
R0(C, D, A, B, X(2), 11, 0);
crypto/openssl/crypto/md4/md4_dgst.c
77
R0(B, C, D, A, X(3), 19, 0);
crypto/openssl/crypto/md4/md4_dgst.c
80
R0(A, B, C, D, X(4), 3, 0);
crypto/openssl/crypto/md4/md4_dgst.c
83
R0(D, A, B, C, X(5), 7, 0);
crypto/openssl/crypto/md4/md4_dgst.c
86
R0(C, D, A, B, X(6), 11, 0);
crypto/openssl/crypto/md4/md4_dgst.c
89
R0(B, C, D, A, X(7), 19, 0);
crypto/openssl/crypto/md4/md4_dgst.c
92
R0(A, B, C, D, X(8), 3, 0);
crypto/openssl/crypto/md4/md4_dgst.c
95
R0(D, A, B, C, X(9), 7, 0);
crypto/openssl/crypto/md4/md4_dgst.c
98
R0(C, D, A, B, X(10), 11, 0);
crypto/openssl/crypto/md4/md4_local.h
34
ll = (c)->D; \
crypto/openssl/crypto/md5/md5_dgst.c
101
R0(B, C, D, A, X(11), 22, 0x895cd7beL);
crypto/openssl/crypto/md5/md5_dgst.c
104
R0(A, B, C, D, X(12), 7, 0x6b901122L);
crypto/openssl/crypto/md5/md5_dgst.c
107
R0(D, A, B, C, X(13), 12, 0xfd987193L);
crypto/openssl/crypto/md5/md5_dgst.c
110
R0(C, D, A, B, X(14), 17, 0xa679438eL);
crypto/openssl/crypto/md5/md5_dgst.c
111
R0(B, C, D, A, X(15), 22, 0x49b40821L);
crypto/openssl/crypto/md5/md5_dgst.c
113
R1(A, B, C, D, X(1), 5, 0xf61e2562L);
crypto/openssl/crypto/md5/md5_dgst.c
114
R1(D, A, B, C, X(6), 9, 0xc040b340L);
crypto/openssl/crypto/md5/md5_dgst.c
115
R1(C, D, A, B, X(11), 14, 0x265e5a51L);
crypto/openssl/crypto/md5/md5_dgst.c
116
R1(B, C, D, A, X(0), 20, 0xe9b6c7aaL);
crypto/openssl/crypto/md5/md5_dgst.c
117
R1(A, B, C, D, X(5), 5, 0xd62f105dL);
crypto/openssl/crypto/md5/md5_dgst.c
118
R1(D, A, B, C, X(10), 9, 0x02441453L);
crypto/openssl/crypto/md5/md5_dgst.c
119
R1(C, D, A, B, X(15), 14, 0xd8a1e681L);
crypto/openssl/crypto/md5/md5_dgst.c
120
R1(B, C, D, A, X(4), 20, 0xe7d3fbc8L);
crypto/openssl/crypto/md5/md5_dgst.c
121
R1(A, B, C, D, X(9), 5, 0x21e1cde6L);
crypto/openssl/crypto/md5/md5_dgst.c
122
R1(D, A, B, C, X(14), 9, 0xc33707d6L);
crypto/openssl/crypto/md5/md5_dgst.c
123
R1(C, D, A, B, X(3), 14, 0xf4d50d87L);
crypto/openssl/crypto/md5/md5_dgst.c
124
R1(B, C, D, A, X(8), 20, 0x455a14edL);
crypto/openssl/crypto/md5/md5_dgst.c
125
R1(A, B, C, D, X(13), 5, 0xa9e3e905L);
crypto/openssl/crypto/md5/md5_dgst.c
126
R1(D, A, B, C, X(2), 9, 0xfcefa3f8L);
crypto/openssl/crypto/md5/md5_dgst.c
127
R1(C, D, A, B, X(7), 14, 0x676f02d9L);
crypto/openssl/crypto/md5/md5_dgst.c
128
R1(B, C, D, A, X(12), 20, 0x8d2a4c8aL);
crypto/openssl/crypto/md5/md5_dgst.c
130
R2(A, B, C, D, X(5), 4, 0xfffa3942L);
crypto/openssl/crypto/md5/md5_dgst.c
131
R2(D, A, B, C, X(8), 11, 0x8771f681L);
crypto/openssl/crypto/md5/md5_dgst.c
132
R2(C, D, A, B, X(11), 16, 0x6d9d6122L);
crypto/openssl/crypto/md5/md5_dgst.c
133
R2(B, C, D, A, X(14), 23, 0xfde5380cL);
crypto/openssl/crypto/md5/md5_dgst.c
134
R2(A, B, C, D, X(1), 4, 0xa4beea44L);
crypto/openssl/crypto/md5/md5_dgst.c
135
R2(D, A, B, C, X(4), 11, 0x4bdecfa9L);
crypto/openssl/crypto/md5/md5_dgst.c
136
R2(C, D, A, B, X(7), 16, 0xf6bb4b60L);
crypto/openssl/crypto/md5/md5_dgst.c
137
R2(B, C, D, A, X(10), 23, 0xbebfbc70L);
crypto/openssl/crypto/md5/md5_dgst.c
138
R2(A, B, C, D, X(13), 4, 0x289b7ec6L);
crypto/openssl/crypto/md5/md5_dgst.c
139
R2(D, A, B, C, X(0), 11, 0xeaa127faL);
crypto/openssl/crypto/md5/md5_dgst.c
140
R2(C, D, A, B, X(3), 16, 0xd4ef3085L);
crypto/openssl/crypto/md5/md5_dgst.c
141
R2(B, C, D, A, X(6), 23, 0x04881d05L);
crypto/openssl/crypto/md5/md5_dgst.c
142
R2(A, B, C, D, X(9), 4, 0xd9d4d039L);
crypto/openssl/crypto/md5/md5_dgst.c
143
R2(D, A, B, C, X(12), 11, 0xe6db99e5L);
crypto/openssl/crypto/md5/md5_dgst.c
144
R2(C, D, A, B, X(15), 16, 0x1fa27cf8L);
crypto/openssl/crypto/md5/md5_dgst.c
145
R2(B, C, D, A, X(2), 23, 0xc4ac5665L);
crypto/openssl/crypto/md5/md5_dgst.c
147
R3(A, B, C, D, X(0), 6, 0xf4292244L);
crypto/openssl/crypto/md5/md5_dgst.c
148
R3(D, A, B, C, X(7), 10, 0x432aff97L);
crypto/openssl/crypto/md5/md5_dgst.c
149
R3(C, D, A, B, X(14), 15, 0xab9423a7L);
crypto/openssl/crypto/md5/md5_dgst.c
150
R3(B, C, D, A, X(5), 21, 0xfc93a039L);
crypto/openssl/crypto/md5/md5_dgst.c
151
R3(A, B, C, D, X(12), 6, 0x655b59c3L);
crypto/openssl/crypto/md5/md5_dgst.c
152
R3(D, A, B, C, X(3), 10, 0x8f0ccc92L);
crypto/openssl/crypto/md5/md5_dgst.c
153
R3(C, D, A, B, X(10), 15, 0xffeff47dL);
crypto/openssl/crypto/md5/md5_dgst.c
154
R3(B, C, D, A, X(1), 21, 0x85845dd1L);
crypto/openssl/crypto/md5/md5_dgst.c
155
R3(A, B, C, D, X(8), 6, 0x6fa87e4fL);
crypto/openssl/crypto/md5/md5_dgst.c
156
R3(D, A, B, C, X(15), 10, 0xfe2ce6e0L);
crypto/openssl/crypto/md5/md5_dgst.c
157
R3(C, D, A, B, X(6), 15, 0xa3014314L);
crypto/openssl/crypto/md5/md5_dgst.c
158
R3(B, C, D, A, X(13), 21, 0x4e0811a1L);
crypto/openssl/crypto/md5/md5_dgst.c
159
R3(A, B, C, D, X(4), 6, 0xf7537e82L);
crypto/openssl/crypto/md5/md5_dgst.c
160
R3(D, A, B, C, X(11), 10, 0xbd3af235L);
crypto/openssl/crypto/md5/md5_dgst.c
161
R3(C, D, A, B, X(2), 15, 0x2ad7d2bbL);
crypto/openssl/crypto/md5/md5_dgst.c
162
R3(B, C, D, A, X(9), 21, 0xeb86d391L);
crypto/openssl/crypto/md5/md5_dgst.c
167
D = c->D += D;
crypto/openssl/crypto/md5/md5_dgst.c
35
c->D = INIT_DATA_D;
crypto/openssl/crypto/md5/md5_dgst.c
46
register unsigned MD32_REG_T A, B, C, D, l;
crypto/openssl/crypto/md5/md5_dgst.c
60
D = c->D;
crypto/openssl/crypto/md5/md5_dgst.c
68
R0(A, B, C, D, X(0), 7, 0xd76aa478L);
crypto/openssl/crypto/md5/md5_dgst.c
71
R0(D, A, B, C, X(1), 12, 0xe8c7b756L);
crypto/openssl/crypto/md5/md5_dgst.c
74
R0(C, D, A, B, X(2), 17, 0x242070dbL);
crypto/openssl/crypto/md5/md5_dgst.c
77
R0(B, C, D, A, X(3), 22, 0xc1bdceeeL);
crypto/openssl/crypto/md5/md5_dgst.c
80
R0(A, B, C, D, X(4), 7, 0xf57c0fafL);
crypto/openssl/crypto/md5/md5_dgst.c
83
R0(D, A, B, C, X(5), 12, 0x4787c62aL);
crypto/openssl/crypto/md5/md5_dgst.c
86
R0(C, D, A, B, X(6), 17, 0xa8304613L);
crypto/openssl/crypto/md5/md5_dgst.c
89
R0(B, C, D, A, X(7), 22, 0xfd469501L);
crypto/openssl/crypto/md5/md5_dgst.c
92
R0(A, B, C, D, X(8), 7, 0x698098d8L);
crypto/openssl/crypto/md5/md5_dgst.c
95
R0(D, A, B, C, X(9), 12, 0x8b44f7afL);
crypto/openssl/crypto/md5/md5_dgst.c
98
R0(C, D, A, B, X(10), 17, 0xffff5bb1L);
crypto/openssl/crypto/md5/md5_local.h
44
ll = (c)->D; \
crypto/openssl/crypto/ripemd/rmd_dgst.c
102
RIP1(E, A, B, C, D, WL11, SL11);
crypto/openssl/crypto/ripemd/rmd_dgst.c
105
RIP1(D, E, A, B, C, WL12, SL12);
crypto/openssl/crypto/ripemd/rmd_dgst.c
108
RIP1(C, D, E, A, B, WL13, SL13);
crypto/openssl/crypto/ripemd/rmd_dgst.c
111
RIP1(B, C, D, E, A, WL14, SL14);
crypto/openssl/crypto/ripemd/rmd_dgst.c
112
RIP1(A, B, C, D, E, WL15, SL15);
crypto/openssl/crypto/ripemd/rmd_dgst.c
114
RIP2(E, A, B, C, D, WL16, SL16, KL1);
crypto/openssl/crypto/ripemd/rmd_dgst.c
115
RIP2(D, E, A, B, C, WL17, SL17, KL1);
crypto/openssl/crypto/ripemd/rmd_dgst.c
116
RIP2(C, D, E, A, B, WL18, SL18, KL1);
crypto/openssl/crypto/ripemd/rmd_dgst.c
117
RIP2(B, C, D, E, A, WL19, SL19, KL1);
crypto/openssl/crypto/ripemd/rmd_dgst.c
118
RIP2(A, B, C, D, E, WL20, SL20, KL1);
crypto/openssl/crypto/ripemd/rmd_dgst.c
119
RIP2(E, A, B, C, D, WL21, SL21, KL1);
crypto/openssl/crypto/ripemd/rmd_dgst.c
120
RIP2(D, E, A, B, C, WL22, SL22, KL1);
crypto/openssl/crypto/ripemd/rmd_dgst.c
121
RIP2(C, D, E, A, B, WL23, SL23, KL1);
crypto/openssl/crypto/ripemd/rmd_dgst.c
122
RIP2(B, C, D, E, A, WL24, SL24, KL1);
crypto/openssl/crypto/ripemd/rmd_dgst.c
123
RIP2(A, B, C, D, E, WL25, SL25, KL1);
crypto/openssl/crypto/ripemd/rmd_dgst.c
124
RIP2(E, A, B, C, D, WL26, SL26, KL1);
crypto/openssl/crypto/ripemd/rmd_dgst.c
125
RIP2(D, E, A, B, C, WL27, SL27, KL1);
crypto/openssl/crypto/ripemd/rmd_dgst.c
126
RIP2(C, D, E, A, B, WL28, SL28, KL1);
crypto/openssl/crypto/ripemd/rmd_dgst.c
127
RIP2(B, C, D, E, A, WL29, SL29, KL1);
crypto/openssl/crypto/ripemd/rmd_dgst.c
128
RIP2(A, B, C, D, E, WL30, SL30, KL1);
crypto/openssl/crypto/ripemd/rmd_dgst.c
129
RIP2(E, A, B, C, D, WL31, SL31, KL1);
crypto/openssl/crypto/ripemd/rmd_dgst.c
131
RIP3(D, E, A, B, C, WL32, SL32, KL2);
crypto/openssl/crypto/ripemd/rmd_dgst.c
132
RIP3(C, D, E, A, B, WL33, SL33, KL2);
crypto/openssl/crypto/ripemd/rmd_dgst.c
133
RIP3(B, C, D, E, A, WL34, SL34, KL2);
crypto/openssl/crypto/ripemd/rmd_dgst.c
134
RIP3(A, B, C, D, E, WL35, SL35, KL2);
crypto/openssl/crypto/ripemd/rmd_dgst.c
135
RIP3(E, A, B, C, D, WL36, SL36, KL2);
crypto/openssl/crypto/ripemd/rmd_dgst.c
136
RIP3(D, E, A, B, C, WL37, SL37, KL2);
crypto/openssl/crypto/ripemd/rmd_dgst.c
137
RIP3(C, D, E, A, B, WL38, SL38, KL2);
crypto/openssl/crypto/ripemd/rmd_dgst.c
138
RIP3(B, C, D, E, A, WL39, SL39, KL2);
crypto/openssl/crypto/ripemd/rmd_dgst.c
139
RIP3(A, B, C, D, E, WL40, SL40, KL2);
crypto/openssl/crypto/ripemd/rmd_dgst.c
140
RIP3(E, A, B, C, D, WL41, SL41, KL2);
crypto/openssl/crypto/ripemd/rmd_dgst.c
141
RIP3(D, E, A, B, C, WL42, SL42, KL2);
crypto/openssl/crypto/ripemd/rmd_dgst.c
142
RIP3(C, D, E, A, B, WL43, SL43, KL2);
crypto/openssl/crypto/ripemd/rmd_dgst.c
143
RIP3(B, C, D, E, A, WL44, SL44, KL2);
crypto/openssl/crypto/ripemd/rmd_dgst.c
144
RIP3(A, B, C, D, E, WL45, SL45, KL2);
crypto/openssl/crypto/ripemd/rmd_dgst.c
145
RIP3(E, A, B, C, D, WL46, SL46, KL2);
crypto/openssl/crypto/ripemd/rmd_dgst.c
146
RIP3(D, E, A, B, C, WL47, SL47, KL2);
crypto/openssl/crypto/ripemd/rmd_dgst.c
148
RIP4(C, D, E, A, B, WL48, SL48, KL3);
crypto/openssl/crypto/ripemd/rmd_dgst.c
149
RIP4(B, C, D, E, A, WL49, SL49, KL3);
crypto/openssl/crypto/ripemd/rmd_dgst.c
150
RIP4(A, B, C, D, E, WL50, SL50, KL3);
crypto/openssl/crypto/ripemd/rmd_dgst.c
151
RIP4(E, A, B, C, D, WL51, SL51, KL3);
crypto/openssl/crypto/ripemd/rmd_dgst.c
152
RIP4(D, E, A, B, C, WL52, SL52, KL3);
crypto/openssl/crypto/ripemd/rmd_dgst.c
153
RIP4(C, D, E, A, B, WL53, SL53, KL3);
crypto/openssl/crypto/ripemd/rmd_dgst.c
154
RIP4(B, C, D, E, A, WL54, SL54, KL3);
crypto/openssl/crypto/ripemd/rmd_dgst.c
155
RIP4(A, B, C, D, E, WL55, SL55, KL3);
crypto/openssl/crypto/ripemd/rmd_dgst.c
156
RIP4(E, A, B, C, D, WL56, SL56, KL3);
crypto/openssl/crypto/ripemd/rmd_dgst.c
157
RIP4(D, E, A, B, C, WL57, SL57, KL3);
crypto/openssl/crypto/ripemd/rmd_dgst.c
158
RIP4(C, D, E, A, B, WL58, SL58, KL3);
crypto/openssl/crypto/ripemd/rmd_dgst.c
159
RIP4(B, C, D, E, A, WL59, SL59, KL3);
crypto/openssl/crypto/ripemd/rmd_dgst.c
160
RIP4(A, B, C, D, E, WL60, SL60, KL3);
crypto/openssl/crypto/ripemd/rmd_dgst.c
161
RIP4(E, A, B, C, D, WL61, SL61, KL3);
crypto/openssl/crypto/ripemd/rmd_dgst.c
162
RIP4(D, E, A, B, C, WL62, SL62, KL3);
crypto/openssl/crypto/ripemd/rmd_dgst.c
163
RIP4(C, D, E, A, B, WL63, SL63, KL3);
crypto/openssl/crypto/ripemd/rmd_dgst.c
165
RIP5(B, C, D, E, A, WL64, SL64, KL4);
crypto/openssl/crypto/ripemd/rmd_dgst.c
166
RIP5(A, B, C, D, E, WL65, SL65, KL4);
crypto/openssl/crypto/ripemd/rmd_dgst.c
167
RIP5(E, A, B, C, D, WL66, SL66, KL4);
crypto/openssl/crypto/ripemd/rmd_dgst.c
168
RIP5(D, E, A, B, C, WL67, SL67, KL4);
crypto/openssl/crypto/ripemd/rmd_dgst.c
169
RIP5(C, D, E, A, B, WL68, SL68, KL4);
crypto/openssl/crypto/ripemd/rmd_dgst.c
170
RIP5(B, C, D, E, A, WL69, SL69, KL4);
crypto/openssl/crypto/ripemd/rmd_dgst.c
171
RIP5(A, B, C, D, E, WL70, SL70, KL4);
crypto/openssl/crypto/ripemd/rmd_dgst.c
172
RIP5(E, A, B, C, D, WL71, SL71, KL4);
crypto/openssl/crypto/ripemd/rmd_dgst.c
173
RIP5(D, E, A, B, C, WL72, SL72, KL4);
crypto/openssl/crypto/ripemd/rmd_dgst.c
174
RIP5(C, D, E, A, B, WL73, SL73, KL4);
crypto/openssl/crypto/ripemd/rmd_dgst.c
175
RIP5(B, C, D, E, A, WL74, SL74, KL4);
crypto/openssl/crypto/ripemd/rmd_dgst.c
176
RIP5(A, B, C, D, E, WL75, SL75, KL4);
crypto/openssl/crypto/ripemd/rmd_dgst.c
177
RIP5(E, A, B, C, D, WL76, SL76, KL4);
crypto/openssl/crypto/ripemd/rmd_dgst.c
178
RIP5(D, E, A, B, C, WL77, SL77, KL4);
crypto/openssl/crypto/ripemd/rmd_dgst.c
179
RIP5(C, D, E, A, B, WL78, SL78, KL4);
crypto/openssl/crypto/ripemd/rmd_dgst.c
180
RIP5(B, C, D, E, A, WL79, SL79, KL4);
crypto/openssl/crypto/ripemd/rmd_dgst.c
185
d = D;
crypto/openssl/crypto/ripemd/rmd_dgst.c
191
D = ctx->D;
crypto/openssl/crypto/ripemd/rmd_dgst.c
194
RIP5(A, B, C, D, E, WR00, SR00, KR0);
crypto/openssl/crypto/ripemd/rmd_dgst.c
195
RIP5(E, A, B, C, D, WR01, SR01, KR0);
crypto/openssl/crypto/ripemd/rmd_dgst.c
196
RIP5(D, E, A, B, C, WR02, SR02, KR0);
crypto/openssl/crypto/ripemd/rmd_dgst.c
197
RIP5(C, D, E, A, B, WR03, SR03, KR0);
crypto/openssl/crypto/ripemd/rmd_dgst.c
198
RIP5(B, C, D, E, A, WR04, SR04, KR0);
crypto/openssl/crypto/ripemd/rmd_dgst.c
199
RIP5(A, B, C, D, E, WR05, SR05, KR0);
crypto/openssl/crypto/ripemd/rmd_dgst.c
200
RIP5(E, A, B, C, D, WR06, SR06, KR0);
crypto/openssl/crypto/ripemd/rmd_dgst.c
201
RIP5(D, E, A, B, C, WR07, SR07, KR0);
crypto/openssl/crypto/ripemd/rmd_dgst.c
202
RIP5(C, D, E, A, B, WR08, SR08, KR0);
crypto/openssl/crypto/ripemd/rmd_dgst.c
203
RIP5(B, C, D, E, A, WR09, SR09, KR0);
crypto/openssl/crypto/ripemd/rmd_dgst.c
204
RIP5(A, B, C, D, E, WR10, SR10, KR0);
crypto/openssl/crypto/ripemd/rmd_dgst.c
205
RIP5(E, A, B, C, D, WR11, SR11, KR0);
crypto/openssl/crypto/ripemd/rmd_dgst.c
206
RIP5(D, E, A, B, C, WR12, SR12, KR0);
crypto/openssl/crypto/ripemd/rmd_dgst.c
207
RIP5(C, D, E, A, B, WR13, SR13, KR0);
crypto/openssl/crypto/ripemd/rmd_dgst.c
208
RIP5(B, C, D, E, A, WR14, SR14, KR0);
crypto/openssl/crypto/ripemd/rmd_dgst.c
209
RIP5(A, B, C, D, E, WR15, SR15, KR0);
crypto/openssl/crypto/ripemd/rmd_dgst.c
211
RIP4(E, A, B, C, D, WR16, SR16, KR1);
crypto/openssl/crypto/ripemd/rmd_dgst.c
212
RIP4(D, E, A, B, C, WR17, SR17, KR1);
crypto/openssl/crypto/ripemd/rmd_dgst.c
213
RIP4(C, D, E, A, B, WR18, SR18, KR1);
crypto/openssl/crypto/ripemd/rmd_dgst.c
214
RIP4(B, C, D, E, A, WR19, SR19, KR1);
crypto/openssl/crypto/ripemd/rmd_dgst.c
215
RIP4(A, B, C, D, E, WR20, SR20, KR1);
crypto/openssl/crypto/ripemd/rmd_dgst.c
216
RIP4(E, A, B, C, D, WR21, SR21, KR1);
crypto/openssl/crypto/ripemd/rmd_dgst.c
217
RIP4(D, E, A, B, C, WR22, SR22, KR1);
crypto/openssl/crypto/ripemd/rmd_dgst.c
218
RIP4(C, D, E, A, B, WR23, SR23, KR1);
crypto/openssl/crypto/ripemd/rmd_dgst.c
219
RIP4(B, C, D, E, A, WR24, SR24, KR1);
crypto/openssl/crypto/ripemd/rmd_dgst.c
220
RIP4(A, B, C, D, E, WR25, SR25, KR1);
crypto/openssl/crypto/ripemd/rmd_dgst.c
221
RIP4(E, A, B, C, D, WR26, SR26, KR1);
crypto/openssl/crypto/ripemd/rmd_dgst.c
222
RIP4(D, E, A, B, C, WR27, SR27, KR1);
crypto/openssl/crypto/ripemd/rmd_dgst.c
223
RIP4(C, D, E, A, B, WR28, SR28, KR1);
crypto/openssl/crypto/ripemd/rmd_dgst.c
224
RIP4(B, C, D, E, A, WR29, SR29, KR1);
crypto/openssl/crypto/ripemd/rmd_dgst.c
225
RIP4(A, B, C, D, E, WR30, SR30, KR1);
crypto/openssl/crypto/ripemd/rmd_dgst.c
226
RIP4(E, A, B, C, D, WR31, SR31, KR1);
crypto/openssl/crypto/ripemd/rmd_dgst.c
228
RIP3(D, E, A, B, C, WR32, SR32, KR2);
crypto/openssl/crypto/ripemd/rmd_dgst.c
229
RIP3(C, D, E, A, B, WR33, SR33, KR2);
crypto/openssl/crypto/ripemd/rmd_dgst.c
230
RIP3(B, C, D, E, A, WR34, SR34, KR2);
crypto/openssl/crypto/ripemd/rmd_dgst.c
231
RIP3(A, B, C, D, E, WR35, SR35, KR2);
crypto/openssl/crypto/ripemd/rmd_dgst.c
232
RIP3(E, A, B, C, D, WR36, SR36, KR2);
crypto/openssl/crypto/ripemd/rmd_dgst.c
233
RIP3(D, E, A, B, C, WR37, SR37, KR2);
crypto/openssl/crypto/ripemd/rmd_dgst.c
234
RIP3(C, D, E, A, B, WR38, SR38, KR2);
crypto/openssl/crypto/ripemd/rmd_dgst.c
235
RIP3(B, C, D, E, A, WR39, SR39, KR2);
crypto/openssl/crypto/ripemd/rmd_dgst.c
236
RIP3(A, B, C, D, E, WR40, SR40, KR2);
crypto/openssl/crypto/ripemd/rmd_dgst.c
237
RIP3(E, A, B, C, D, WR41, SR41, KR2);
crypto/openssl/crypto/ripemd/rmd_dgst.c
238
RIP3(D, E, A, B, C, WR42, SR42, KR2);
crypto/openssl/crypto/ripemd/rmd_dgst.c
239
RIP3(C, D, E, A, B, WR43, SR43, KR2);
crypto/openssl/crypto/ripemd/rmd_dgst.c
240
RIP3(B, C, D, E, A, WR44, SR44, KR2);
crypto/openssl/crypto/ripemd/rmd_dgst.c
241
RIP3(A, B, C, D, E, WR45, SR45, KR2);
crypto/openssl/crypto/ripemd/rmd_dgst.c
242
RIP3(E, A, B, C, D, WR46, SR46, KR2);
crypto/openssl/crypto/ripemd/rmd_dgst.c
243
RIP3(D, E, A, B, C, WR47, SR47, KR2);
crypto/openssl/crypto/ripemd/rmd_dgst.c
245
RIP2(C, D, E, A, B, WR48, SR48, KR3);
crypto/openssl/crypto/ripemd/rmd_dgst.c
246
RIP2(B, C, D, E, A, WR49, SR49, KR3);
crypto/openssl/crypto/ripemd/rmd_dgst.c
247
RIP2(A, B, C, D, E, WR50, SR50, KR3);
crypto/openssl/crypto/ripemd/rmd_dgst.c
248
RIP2(E, A, B, C, D, WR51, SR51, KR3);
crypto/openssl/crypto/ripemd/rmd_dgst.c
249
RIP2(D, E, A, B, C, WR52, SR52, KR3);
crypto/openssl/crypto/ripemd/rmd_dgst.c
250
RIP2(C, D, E, A, B, WR53, SR53, KR3);
crypto/openssl/crypto/ripemd/rmd_dgst.c
251
RIP2(B, C, D, E, A, WR54, SR54, KR3);
crypto/openssl/crypto/ripemd/rmd_dgst.c
252
RIP2(A, B, C, D, E, WR55, SR55, KR3);
crypto/openssl/crypto/ripemd/rmd_dgst.c
253
RIP2(E, A, B, C, D, WR56, SR56, KR3);
crypto/openssl/crypto/ripemd/rmd_dgst.c
254
RIP2(D, E, A, B, C, WR57, SR57, KR3);
crypto/openssl/crypto/ripemd/rmd_dgst.c
255
RIP2(C, D, E, A, B, WR58, SR58, KR3);
crypto/openssl/crypto/ripemd/rmd_dgst.c
256
RIP2(B, C, D, E, A, WR59, SR59, KR3);
crypto/openssl/crypto/ripemd/rmd_dgst.c
257
RIP2(A, B, C, D, E, WR60, SR60, KR3);
crypto/openssl/crypto/ripemd/rmd_dgst.c
258
RIP2(E, A, B, C, D, WR61, SR61, KR3);
crypto/openssl/crypto/ripemd/rmd_dgst.c
259
RIP2(D, E, A, B, C, WR62, SR62, KR3);
crypto/openssl/crypto/ripemd/rmd_dgst.c
260
RIP2(C, D, E, A, B, WR63, SR63, KR3);
crypto/openssl/crypto/ripemd/rmd_dgst.c
262
RIP1(B, C, D, E, A, WR64, SR64);
crypto/openssl/crypto/ripemd/rmd_dgst.c
263
RIP1(A, B, C, D, E, WR65, SR65);
crypto/openssl/crypto/ripemd/rmd_dgst.c
264
RIP1(E, A, B, C, D, WR66, SR66);
crypto/openssl/crypto/ripemd/rmd_dgst.c
265
RIP1(D, E, A, B, C, WR67, SR67);
crypto/openssl/crypto/ripemd/rmd_dgst.c
266
RIP1(C, D, E, A, B, WR68, SR68);
crypto/openssl/crypto/ripemd/rmd_dgst.c
267
RIP1(B, C, D, E, A, WR69, SR69);
crypto/openssl/crypto/ripemd/rmd_dgst.c
268
RIP1(A, B, C, D, E, WR70, SR70);
crypto/openssl/crypto/ripemd/rmd_dgst.c
269
RIP1(E, A, B, C, D, WR71, SR71);
crypto/openssl/crypto/ripemd/rmd_dgst.c
270
RIP1(D, E, A, B, C, WR72, SR72);
crypto/openssl/crypto/ripemd/rmd_dgst.c
271
RIP1(C, D, E, A, B, WR73, SR73);
crypto/openssl/crypto/ripemd/rmd_dgst.c
272
RIP1(B, C, D, E, A, WR74, SR74);
crypto/openssl/crypto/ripemd/rmd_dgst.c
273
RIP1(A, B, C, D, E, WR75, SR75);
crypto/openssl/crypto/ripemd/rmd_dgst.c
274
RIP1(E, A, B, C, D, WR76, SR76);
crypto/openssl/crypto/ripemd/rmd_dgst.c
275
RIP1(D, E, A, B, C, WR77, SR77);
crypto/openssl/crypto/ripemd/rmd_dgst.c
276
RIP1(C, D, E, A, B, WR78, SR78);
crypto/openssl/crypto/ripemd/rmd_dgst.c
277
RIP1(B, C, D, E, A, WR79, SR79);
crypto/openssl/crypto/ripemd/rmd_dgst.c
279
D = ctx->B + c + D;
crypto/openssl/crypto/ripemd/rmd_dgst.c
281
ctx->C = ctx->D + e + A;
crypto/openssl/crypto/ripemd/rmd_dgst.c
282
ctx->D = ctx->E + a + B;
crypto/openssl/crypto/ripemd/rmd_dgst.c
284
ctx->A = D;
crypto/openssl/crypto/ripemd/rmd_dgst.c
33
c->D = RIPEMD160_D;
crypto/openssl/crypto/ripemd/rmd_dgst.c
45
register unsigned MD32_REG_T A, B, C, D, E;
crypto/openssl/crypto/ripemd/rmd_dgst.c
62
D = ctx->D;
crypto/openssl/crypto/ripemd/rmd_dgst.c
69
RIP1(A, B, C, D, E, WL00, SL00);
crypto/openssl/crypto/ripemd/rmd_dgst.c
72
RIP1(E, A, B, C, D, WL01, SL01);
crypto/openssl/crypto/ripemd/rmd_dgst.c
75
RIP1(D, E, A, B, C, WL02, SL02);
crypto/openssl/crypto/ripemd/rmd_dgst.c
78
RIP1(C, D, E, A, B, WL03, SL03);
crypto/openssl/crypto/ripemd/rmd_dgst.c
81
RIP1(B, C, D, E, A, WL04, SL04);
crypto/openssl/crypto/ripemd/rmd_dgst.c
84
RIP1(A, B, C, D, E, WL05, SL05);
crypto/openssl/crypto/ripemd/rmd_dgst.c
87
RIP1(E, A, B, C, D, WL06, SL06);
crypto/openssl/crypto/ripemd/rmd_dgst.c
90
RIP1(D, E, A, B, C, WL07, SL07);
crypto/openssl/crypto/ripemd/rmd_dgst.c
93
RIP1(C, D, E, A, B, WL08, SL08);
crypto/openssl/crypto/ripemd/rmd_dgst.c
96
RIP1(B, C, D, E, A, WL09, SL09);
crypto/openssl/crypto/ripemd/rmd_dgst.c
99
RIP1(A, B, C, D, E, WL10, SL10);
crypto/openssl/crypto/ripemd/rmd_local.h
44
ll = (c)->D; \
crypto/openssl/crypto/sha/keccak1600.c
122
uint64_t C[5], D[5];
crypto/openssl/crypto/sha/keccak1600.c
139
D[0] = ROL64(C[1], 1) ^ C[4];
crypto/openssl/crypto/sha/keccak1600.c
140
D[1] = ROL64(C[2], 1) ^ C[0];
crypto/openssl/crypto/sha/keccak1600.c
141
D[2] = ROL64(C[3], 1) ^ C[1];
crypto/openssl/crypto/sha/keccak1600.c
142
D[3] = ROL64(C[4], 1) ^ C[2];
crypto/openssl/crypto/sha/keccak1600.c
143
D[4] = ROL64(C[0], 1) ^ C[3];
crypto/openssl/crypto/sha/keccak1600.c
146
A[y][0] ^= D[0];
crypto/openssl/crypto/sha/keccak1600.c
147
A[y][1] ^= D[1];
crypto/openssl/crypto/sha/keccak1600.c
148
A[y][2] ^= D[2];
crypto/openssl/crypto/sha/keccak1600.c
149
A[y][3] ^= D[3];
crypto/openssl/crypto/sha/keccak1600.c
150
A[y][4] ^= D[4];
crypto/openssl/crypto/sha/keccak1600.c
261
uint64_t D[5], T[2][5]; /* memory */
crypto/openssl/crypto/sha/keccak1600.c
272
D[1] = E[0] = ROL64(C[2], 1) ^ C[0];
crypto/openssl/crypto/sha/keccak1600.c
273
D[4] = E[1] = ROL64(C[0], 1) ^ C[3];
crypto/openssl/crypto/sha/keccak1600.c
274
D[0] = C[0] = ROL64(C[1], 1) ^ C[4];
crypto/openssl/crypto/sha/keccak1600.c
275
D[2] = C[1] = ROL64(C[3], 1) ^ C[1];
crypto/openssl/crypto/sha/keccak1600.c
276
D[3] = C[2] = ROL64(C[4], 1) ^ C[2];
crypto/openssl/crypto/sha/keccak1600.c
290
D[0] = ROL64(C[1], 1) ^ C[4];
crypto/openssl/crypto/sha/keccak1600.c
291
D[1] = ROL64(C[2], 1) ^ C[0];
crypto/openssl/crypto/sha/keccak1600.c
292
D[2] = ROL64(C[3], 1) ^ C[1];
crypto/openssl/crypto/sha/keccak1600.c
293
D[3] = ROL64(C[4], 1) ^ C[2];
crypto/openssl/crypto/sha/keccak1600.c
294
D[4] = ROL64(C[0], 1) ^ C[3];
crypto/openssl/crypto/sha/keccak1600.c
296
T[0][0] = A[3][0] ^ D[0]; /* borrow T[0][0] */
crypto/openssl/crypto/sha/keccak1600.c
297
T[0][1] = A[0][1] ^ D[1];
crypto/openssl/crypto/sha/keccak1600.c
298
T[0][2] = A[0][2] ^ D[2];
crypto/openssl/crypto/sha/keccak1600.c
299
T[0][3] = A[0][3] ^ D[3];
crypto/openssl/crypto/sha/keccak1600.c
300
T[0][4] = A[0][4] ^ D[4];
crypto/openssl/crypto/sha/keccak1600.c
302
C[0] = A[0][0] ^ D[0]; /* rotate by 0 */
crypto/openssl/crypto/sha/keccak1600.c
303
C[1] = ROL64(A[1][1] ^ D[1], rhotates[1][1]);
crypto/openssl/crypto/sha/keccak1600.c
304
C[2] = ROL64(A[2][2] ^ D[2], rhotates[2][2]);
crypto/openssl/crypto/sha/keccak1600.c
305
C[3] = ROL64(A[3][3] ^ D[3], rhotates[3][3]);
crypto/openssl/crypto/sha/keccak1600.c
306
C[4] = ROL64(A[4][4] ^ D[4], rhotates[4][4]);
crypto/openssl/crypto/sha/keccak1600.c
314
T[1][0] = A[1][0] ^ (C[3] = D[0]);
crypto/openssl/crypto/sha/keccak1600.c
315
T[1][1] = A[2][1] ^ (C[4] = D[1]); /* borrow T[1][1] */
crypto/openssl/crypto/sha/keccak1600.c
316
T[1][2] = A[1][2] ^ (E[0] = D[2]);
crypto/openssl/crypto/sha/keccak1600.c
317
T[1][3] = A[1][3] ^ (E[1] = D[3]);
crypto/openssl/crypto/sha/keccak1600.c
318
T[1][4] = A[2][4] ^ (C[2] = D[4]); /* borrow T[1][4] */
crypto/openssl/crypto/sha/keccak1600.c
334
C[2] = ROL64(A[2][3] ^ D[3], rhotates[2][3]);
crypto/openssl/crypto/sha/keccak1600.c
335
C[3] = ROL64(A[3][4] ^ D[4], rhotates[3][4]);
crypto/openssl/crypto/sha/keccak1600.c
336
C[4] = ROL64(A[4][0] ^ D[0], rhotates[4][0]);
crypto/openssl/crypto/sha/keccak1600.c
347
C[3] = ROL64(A[3][2] ^ D[2], rhotates[3][2]);
crypto/openssl/crypto/sha/keccak1600.c
348
C[4] = ROL64(A[4][3] ^ D[3], rhotates[4][3]);
crypto/openssl/crypto/sha/keccak1600.c
360
C[4] = ROL64(A[4][1] ^ D[1], rhotates[4][1]);
crypto/openssl/crypto/sha/keccak1600.c
388
uint64_t C[5], D[5];
crypto/openssl/crypto/sha/keccak1600.c
398
D[1] = C[0] ^ ROL64(C[2], 1);
crypto/openssl/crypto/sha/keccak1600.c
399
D[2] = C[1] ^ ROL64(C[3], 1);
crypto/openssl/crypto/sha/keccak1600.c
400
D[3] = C[2] ^= ROL64(C[4], 1);
crypto/openssl/crypto/sha/keccak1600.c
401
D[4] = C[3] ^= ROL64(C[0], 1);
crypto/openssl/crypto/sha/keccak1600.c
402
D[0] = C[4] ^= ROL64(C[1], 1);
crypto/openssl/crypto/sha/keccak1600.c
404
A[0][1] ^= D[1];
crypto/openssl/crypto/sha/keccak1600.c
405
A[1][1] ^= D[1];
crypto/openssl/crypto/sha/keccak1600.c
406
A[2][1] ^= D[1];
crypto/openssl/crypto/sha/keccak1600.c
407
A[3][1] ^= D[1];
crypto/openssl/crypto/sha/keccak1600.c
408
A[4][1] ^= D[1];
crypto/openssl/crypto/sha/keccak1600.c
410
A[0][2] ^= D[2];
crypto/openssl/crypto/sha/keccak1600.c
411
A[1][2] ^= D[2];
crypto/openssl/crypto/sha/keccak1600.c
412
A[2][2] ^= D[2];
crypto/openssl/crypto/sha/keccak1600.c
413
A[3][2] ^= D[2];
crypto/openssl/crypto/sha/keccak1600.c
414
A[4][2] ^= D[2];
crypto/openssl/crypto/sha/keccak1600.c
471
D[0] = A[0][1];
crypto/openssl/crypto/sha/keccak1600.c
472
D[1] = A[1][1];
crypto/openssl/crypto/sha/keccak1600.c
482
A[0][4] ^= (~C[0] & D[0]);
crypto/openssl/crypto/sha/keccak1600.c
483
A[1][4] ^= (~C[1] & D[1]);
crypto/openssl/crypto/sha/keccak1600.c
487
D[2] = A[2][1];
crypto/openssl/crypto/sha/keccak1600.c
488
D[3] = A[3][1];
crypto/openssl/crypto/sha/keccak1600.c
498
A[2][4] ^= (~C[2] & D[2]);
crypto/openssl/crypto/sha/keccak1600.c
499
A[3][4] ^= (~C[3] & D[3]);
crypto/openssl/crypto/sha/keccak1600.c
502
D[4] = A[4][1];
crypto/openssl/crypto/sha/keccak1600.c
508
A[4][4] ^= (~C[4] & D[4]);
crypto/openssl/crypto/sha/keccak1600.c
533
uint64_t C[5], D[5];
crypto/openssl/crypto/sha/keccak1600.c
543
D[0] = ROL64(C[1], 1) ^ C[4];
crypto/openssl/crypto/sha/keccak1600.c
544
D[1] = ROL64(C[2], 1) ^ C[0];
crypto/openssl/crypto/sha/keccak1600.c
545
D[2] = ROL64(C[3], 1) ^ C[1];
crypto/openssl/crypto/sha/keccak1600.c
546
D[3] = ROL64(C[4], 1) ^ C[2];
crypto/openssl/crypto/sha/keccak1600.c
547
D[4] = ROL64(C[0], 1) ^ C[3];
crypto/openssl/crypto/sha/keccak1600.c
549
C[0] = A[0][0] ^ D[0]; /* rotate by 0 */
crypto/openssl/crypto/sha/keccak1600.c
550
C[1] = ROL64(A[1][1] ^ D[1], rhotates[1][1]);
crypto/openssl/crypto/sha/keccak1600.c
551
C[2] = ROL64(A[2][2] ^ D[2], rhotates[2][2]);
crypto/openssl/crypto/sha/keccak1600.c
552
C[3] = ROL64(A[3][3] ^ D[3], rhotates[3][3]);
crypto/openssl/crypto/sha/keccak1600.c
553
C[4] = ROL64(A[4][4] ^ D[4], rhotates[4][4]);
crypto/openssl/crypto/sha/keccak1600.c
569
C[0] = ROL64(A[0][3] ^ D[3], rhotates[0][3]);
crypto/openssl/crypto/sha/keccak1600.c
570
C[1] = ROL64(A[1][4] ^ D[4], rhotates[1][4]);
crypto/openssl/crypto/sha/keccak1600.c
571
C[2] = ROL64(A[2][0] ^ D[0], rhotates[2][0]);
crypto/openssl/crypto/sha/keccak1600.c
572
C[3] = ROL64(A[3][1] ^ D[1], rhotates[3][1]);
crypto/openssl/crypto/sha/keccak1600.c
573
C[4] = ROL64(A[4][2] ^ D[2], rhotates[4][2]);
crypto/openssl/crypto/sha/keccak1600.c
589
C[0] = ROL64(A[0][1] ^ D[1], rhotates[0][1]);
crypto/openssl/crypto/sha/keccak1600.c
590
C[1] = ROL64(A[1][2] ^ D[2], rhotates[1][2]);
crypto/openssl/crypto/sha/keccak1600.c
591
C[2] = ROL64(A[2][3] ^ D[3], rhotates[2][3]);
crypto/openssl/crypto/sha/keccak1600.c
592
C[3] = ROL64(A[3][4] ^ D[4], rhotates[3][4]);
crypto/openssl/crypto/sha/keccak1600.c
593
C[4] = ROL64(A[4][0] ^ D[0], rhotates[4][0]);
crypto/openssl/crypto/sha/keccak1600.c
609
C[0] = ROL64(A[0][4] ^ D[4], rhotates[0][4]);
crypto/openssl/crypto/sha/keccak1600.c
610
C[1] = ROL64(A[1][0] ^ D[0], rhotates[1][0]);
crypto/openssl/crypto/sha/keccak1600.c
611
C[2] = ROL64(A[2][1] ^ D[1], rhotates[2][1]);
crypto/openssl/crypto/sha/keccak1600.c
612
C[3] = ROL64(A[3][2] ^ D[2], rhotates[3][2]);
crypto/openssl/crypto/sha/keccak1600.c
613
C[4] = ROL64(A[4][3] ^ D[3], rhotates[4][3]);
crypto/openssl/crypto/sha/keccak1600.c
629
C[0] = ROL64(A[0][2] ^ D[2], rhotates[0][2]);
crypto/openssl/crypto/sha/keccak1600.c
630
C[1] = ROL64(A[1][3] ^ D[3], rhotates[1][3]);
crypto/openssl/crypto/sha/keccak1600.c
631
C[2] = ROL64(A[2][4] ^ D[4], rhotates[2][4]);
crypto/openssl/crypto/sha/keccak1600.c
632
C[3] = ROL64(A[3][0] ^ D[0], rhotates[3][0]);
crypto/openssl/crypto/sha/keccak1600.c
633
C[4] = ROL64(A[4][1] ^ D[1], rhotates[4][1]);
crypto/openssl/crypto/sha/keccak1600.c
691
uint64_t B[5], C[5], D[5];
crypto/openssl/crypto/sha/keccak1600.c
702
D[0] = ROL64(C[1], 1) ^ C[4];
crypto/openssl/crypto/sha/keccak1600.c
703
D[1] = ROL64(C[2], 1) ^ C[0];
crypto/openssl/crypto/sha/keccak1600.c
704
D[2] = ROL64(C[3], 1) ^ C[1];
crypto/openssl/crypto/sha/keccak1600.c
705
D[3] = ROL64(C[4], 1) ^ C[2];
crypto/openssl/crypto/sha/keccak1600.c
706
D[4] = ROL64(C[0], 1) ^ C[3];
crypto/openssl/crypto/sha/keccak1600.c
708
B[0] = A[0][0] ^ D[0]; /* rotate by 0 */
crypto/openssl/crypto/sha/keccak1600.c
709
B[1] = ROL64(A[1][1] ^ D[1], rhotates[1][1]);
crypto/openssl/crypto/sha/keccak1600.c
710
B[2] = ROL64(A[2][2] ^ D[2], rhotates[2][2]);
crypto/openssl/crypto/sha/keccak1600.c
711
B[3] = ROL64(A[3][3] ^ D[3], rhotates[3][3]);
crypto/openssl/crypto/sha/keccak1600.c
712
B[4] = ROL64(A[4][4] ^ D[4], rhotates[4][4]);
crypto/openssl/crypto/sha/keccak1600.c
720
B[0] = ROL64(A[0][3] ^ D[3], rhotates[0][3]);
crypto/openssl/crypto/sha/keccak1600.c
721
B[1] = ROL64(A[1][4] ^ D[4], rhotates[1][4]);
crypto/openssl/crypto/sha/keccak1600.c
722
B[2] = ROL64(A[2][0] ^ D[0], rhotates[2][0]);
crypto/openssl/crypto/sha/keccak1600.c
723
B[3] = ROL64(A[3][1] ^ D[1], rhotates[3][1]);
crypto/openssl/crypto/sha/keccak1600.c
724
B[4] = ROL64(A[4][2] ^ D[2], rhotates[4][2]);
crypto/openssl/crypto/sha/keccak1600.c
732
B[0] = ROL64(A[0][1] ^ D[1], rhotates[0][1]);
crypto/openssl/crypto/sha/keccak1600.c
733
B[1] = ROL64(A[1][2] ^ D[2], rhotates[1][2]);
crypto/openssl/crypto/sha/keccak1600.c
734
B[2] = ROL64(A[2][3] ^ D[3], rhotates[2][3]);
crypto/openssl/crypto/sha/keccak1600.c
735
B[3] = ROL64(A[3][4] ^ D[4], rhotates[3][4]);
crypto/openssl/crypto/sha/keccak1600.c
736
B[4] = ROL64(A[4][0] ^ D[0], rhotates[4][0]);
crypto/openssl/crypto/sha/keccak1600.c
744
B[0] = ROL64(A[0][4] ^ D[4], rhotates[0][4]);
crypto/openssl/crypto/sha/keccak1600.c
745
B[1] = ROL64(A[1][0] ^ D[0], rhotates[1][0]);
crypto/openssl/crypto/sha/keccak1600.c
746
B[2] = ROL64(A[2][1] ^ D[1], rhotates[2][1]);
crypto/openssl/crypto/sha/keccak1600.c
747
B[3] = ROL64(A[3][2] ^ D[2], rhotates[3][2]);
crypto/openssl/crypto/sha/keccak1600.c
748
B[4] = ROL64(A[4][3] ^ D[3], rhotates[4][3]);
crypto/openssl/crypto/sha/keccak1600.c
756
B[0] = ROL64(A[0][2] ^ D[2], rhotates[0][2]);
crypto/openssl/crypto/sha/keccak1600.c
757
B[1] = ROL64(A[1][3] ^ D[3], rhotates[1][3]);
crypto/openssl/crypto/sha/keccak1600.c
758
B[2] = ROL64(A[2][4] ^ D[4], rhotates[2][4]);
crypto/openssl/crypto/sha/keccak1600.c
759
B[3] = ROL64(A[3][0] ^ D[0], rhotates[3][0]);
crypto/openssl/crypto/sha/keccak1600.c
760
B[4] = ROL64(A[4][1] ^ D[1], rhotates[4][1]);
crypto/openssl/crypto/sha/keccak1600.c
769
D[0] = ROL64(C[1], 1) ^ C[4];
crypto/openssl/crypto/sha/keccak1600.c
770
D[1] = ROL64(C[2], 1) ^ C[0];
crypto/openssl/crypto/sha/keccak1600.c
771
D[2] = ROL64(C[3], 1) ^ C[1];
crypto/openssl/crypto/sha/keccak1600.c
772
D[3] = ROL64(C[4], 1) ^ C[2];
crypto/openssl/crypto/sha/keccak1600.c
773
D[4] = ROL64(C[0], 1) ^ C[3];
crypto/openssl/crypto/sha/keccak1600.c
775
B[0] = A[0][0] ^ D[0]; /* rotate by 0 */
crypto/openssl/crypto/sha/keccak1600.c
776
B[1] = ROL64(A[3][1] ^ D[1], rhotates[1][1]);
crypto/openssl/crypto/sha/keccak1600.c
777
B[2] = ROL64(A[1][2] ^ D[2], rhotates[2][2]);
crypto/openssl/crypto/sha/keccak1600.c
778
B[3] = ROL64(A[4][3] ^ D[3], rhotates[3][3]);
crypto/openssl/crypto/sha/keccak1600.c
779
B[4] = ROL64(A[2][4] ^ D[4], rhotates[4][4]);
crypto/openssl/crypto/sha/keccak1600.c
787
B[0] = ROL64(A[3][3] ^ D[3], rhotates[0][3]);
crypto/openssl/crypto/sha/keccak1600.c
788
B[1] = ROL64(A[1][4] ^ D[4], rhotates[1][4]);
crypto/openssl/crypto/sha/keccak1600.c
789
B[2] = ROL64(A[4][0] ^ D[0], rhotates[2][0]);
crypto/openssl/crypto/sha/keccak1600.c
790
B[3] = ROL64(A[2][1] ^ D[1], rhotates[3][1]);
crypto/openssl/crypto/sha/keccak1600.c
791
B[4] = ROL64(A[0][2] ^ D[2], rhotates[4][2]);
crypto/openssl/crypto/sha/keccak1600.c
799
B[0] = ROL64(A[1][1] ^ D[1], rhotates[0][1]);
crypto/openssl/crypto/sha/keccak1600.c
800
B[1] = ROL64(A[4][2] ^ D[2], rhotates[1][2]);
crypto/openssl/crypto/sha/keccak1600.c
801
B[2] = ROL64(A[2][3] ^ D[3], rhotates[2][3]);
crypto/openssl/crypto/sha/keccak1600.c
802
B[3] = ROL64(A[0][4] ^ D[4], rhotates[3][4]);
crypto/openssl/crypto/sha/keccak1600.c
803
B[4] = ROL64(A[3][0] ^ D[0], rhotates[4][0]);
crypto/openssl/crypto/sha/keccak1600.c
811
B[0] = ROL64(A[4][4] ^ D[4], rhotates[0][4]);
crypto/openssl/crypto/sha/keccak1600.c
812
B[1] = ROL64(A[2][0] ^ D[0], rhotates[1][0]);
crypto/openssl/crypto/sha/keccak1600.c
813
B[2] = ROL64(A[0][1] ^ D[1], rhotates[2][1]);
crypto/openssl/crypto/sha/keccak1600.c
814
B[3] = ROL64(A[3][2] ^ D[2], rhotates[3][2]);
crypto/openssl/crypto/sha/keccak1600.c
815
B[4] = ROL64(A[1][3] ^ D[3], rhotates[4][3]);
crypto/openssl/crypto/sha/keccak1600.c
823
B[0] = ROL64(A[2][2] ^ D[2], rhotates[0][2]);
crypto/openssl/crypto/sha/keccak1600.c
824
B[1] = ROL64(A[0][3] ^ D[3], rhotates[1][3]);
crypto/openssl/crypto/sha/keccak1600.c
825
B[2] = ROL64(A[3][4] ^ D[4], rhotates[2][4]);
crypto/openssl/crypto/sha/keccak1600.c
826
B[3] = ROL64(A[1][0] ^ D[0], rhotates[3][0]);
crypto/openssl/crypto/sha/keccak1600.c
827
B[4] = ROL64(A[4][1] ^ D[1], rhotates[4][1]);
crypto/openssl/crypto/sha/keccak1600.c
836
D[0] = ROL64(C[1], 1) ^ C[4];
crypto/openssl/crypto/sha/keccak1600.c
837
D[1] = ROL64(C[2], 1) ^ C[0];
crypto/openssl/crypto/sha/keccak1600.c
838
D[2] = ROL64(C[3], 1) ^ C[1];
crypto/openssl/crypto/sha/keccak1600.c
839
D[3] = ROL64(C[4], 1) ^ C[2];
crypto/openssl/crypto/sha/keccak1600.c
840
D[4] = ROL64(C[0], 1) ^ C[3];
crypto/openssl/crypto/sha/keccak1600.c
842
B[0] = A[0][0] ^ D[0]; /* rotate by 0 */
crypto/openssl/crypto/sha/keccak1600.c
843
B[1] = ROL64(A[2][1] ^ D[1], rhotates[1][1]);
crypto/openssl/crypto/sha/keccak1600.c
844
B[2] = ROL64(A[4][2] ^ D[2], rhotates[2][2]);
crypto/openssl/crypto/sha/keccak1600.c
845
B[3] = ROL64(A[1][3] ^ D[3], rhotates[3][3]);
crypto/openssl/crypto/sha/keccak1600.c
846
B[4] = ROL64(A[3][4] ^ D[4], rhotates[4][4]);
crypto/openssl/crypto/sha/keccak1600.c
854
B[0] = ROL64(A[4][3] ^ D[3], rhotates[0][3]);
crypto/openssl/crypto/sha/keccak1600.c
855
B[1] = ROL64(A[1][4] ^ D[4], rhotates[1][4]);
crypto/openssl/crypto/sha/keccak1600.c
856
B[2] = ROL64(A[3][0] ^ D[0], rhotates[2][0]);
crypto/openssl/crypto/sha/keccak1600.c
857
B[3] = ROL64(A[0][1] ^ D[1], rhotates[3][1]);
crypto/openssl/crypto/sha/keccak1600.c
858
B[4] = ROL64(A[2][2] ^ D[2], rhotates[4][2]);
crypto/openssl/crypto/sha/keccak1600.c
866
B[0] = ROL64(A[3][1] ^ D[1], rhotates[0][1]);
crypto/openssl/crypto/sha/keccak1600.c
867
B[1] = ROL64(A[0][2] ^ D[2], rhotates[1][2]);
crypto/openssl/crypto/sha/keccak1600.c
868
B[2] = ROL64(A[2][3] ^ D[3], rhotates[2][3]);
crypto/openssl/crypto/sha/keccak1600.c
869
B[3] = ROL64(A[4][4] ^ D[4], rhotates[3][4]);
crypto/openssl/crypto/sha/keccak1600.c
870
B[4] = ROL64(A[1][0] ^ D[0], rhotates[4][0]);
crypto/openssl/crypto/sha/keccak1600.c
878
B[0] = ROL64(A[2][4] ^ D[4], rhotates[0][4]);
crypto/openssl/crypto/sha/keccak1600.c
879
B[1] = ROL64(A[4][0] ^ D[0], rhotates[1][0]);
crypto/openssl/crypto/sha/keccak1600.c
880
B[2] = ROL64(A[1][1] ^ D[1], rhotates[2][1]);
crypto/openssl/crypto/sha/keccak1600.c
881
B[3] = ROL64(A[3][2] ^ D[2], rhotates[3][2]);
crypto/openssl/crypto/sha/keccak1600.c
882
B[4] = ROL64(A[0][3] ^ D[3], rhotates[4][3]);
crypto/openssl/crypto/sha/keccak1600.c
890
B[0] = ROL64(A[1][2] ^ D[2], rhotates[0][2]);
crypto/openssl/crypto/sha/keccak1600.c
891
B[1] = ROL64(A[3][3] ^ D[3], rhotates[1][3]);
crypto/openssl/crypto/sha/keccak1600.c
892
B[2] = ROL64(A[0][4] ^ D[4], rhotates[2][4]);
crypto/openssl/crypto/sha/keccak1600.c
893
B[3] = ROL64(A[2][0] ^ D[0], rhotates[3][0]);
crypto/openssl/crypto/sha/keccak1600.c
894
B[4] = ROL64(A[4][1] ^ D[1], rhotates[4][1]);
crypto/openssl/crypto/sha/keccak1600.c
903
D[0] = ROL64(C[1], 1) ^ C[4];
crypto/openssl/crypto/sha/keccak1600.c
904
D[1] = ROL64(C[2], 1) ^ C[0];
crypto/openssl/crypto/sha/keccak1600.c
905
D[2] = ROL64(C[3], 1) ^ C[1];
crypto/openssl/crypto/sha/keccak1600.c
906
D[3] = ROL64(C[4], 1) ^ C[2];
crypto/openssl/crypto/sha/keccak1600.c
907
D[4] = ROL64(C[0], 1) ^ C[3];
crypto/openssl/crypto/sha/keccak1600.c
909
B[0] = A[0][0] ^ D[0]; /* rotate by 0 */
crypto/openssl/crypto/sha/keccak1600.c
910
B[1] = ROL64(A[0][1] ^ D[1], rhotates[1][1]);
crypto/openssl/crypto/sha/keccak1600.c
911
B[2] = ROL64(A[0][2] ^ D[2], rhotates[2][2]);
crypto/openssl/crypto/sha/keccak1600.c
912
B[3] = ROL64(A[0][3] ^ D[3], rhotates[3][3]);
crypto/openssl/crypto/sha/keccak1600.c
913
B[4] = ROL64(A[0][4] ^ D[4], rhotates[4][4]);
crypto/openssl/crypto/sha/keccak1600.c
921
B[0] = ROL64(A[1][3] ^ D[3], rhotates[0][3]);
crypto/openssl/crypto/sha/keccak1600.c
922
B[1] = ROL64(A[1][4] ^ D[4], rhotates[1][4]);
crypto/openssl/crypto/sha/keccak1600.c
923
B[2] = ROL64(A[1][0] ^ D[0], rhotates[2][0]);
crypto/openssl/crypto/sha/keccak1600.c
924
B[3] = ROL64(A[1][1] ^ D[1], rhotates[3][1]);
crypto/openssl/crypto/sha/keccak1600.c
925
B[4] = ROL64(A[1][2] ^ D[2], rhotates[4][2]);
crypto/openssl/crypto/sha/keccak1600.c
933
B[0] = ROL64(A[2][1] ^ D[1], rhotates[0][1]);
crypto/openssl/crypto/sha/keccak1600.c
934
B[1] = ROL64(A[2][2] ^ D[2], rhotates[1][2]);
crypto/openssl/crypto/sha/keccak1600.c
935
B[2] = ROL64(A[2][3] ^ D[3], rhotates[2][3]);
crypto/openssl/crypto/sha/keccak1600.c
936
B[3] = ROL64(A[2][4] ^ D[4], rhotates[3][4]);
crypto/openssl/crypto/sha/keccak1600.c
937
B[4] = ROL64(A[2][0] ^ D[0], rhotates[4][0]);
crypto/openssl/crypto/sha/keccak1600.c
945
B[0] = ROL64(A[3][4] ^ D[4], rhotates[0][4]);
crypto/openssl/crypto/sha/keccak1600.c
946
B[1] = ROL64(A[3][0] ^ D[0], rhotates[1][0]);
crypto/openssl/crypto/sha/keccak1600.c
947
B[2] = ROL64(A[3][1] ^ D[1], rhotates[2][1]);
crypto/openssl/crypto/sha/keccak1600.c
948
B[3] = ROL64(A[3][2] ^ D[2], rhotates[3][2]);
crypto/openssl/crypto/sha/keccak1600.c
949
B[4] = ROL64(A[3][3] ^ D[3], rhotates[4][3]);
crypto/openssl/crypto/sha/keccak1600.c
957
B[0] = ROL64(A[4][2] ^ D[2], rhotates[0][2]);
crypto/openssl/crypto/sha/keccak1600.c
958
B[1] = ROL64(A[4][3] ^ D[3], rhotates[1][3]);
crypto/openssl/crypto/sha/keccak1600.c
959
B[2] = ROL64(A[4][4] ^ D[4], rhotates[2][4]);
crypto/openssl/crypto/sha/keccak1600.c
960
B[3] = ROL64(A[4][0] ^ D[0], rhotates[3][0]);
crypto/openssl/crypto/sha/keccak1600.c
961
B[4] = ROL64(A[4][1] ^ D[1], rhotates[4][1]);
crypto/openssl/crypto/sha/sha_local.h
145
register unsigned MD32_REG_T A, B, C, D, E, T, l;
crypto/openssl/crypto/sha/sha_local.h
156
D = c->h3;
crypto/openssl/crypto/sha/sha_local.h
168
BODY_00_15(0, A, B, C, D, E, T, X(0));
crypto/openssl/crypto/sha/sha_local.h
170
BODY_00_15(1, T, A, B, C, D, E, X(1));
crypto/openssl/crypto/sha/sha_local.h
172
BODY_00_15(2, E, T, A, B, C, D, X(2));
crypto/openssl/crypto/sha/sha_local.h
174
BODY_00_15(3, D, E, T, A, B, C, X(3));
crypto/openssl/crypto/sha/sha_local.h
176
BODY_00_15(4, C, D, E, T, A, B, X(4));
crypto/openssl/crypto/sha/sha_local.h
178
BODY_00_15(5, B, C, D, E, T, A, X(5));
crypto/openssl/crypto/sha/sha_local.h
180
BODY_00_15(6, A, B, C, D, E, T, X(6));
crypto/openssl/crypto/sha/sha_local.h
182
BODY_00_15(7, T, A, B, C, D, E, X(7));
crypto/openssl/crypto/sha/sha_local.h
184
BODY_00_15(8, E, T, A, B, C, D, X(8));
crypto/openssl/crypto/sha/sha_local.h
186
BODY_00_15(9, D, E, T, A, B, C, X(9));
crypto/openssl/crypto/sha/sha_local.h
188
BODY_00_15(10, C, D, E, T, A, B, X(10));
crypto/openssl/crypto/sha/sha_local.h
190
BODY_00_15(11, B, C, D, E, T, A, X(11));
crypto/openssl/crypto/sha/sha_local.h
192
BODY_00_15(12, A, B, C, D, E, T, X(12));
crypto/openssl/crypto/sha/sha_local.h
194
BODY_00_15(13, T, A, B, C, D, E, X(13));
crypto/openssl/crypto/sha/sha_local.h
196
BODY_00_15(14, E, T, A, B, C, D, X(14));
crypto/openssl/crypto/sha/sha_local.h
197
BODY_00_15(15, D, E, T, A, B, C, X(15));
crypto/openssl/crypto/sha/sha_local.h
205
BODY_00_15(0, A, B, C, D, E, T, X(0));
crypto/openssl/crypto/sha/sha_local.h
208
BODY_00_15(1, T, A, B, C, D, E, X(1));
crypto/openssl/crypto/sha/sha_local.h
211
BODY_00_15(2, E, T, A, B, C, D, X(2));
crypto/openssl/crypto/sha/sha_local.h
214
BODY_00_15(3, D, E, T, A, B, C, X(3));
crypto/openssl/crypto/sha/sha_local.h
217
BODY_00_15(4, C, D, E, T, A, B, X(4));
crypto/openssl/crypto/sha/sha_local.h
220
BODY_00_15(5, B, C, D, E, T, A, X(5));
crypto/openssl/crypto/sha/sha_local.h
223
BODY_00_15(6, A, B, C, D, E, T, X(6));
crypto/openssl/crypto/sha/sha_local.h
226
BODY_00_15(7, T, A, B, C, D, E, X(7));
crypto/openssl/crypto/sha/sha_local.h
229
BODY_00_15(8, E, T, A, B, C, D, X(8));
crypto/openssl/crypto/sha/sha_local.h
232
BODY_00_15(9, D, E, T, A, B, C, X(9));
crypto/openssl/crypto/sha/sha_local.h
235
BODY_00_15(10, C, D, E, T, A, B, X(10));
crypto/openssl/crypto/sha/sha_local.h
238
BODY_00_15(11, B, C, D, E, T, A, X(11));
crypto/openssl/crypto/sha/sha_local.h
241
BODY_00_15(12, A, B, C, D, E, T, X(12));
crypto/openssl/crypto/sha/sha_local.h
244
BODY_00_15(13, T, A, B, C, D, E, X(13));
crypto/openssl/crypto/sha/sha_local.h
247
BODY_00_15(14, E, T, A, B, C, D, X(14));
crypto/openssl/crypto/sha/sha_local.h
248
BODY_00_15(15, D, E, T, A, B, C, X(15));
crypto/openssl/crypto/sha/sha_local.h
251
BODY_16_19(16, C, D, E, T, A, B, X(0), X(0), X(2), X(8), X(13));
crypto/openssl/crypto/sha/sha_local.h
252
BODY_16_19(17, B, C, D, E, T, A, X(1), X(1), X(3), X(9), X(14));
crypto/openssl/crypto/sha/sha_local.h
253
BODY_16_19(18, A, B, C, D, E, T, X(2), X(2), X(4), X(10), X(15));
crypto/openssl/crypto/sha/sha_local.h
254
BODY_16_19(19, T, A, B, C, D, E, X(3), X(3), X(5), X(11), X(0));
crypto/openssl/crypto/sha/sha_local.h
256
BODY_20_31(20, E, T, A, B, C, D, X(4), X(4), X(6), X(12), X(1));
crypto/openssl/crypto/sha/sha_local.h
257
BODY_20_31(21, D, E, T, A, B, C, X(5), X(5), X(7), X(13), X(2));
crypto/openssl/crypto/sha/sha_local.h
258
BODY_20_31(22, C, D, E, T, A, B, X(6), X(6), X(8), X(14), X(3));
crypto/openssl/crypto/sha/sha_local.h
259
BODY_20_31(23, B, C, D, E, T, A, X(7), X(7), X(9), X(15), X(4));
crypto/openssl/crypto/sha/sha_local.h
260
BODY_20_31(24, A, B, C, D, E, T, X(8), X(8), X(10), X(0), X(5));
crypto/openssl/crypto/sha/sha_local.h
261
BODY_20_31(25, T, A, B, C, D, E, X(9), X(9), X(11), X(1), X(6));
crypto/openssl/crypto/sha/sha_local.h
262
BODY_20_31(26, E, T, A, B, C, D, X(10), X(10), X(12), X(2), X(7));
crypto/openssl/crypto/sha/sha_local.h
263
BODY_20_31(27, D, E, T, A, B, C, X(11), X(11), X(13), X(3), X(8));
crypto/openssl/crypto/sha/sha_local.h
264
BODY_20_31(28, C, D, E, T, A, B, X(12), X(12), X(14), X(4), X(9));
crypto/openssl/crypto/sha/sha_local.h
265
BODY_20_31(29, B, C, D, E, T, A, X(13), X(13), X(15), X(5), X(10));
crypto/openssl/crypto/sha/sha_local.h
266
BODY_20_31(30, A, B, C, D, E, T, X(14), X(14), X(0), X(6), X(11));
crypto/openssl/crypto/sha/sha_local.h
267
BODY_20_31(31, T, A, B, C, D, E, X(15), X(15), X(1), X(7), X(12));
crypto/openssl/crypto/sha/sha_local.h
269
BODY_32_39(32, E, T, A, B, C, D, X(0), X(2), X(8), X(13));
crypto/openssl/crypto/sha/sha_local.h
270
BODY_32_39(33, D, E, T, A, B, C, X(1), X(3), X(9), X(14));
crypto/openssl/crypto/sha/sha_local.h
271
BODY_32_39(34, C, D, E, T, A, B, X(2), X(4), X(10), X(15));
crypto/openssl/crypto/sha/sha_local.h
272
BODY_32_39(35, B, C, D, E, T, A, X(3), X(5), X(11), X(0));
crypto/openssl/crypto/sha/sha_local.h
273
BODY_32_39(36, A, B, C, D, E, T, X(4), X(6), X(12), X(1));
crypto/openssl/crypto/sha/sha_local.h
274
BODY_32_39(37, T, A, B, C, D, E, X(5), X(7), X(13), X(2));
crypto/openssl/crypto/sha/sha_local.h
275
BODY_32_39(38, E, T, A, B, C, D, X(6), X(8), X(14), X(3));
crypto/openssl/crypto/sha/sha_local.h
276
BODY_32_39(39, D, E, T, A, B, C, X(7), X(9), X(15), X(4));
crypto/openssl/crypto/sha/sha_local.h
278
BODY_40_59(40, C, D, E, T, A, B, X(8), X(10), X(0), X(5));
crypto/openssl/crypto/sha/sha_local.h
279
BODY_40_59(41, B, C, D, E, T, A, X(9), X(11), X(1), X(6));
crypto/openssl/crypto/sha/sha_local.h
280
BODY_40_59(42, A, B, C, D, E, T, X(10), X(12), X(2), X(7));
crypto/openssl/crypto/sha/sha_local.h
281
BODY_40_59(43, T, A, B, C, D, E, X(11), X(13), X(3), X(8));
crypto/openssl/crypto/sha/sha_local.h
282
BODY_40_59(44, E, T, A, B, C, D, X(12), X(14), X(4), X(9));
crypto/openssl/crypto/sha/sha_local.h
283
BODY_40_59(45, D, E, T, A, B, C, X(13), X(15), X(5), X(10));
crypto/openssl/crypto/sha/sha_local.h
284
BODY_40_59(46, C, D, E, T, A, B, X(14), X(0), X(6), X(11));
crypto/openssl/crypto/sha/sha_local.h
285
BODY_40_59(47, B, C, D, E, T, A, X(15), X(1), X(7), X(12));
crypto/openssl/crypto/sha/sha_local.h
286
BODY_40_59(48, A, B, C, D, E, T, X(0), X(2), X(8), X(13));
crypto/openssl/crypto/sha/sha_local.h
287
BODY_40_59(49, T, A, B, C, D, E, X(1), X(3), X(9), X(14));
crypto/openssl/crypto/sha/sha_local.h
288
BODY_40_59(50, E, T, A, B, C, D, X(2), X(4), X(10), X(15));
crypto/openssl/crypto/sha/sha_local.h
289
BODY_40_59(51, D, E, T, A, B, C, X(3), X(5), X(11), X(0));
crypto/openssl/crypto/sha/sha_local.h
290
BODY_40_59(52, C, D, E, T, A, B, X(4), X(6), X(12), X(1));
crypto/openssl/crypto/sha/sha_local.h
291
BODY_40_59(53, B, C, D, E, T, A, X(5), X(7), X(13), X(2));
crypto/openssl/crypto/sha/sha_local.h
292
BODY_40_59(54, A, B, C, D, E, T, X(6), X(8), X(14), X(3));
crypto/openssl/crypto/sha/sha_local.h
293
BODY_40_59(55, T, A, B, C, D, E, X(7), X(9), X(15), X(4));
crypto/openssl/crypto/sha/sha_local.h
294
BODY_40_59(56, E, T, A, B, C, D, X(8), X(10), X(0), X(5));
crypto/openssl/crypto/sha/sha_local.h
295
BODY_40_59(57, D, E, T, A, B, C, X(9), X(11), X(1), X(6));
crypto/openssl/crypto/sha/sha_local.h
296
BODY_40_59(58, C, D, E, T, A, B, X(10), X(12), X(2), X(7));
crypto/openssl/crypto/sha/sha_local.h
297
BODY_40_59(59, B, C, D, E, T, A, X(11), X(13), X(3), X(8));
crypto/openssl/crypto/sha/sha_local.h
299
BODY_60_79(60, A, B, C, D, E, T, X(12), X(14), X(4), X(9));
crypto/openssl/crypto/sha/sha_local.h
300
BODY_60_79(61, T, A, B, C, D, E, X(13), X(15), X(5), X(10));
crypto/openssl/crypto/sha/sha_local.h
301
BODY_60_79(62, E, T, A, B, C, D, X(14), X(0), X(6), X(11));
crypto/openssl/crypto/sha/sha_local.h
302
BODY_60_79(63, D, E, T, A, B, C, X(15), X(1), X(7), X(12));
crypto/openssl/crypto/sha/sha_local.h
303
BODY_60_79(64, C, D, E, T, A, B, X(0), X(2), X(8), X(13));
crypto/openssl/crypto/sha/sha_local.h
304
BODY_60_79(65, B, C, D, E, T, A, X(1), X(3), X(9), X(14));
crypto/openssl/crypto/sha/sha_local.h
305
BODY_60_79(66, A, B, C, D, E, T, X(2), X(4), X(10), X(15));
crypto/openssl/crypto/sha/sha_local.h
306
BODY_60_79(67, T, A, B, C, D, E, X(3), X(5), X(11), X(0));
crypto/openssl/crypto/sha/sha_local.h
307
BODY_60_79(68, E, T, A, B, C, D, X(4), X(6), X(12), X(1));
crypto/openssl/crypto/sha/sha_local.h
308
BODY_60_79(69, D, E, T, A, B, C, X(5), X(7), X(13), X(2));
crypto/openssl/crypto/sha/sha_local.h
309
BODY_60_79(70, C, D, E, T, A, B, X(6), X(8), X(14), X(3));
crypto/openssl/crypto/sha/sha_local.h
310
BODY_60_79(71, B, C, D, E, T, A, X(7), X(9), X(15), X(4));
crypto/openssl/crypto/sha/sha_local.h
311
BODY_60_79(72, A, B, C, D, E, T, X(8), X(10), X(0), X(5));
crypto/openssl/crypto/sha/sha_local.h
312
BODY_60_79(73, T, A, B, C, D, E, X(9), X(11), X(1), X(6));
crypto/openssl/crypto/sha/sha_local.h
313
BODY_60_79(74, E, T, A, B, C, D, X(10), X(12), X(2), X(7));
crypto/openssl/crypto/sha/sha_local.h
314
BODY_60_79(75, D, E, T, A, B, C, X(11), X(13), X(3), X(8));
crypto/openssl/crypto/sha/sha_local.h
315
BODY_60_79(76, C, D, E, T, A, B, X(12), X(14), X(4), X(9));
crypto/openssl/crypto/sha/sha_local.h
316
BODY_60_79(77, B, C, D, E, T, A, X(13), X(15), X(5), X(10));
crypto/openssl/crypto/sha/sha_local.h
317
BODY_60_79(78, A, B, C, D, E, T, X(14), X(0), X(6), X(11));
crypto/openssl/crypto/sha/sha_local.h
318
BODY_60_79(79, T, A, B, C, D, E, X(15), X(1), X(7), X(12));
crypto/openssl/crypto/sha/sha_local.h
332
D = c->h3;
crypto/openssl/crypto/sha/sha_local.h
342
T = E + K_00_19 + F_00_19(B, C, D); \
crypto/openssl/crypto/sha/sha_local.h
343
E = D, D = C, C = ROTATE(B, 30), B = A; \
crypto/openssl/crypto/sha/sha_local.h
350
T += E + K_00_19 + F_00_19(B, C, D); \
crypto/openssl/crypto/sha/sha_local.h
351
E = D, D = C, C = ROTATE(B, 30), B = A; \
crypto/openssl/crypto/sha/sha_local.h
358
T += E + K_20_39 + F_20_39(B, C, D); \
crypto/openssl/crypto/sha/sha_local.h
359
E = D, D = C, C = ROTATE(B, 30), B = A; \
crypto/openssl/crypto/sha/sha_local.h
366
T += E + K_40_59 + F_40_59(B, C, D); \
crypto/openssl/crypto/sha/sha_local.h
367
E = D, D = C, C = ROTATE(B, 30), B = A; \
crypto/openssl/crypto/sha/sha_local.h
374
T = E + K_60_79 + F_60_79(B, C, D); \
crypto/openssl/crypto/sha/sha_local.h
375
E = D, D = C, C = ROTATE(B, 30), B = A; \
crypto/openssl/crypto/sha/sha_local.h
383
register unsigned MD32_REG_T A, B, C, D, E, T, l;
crypto/openssl/crypto/sha/sha_local.h
390
D = c->h3;
crypto/openssl/crypto/sha/sha_local.h
418
c->h3 = (c->h3 + D) & 0xffffffffL;
crypto/openssl/crypto/sha/sha_local.h
427
D = c->h3;
crypto/openssl/crypto/sm3/sm3.c
101
R2(A, B, C, D, E, F, G, H, 0x9D8A7A87, W00, W00 ^ W04);
crypto/openssl/crypto/sm3/sm3.c
103
R2(D, A, B, C, H, E, F, G, 0x3B14F50F, W01, W01 ^ W05);
crypto/openssl/crypto/sm3/sm3.c
105
R2(C, D, A, B, G, H, E, F, 0x7629EA1E, W02, W02 ^ W06);
crypto/openssl/crypto/sm3/sm3.c
107
R2(B, C, D, A, F, G, H, E, 0xEC53D43C, W03, W03 ^ W07);
crypto/openssl/crypto/sm3/sm3.c
109
R2(A, B, C, D, E, F, G, H, 0xD8A7A879, W04, W04 ^ W08);
crypto/openssl/crypto/sm3/sm3.c
111
R2(D, A, B, C, H, E, F, G, 0xB14F50F3, W05, W05 ^ W09);
crypto/openssl/crypto/sm3/sm3.c
113
R2(C, D, A, B, G, H, E, F, 0x629EA1E7, W06, W06 ^ W10);
crypto/openssl/crypto/sm3/sm3.c
115
R2(B, C, D, A, F, G, H, E, 0xC53D43CE, W07, W07 ^ W11);
crypto/openssl/crypto/sm3/sm3.c
117
R2(A, B, C, D, E, F, G, H, 0x8A7A879D, W08, W08 ^ W12);
crypto/openssl/crypto/sm3/sm3.c
119
R2(D, A, B, C, H, E, F, G, 0x14F50F3B, W09, W09 ^ W13);
crypto/openssl/crypto/sm3/sm3.c
121
R2(C, D, A, B, G, H, E, F, 0x29EA1E76, W10, W10 ^ W14);
crypto/openssl/crypto/sm3/sm3.c
123
R2(B, C, D, A, F, G, H, E, 0x53D43CEC, W11, W11 ^ W15);
crypto/openssl/crypto/sm3/sm3.c
125
R2(A, B, C, D, E, F, G, H, 0xA7A879D8, W12, W12 ^ W00);
crypto/openssl/crypto/sm3/sm3.c
127
R2(D, A, B, C, H, E, F, G, 0x4F50F3B1, W13, W13 ^ W01);
crypto/openssl/crypto/sm3/sm3.c
129
R2(C, D, A, B, G, H, E, F, 0x9EA1E762, W14, W14 ^ W02);
crypto/openssl/crypto/sm3/sm3.c
131
R2(B, C, D, A, F, G, H, E, 0x3D43CEC5, W15, W15 ^ W03);
crypto/openssl/crypto/sm3/sm3.c
133
R2(A, B, C, D, E, F, G, H, 0x7A879D8A, W00, W00 ^ W04);
crypto/openssl/crypto/sm3/sm3.c
135
R2(D, A, B, C, H, E, F, G, 0xF50F3B14, W01, W01 ^ W05);
crypto/openssl/crypto/sm3/sm3.c
137
R2(C, D, A, B, G, H, E, F, 0xEA1E7629, W02, W02 ^ W06);
crypto/openssl/crypto/sm3/sm3.c
139
R2(B, C, D, A, F, G, H, E, 0xD43CEC53, W03, W03 ^ W07);
crypto/openssl/crypto/sm3/sm3.c
141
R2(A, B, C, D, E, F, G, H, 0xA879D8A7, W04, W04 ^ W08);
crypto/openssl/crypto/sm3/sm3.c
143
R2(D, A, B, C, H, E, F, G, 0x50F3B14F, W05, W05 ^ W09);
crypto/openssl/crypto/sm3/sm3.c
145
R2(C, D, A, B, G, H, E, F, 0xA1E7629E, W06, W06 ^ W10);
crypto/openssl/crypto/sm3/sm3.c
147
R2(B, C, D, A, F, G, H, E, 0x43CEC53D, W07, W07 ^ W11);
crypto/openssl/crypto/sm3/sm3.c
149
R2(A, B, C, D, E, F, G, H, 0x879D8A7A, W08, W08 ^ W12);
crypto/openssl/crypto/sm3/sm3.c
151
R2(D, A, B, C, H, E, F, G, 0x0F3B14F5, W09, W09 ^ W13);
crypto/openssl/crypto/sm3/sm3.c
153
R2(C, D, A, B, G, H, E, F, 0x1E7629EA, W10, W10 ^ W14);
crypto/openssl/crypto/sm3/sm3.c
155
R2(B, C, D, A, F, G, H, E, 0x3CEC53D4, W11, W11 ^ W15);
crypto/openssl/crypto/sm3/sm3.c
157
R2(A, B, C, D, E, F, G, H, 0x79D8A7A8, W12, W12 ^ W00);
crypto/openssl/crypto/sm3/sm3.c
159
R2(D, A, B, C, H, E, F, G, 0xF3B14F50, W13, W13 ^ W01);
crypto/openssl/crypto/sm3/sm3.c
161
R2(C, D, A, B, G, H, E, F, 0xE7629EA1, W14, W14 ^ W02);
crypto/openssl/crypto/sm3/sm3.c
163
R2(B, C, D, A, F, G, H, E, 0xCEC53D43, W15, W15 ^ W03);
crypto/openssl/crypto/sm3/sm3.c
165
R2(A, B, C, D, E, F, G, H, 0x9D8A7A87, W00, W00 ^ W04);
crypto/openssl/crypto/sm3/sm3.c
167
R2(D, A, B, C, H, E, F, G, 0x3B14F50F, W01, W01 ^ W05);
crypto/openssl/crypto/sm3/sm3.c
169
R2(C, D, A, B, G, H, E, F, 0x7629EA1E, W02, W02 ^ W06);
crypto/openssl/crypto/sm3/sm3.c
171
R2(B, C, D, A, F, G, H, E, 0xEC53D43C, W03, W03 ^ W07);
crypto/openssl/crypto/sm3/sm3.c
173
R2(A, B, C, D, E, F, G, H, 0xD8A7A879, W04, W04 ^ W08);
crypto/openssl/crypto/sm3/sm3.c
174
R2(D, A, B, C, H, E, F, G, 0xB14F50F3, W05, W05 ^ W09);
crypto/openssl/crypto/sm3/sm3.c
175
R2(C, D, A, B, G, H, E, F, 0x629EA1E7, W06, W06 ^ W10);
crypto/openssl/crypto/sm3/sm3.c
176
R2(B, C, D, A, F, G, H, E, 0xC53D43CE, W07, W07 ^ W11);
crypto/openssl/crypto/sm3/sm3.c
177
R2(A, B, C, D, E, F, G, H, 0x8A7A879D, W08, W08 ^ W12);
crypto/openssl/crypto/sm3/sm3.c
178
R2(D, A, B, C, H, E, F, G, 0x14F50F3B, W09, W09 ^ W13);
crypto/openssl/crypto/sm3/sm3.c
179
R2(C, D, A, B, G, H, E, F, 0x29EA1E76, W10, W10 ^ W14);
crypto/openssl/crypto/sm3/sm3.c
180
R2(B, C, D, A, F, G, H, E, 0x53D43CEC, W11, W11 ^ W15);
crypto/openssl/crypto/sm3/sm3.c
181
R2(A, B, C, D, E, F, G, H, 0xA7A879D8, W12, W12 ^ W00);
crypto/openssl/crypto/sm3/sm3.c
182
R2(D, A, B, C, H, E, F, G, 0x4F50F3B1, W13, W13 ^ W01);
crypto/openssl/crypto/sm3/sm3.c
183
R2(C, D, A, B, G, H, E, F, 0x9EA1E762, W14, W14 ^ W02);
crypto/openssl/crypto/sm3/sm3.c
184
R2(B, C, D, A, F, G, H, E, 0x3D43CEC5, W15, W15 ^ W03);
crypto/openssl/crypto/sm3/sm3.c
189
ctx->D ^= D;
crypto/openssl/crypto/sm3/sm3.c
21
c->D = SM3_D;
crypto/openssl/crypto/sm3/sm3.c
32
register unsigned MD32_REG_T A, B, C, D, E, F, G, H;
crypto/openssl/crypto/sm3/sm3.c
42
D = ctx->D;
crypto/openssl/crypto/sm3/sm3.c
69
R1(A, B, C, D, E, F, G, H, 0x79CC4519, W00, W00 ^ W04);
crypto/openssl/crypto/sm3/sm3.c
71
R1(D, A, B, C, H, E, F, G, 0xF3988A32, W01, W01 ^ W05);
crypto/openssl/crypto/sm3/sm3.c
73
R1(C, D, A, B, G, H, E, F, 0xE7311465, W02, W02 ^ W06);
crypto/openssl/crypto/sm3/sm3.c
75
R1(B, C, D, A, F, G, H, E, 0xCE6228CB, W03, W03 ^ W07);
crypto/openssl/crypto/sm3/sm3.c
77
R1(A, B, C, D, E, F, G, H, 0x9CC45197, W04, W04 ^ W08);
crypto/openssl/crypto/sm3/sm3.c
79
R1(D, A, B, C, H, E, F, G, 0x3988A32F, W05, W05 ^ W09);
crypto/openssl/crypto/sm3/sm3.c
81
R1(C, D, A, B, G, H, E, F, 0x7311465E, W06, W06 ^ W10);
crypto/openssl/crypto/sm3/sm3.c
83
R1(B, C, D, A, F, G, H, E, 0xE6228CBC, W07, W07 ^ W11);
crypto/openssl/crypto/sm3/sm3.c
85
R1(A, B, C, D, E, F, G, H, 0xCC451979, W08, W08 ^ W12);
crypto/openssl/crypto/sm3/sm3.c
87
R1(D, A, B, C, H, E, F, G, 0x988A32F3, W09, W09 ^ W13);
crypto/openssl/crypto/sm3/sm3.c
89
R1(C, D, A, B, G, H, E, F, 0x311465E7, W10, W10 ^ W14);
crypto/openssl/crypto/sm3/sm3.c
91
R1(B, C, D, A, F, G, H, E, 0x6228CBCE, W11, W11 ^ W15);
crypto/openssl/crypto/sm3/sm3.c
93
R1(A, B, C, D, E, F, G, H, 0xC451979C, W12, W12 ^ W00);
crypto/openssl/crypto/sm3/sm3.c
95
R1(D, A, B, C, H, E, F, G, 0x88A32F39, W13, W13 ^ W01);
crypto/openssl/crypto/sm3/sm3.c
97
R1(C, D, A, B, G, H, E, F, 0x11465E73, W14, W14 ^ W02);
crypto/openssl/crypto/sm3/sm3.c
99
R1(B, C, D, A, F, G, H, E, 0x228CBCE6, W15, W15 ^ W03);
crypto/openssl/crypto/sm3/sm3_local.h
100
#define RND(A, B, C, D, E, F, G, H, TJ, Wi, Wj, FF, GG) \
crypto/openssl/crypto/sm3/sm3_local.h
105
const SM3_WORD TT1 = FF(A, B, C) + D + (SS1 ^ A12) + (Wj); \
crypto/openssl/crypto/sm3/sm3_local.h
108
D = TT1; \
crypto/openssl/crypto/sm3/sm3_local.h
113
#define R1(A, B, C, D, E, F, G, H, TJ, Wi, Wj) \
crypto/openssl/crypto/sm3/sm3_local.h
114
RND(A, B, C, D, E, F, G, H, TJ, Wi, Wj, FF0, GG0)
crypto/openssl/crypto/sm3/sm3_local.h
116
#define R2(A, B, C, D, E, F, G, H, TJ, Wi, Wj) \
crypto/openssl/crypto/sm3/sm3_local.h
117
RND(A, B, C, D, E, F, G, H, TJ, Wi, Wj, FF1, GG1)
crypto/openssl/crypto/sm3/sm3_local.h
32
ll = (c)->D; \
crypto/openssl/include/internal/sm3.h
29
SM3_WORD A, B, C, D, E, F, G, H;
crypto/openssl/include/openssl/md4.h
43
MD4_LONG A, B, C, D;
crypto/openssl/include/openssl/md5.h
42
MD5_LONG A, B, C, D;
crypto/openssl/include/openssl/ripemd.h
38
RIPEMD160_LONG A, B, C, D, E;
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
103
unsigned int A[8], B[8], C[8], D[8], E[8];
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
190
mctx->D[i] = sctx->md.h3;
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
297
blocks[i].d[3] = BSWAP4(mctx->D[i]);
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
298
mctx->D[i] = sctx->tail.h3;
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
310
PUTU32(blocks[i].c + 12, mctx->D[i]);
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
311
mctx->D[i] = sctx->tail.h3;
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
337
PUTU32(out + 12, mctx->D[i]);
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
107
unsigned int A[8], B[8], C[8], D[8], E[8], F[8], G[8], H[8];
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
195
mctx->D[i] = sctx->md.h[3];
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
305
blocks[i].d[3] = BSWAP4(mctx->D[i]);
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
306
mctx->D[i] = sctx->tail.h[3];
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
324
PUTU32(blocks[i].c + 12, mctx->D[i]);
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
325
mctx->D[i] = sctx->tail.h[3];
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
357
PUTU32(out + 12, mctx->D[i]);
crypto/openssl/providers/implementations/kdfs/pkcs12kdf.c
131
OPENSSL_free(D);
crypto/openssl/providers/implementations/kdfs/pkcs12kdf.c
54
unsigned char *B = NULL, *D = NULL, *I = NULL, *p = NULL, *Ai = NULL;
crypto/openssl/providers/implementations/kdfs/pkcs12kdf.c
74
D = OPENSSL_malloc(v);
crypto/openssl/providers/implementations/kdfs/pkcs12kdf.c
84
if (D == NULL || Ai == NULL || B == NULL || I == NULL)
crypto/openssl/providers/implementations/kdfs/pkcs12kdf.c
87
D[i] = id;
crypto/openssl/providers/implementations/kdfs/pkcs12kdf.c
95
|| !EVP_DigestUpdate(ctx, D, v)
crypto/openssl/ssl/record/methods/ssl3_cbc.c
71
u32toLE(md5->D, md_out);
crypto/openssl/test/evp_pkey_provided_test.c
373
OSSL_PARAM_ulong(OSSL_PKEY_PARAM_RSA_D, &key_numbers[D]),
crypto/openssl/test/keymgmt_internal_test.c
114
|| !TEST_true(get_ulong_via_BN(p, &keydata[D])))
crypto/openssl/test/keymgmt_internal_test.c
187
|| !TEST_true(BN_set_word(bn3, expected[D]))
lib/clang/liblldb/LLDBWrapLua.cpp
848
#define SWIG_LUA_CONSTTAB_POINTER(B,C,D)\
lib/clang/liblldb/LLDBWrapLua.cpp
849
LSTRKEY(B), {LUA_TUSERDATA, { .userdata={0,0,(void*)(C),&D} } }
lib/clang/liblldb/LLDBWrapLua.cpp
851
#define SWIG_LUA_CONSTTAB_BINARY(B,S,C,D)\
lib/clang/liblldb/LLDBWrapLua.cpp
852
LSTRKEY(B), {LUA_TUSERDATA, { .userdata={1,S,(void*)(C),&D} } }
lib/clang/liblldb/LLDBWrapLua.cpp
864
#define SWIG_LUA_CONSTTAB_POINTER(B,C,D) LSTRKEY(B), LNILVAL
lib/clang/liblldb/LLDBWrapLua.cpp
869
#define SWIG_LUA_CONSTTAB_BINARY(B, S, C, D) LSTRKEY(B), LNILVAL
lib/clang/liblldb/LLDBWrapLua.cpp
876
# define SWIG_LUA_CONSTTAB_POINTER(B,C,D)\
lib/clang/liblldb/LLDBWrapLua.cpp
877
SWIG_LUA_POINTER, (char *)B, 0, 0, (void *)C, &D
lib/clang/liblldb/LLDBWrapLua.cpp
878
# define SWIG_LUA_CONSTTAB_BINARY(B, S, C, D)\
lib/clang/liblldb/LLDBWrapLua.cpp
879
SWIG_LUA_BINARY, (char *)B, S, 0, (void *)C, &D
lib/libc/db/hash/page.h
72
#define PAIRSIZE(K,D) (2*sizeof(u_int16_t) + (K)->size + (D)->size)
lib/libc/db/hash/page.h
78
#define PAIRFITS(P,K,D) \
lib/libc/db/hash/page.h
80
(PAIRSIZE((K),(D)) + OVFLSIZE) <= FREESPACE((P)))
lib/libmd/ripemd.h
75
u_int32_t A,B,C,D,E;
lib/libmd/rmd160c.c
268
u_int32_t A,B,C,D,E;
lib/libmd/rmd160c.c
273
A=ctx->A; B=ctx->B; C=ctx->C; D=ctx->D; E=ctx->E;
lib/libmd/rmd160c.c
275
RIP1(A,B,C,D,E,WL00,SL00);
lib/libmd/rmd160c.c
276
RIP1(E,A,B,C,D,WL01,SL01);
lib/libmd/rmd160c.c
277
RIP1(D,E,A,B,C,WL02,SL02);
lib/libmd/rmd160c.c
278
RIP1(C,D,E,A,B,WL03,SL03);
lib/libmd/rmd160c.c
279
RIP1(B,C,D,E,A,WL04,SL04);
lib/libmd/rmd160c.c
280
RIP1(A,B,C,D,E,WL05,SL05);
lib/libmd/rmd160c.c
281
RIP1(E,A,B,C,D,WL06,SL06);
lib/libmd/rmd160c.c
282
RIP1(D,E,A,B,C,WL07,SL07);
lib/libmd/rmd160c.c
283
RIP1(C,D,E,A,B,WL08,SL08);
lib/libmd/rmd160c.c
284
RIP1(B,C,D,E,A,WL09,SL09);
lib/libmd/rmd160c.c
285
RIP1(A,B,C,D,E,WL10,SL10);
lib/libmd/rmd160c.c
286
RIP1(E,A,B,C,D,WL11,SL11);
lib/libmd/rmd160c.c
287
RIP1(D,E,A,B,C,WL12,SL12);
lib/libmd/rmd160c.c
288
RIP1(C,D,E,A,B,WL13,SL13);
lib/libmd/rmd160c.c
289
RIP1(B,C,D,E,A,WL14,SL14);
lib/libmd/rmd160c.c
290
RIP1(A,B,C,D,E,WL15,SL15);
lib/libmd/rmd160c.c
292
RIP2(E,A,B,C,D,WL16,SL16,KL1);
lib/libmd/rmd160c.c
293
RIP2(D,E,A,B,C,WL17,SL17,KL1);
lib/libmd/rmd160c.c
294
RIP2(C,D,E,A,B,WL18,SL18,KL1);
lib/libmd/rmd160c.c
295
RIP2(B,C,D,E,A,WL19,SL19,KL1);
lib/libmd/rmd160c.c
296
RIP2(A,B,C,D,E,WL20,SL20,KL1);
lib/libmd/rmd160c.c
297
RIP2(E,A,B,C,D,WL21,SL21,KL1);
lib/libmd/rmd160c.c
298
RIP2(D,E,A,B,C,WL22,SL22,KL1);
lib/libmd/rmd160c.c
299
RIP2(C,D,E,A,B,WL23,SL23,KL1);
lib/libmd/rmd160c.c
300
RIP2(B,C,D,E,A,WL24,SL24,KL1);
lib/libmd/rmd160c.c
301
RIP2(A,B,C,D,E,WL25,SL25,KL1);
lib/libmd/rmd160c.c
302
RIP2(E,A,B,C,D,WL26,SL26,KL1);
lib/libmd/rmd160c.c
303
RIP2(D,E,A,B,C,WL27,SL27,KL1);
lib/libmd/rmd160c.c
304
RIP2(C,D,E,A,B,WL28,SL28,KL1);
lib/libmd/rmd160c.c
305
RIP2(B,C,D,E,A,WL29,SL29,KL1);
lib/libmd/rmd160c.c
306
RIP2(A,B,C,D,E,WL30,SL30,KL1);
lib/libmd/rmd160c.c
307
RIP2(E,A,B,C,D,WL31,SL31,KL1);
lib/libmd/rmd160c.c
309
RIP3(D,E,A,B,C,WL32,SL32,KL2);
lib/libmd/rmd160c.c
310
RIP3(C,D,E,A,B,WL33,SL33,KL2);
lib/libmd/rmd160c.c
311
RIP3(B,C,D,E,A,WL34,SL34,KL2);
lib/libmd/rmd160c.c
312
RIP3(A,B,C,D,E,WL35,SL35,KL2);
lib/libmd/rmd160c.c
313
RIP3(E,A,B,C,D,WL36,SL36,KL2);
lib/libmd/rmd160c.c
314
RIP3(D,E,A,B,C,WL37,SL37,KL2);
lib/libmd/rmd160c.c
315
RIP3(C,D,E,A,B,WL38,SL38,KL2);
lib/libmd/rmd160c.c
316
RIP3(B,C,D,E,A,WL39,SL39,KL2);
lib/libmd/rmd160c.c
317
RIP3(A,B,C,D,E,WL40,SL40,KL2);
lib/libmd/rmd160c.c
318
RIP3(E,A,B,C,D,WL41,SL41,KL2);
lib/libmd/rmd160c.c
319
RIP3(D,E,A,B,C,WL42,SL42,KL2);
lib/libmd/rmd160c.c
320
RIP3(C,D,E,A,B,WL43,SL43,KL2);
lib/libmd/rmd160c.c
321
RIP3(B,C,D,E,A,WL44,SL44,KL2);
lib/libmd/rmd160c.c
322
RIP3(A,B,C,D,E,WL45,SL45,KL2);
lib/libmd/rmd160c.c
323
RIP3(E,A,B,C,D,WL46,SL46,KL2);
lib/libmd/rmd160c.c
324
RIP3(D,E,A,B,C,WL47,SL47,KL2);
lib/libmd/rmd160c.c
326
RIP4(C,D,E,A,B,WL48,SL48,KL3);
lib/libmd/rmd160c.c
327
RIP4(B,C,D,E,A,WL49,SL49,KL3);
lib/libmd/rmd160c.c
328
RIP4(A,B,C,D,E,WL50,SL50,KL3);
lib/libmd/rmd160c.c
329
RIP4(E,A,B,C,D,WL51,SL51,KL3);
lib/libmd/rmd160c.c
330
RIP4(D,E,A,B,C,WL52,SL52,KL3);
lib/libmd/rmd160c.c
331
RIP4(C,D,E,A,B,WL53,SL53,KL3);
lib/libmd/rmd160c.c
332
RIP4(B,C,D,E,A,WL54,SL54,KL3);
lib/libmd/rmd160c.c
333
RIP4(A,B,C,D,E,WL55,SL55,KL3);
lib/libmd/rmd160c.c
334
RIP4(E,A,B,C,D,WL56,SL56,KL3);
lib/libmd/rmd160c.c
335
RIP4(D,E,A,B,C,WL57,SL57,KL3);
lib/libmd/rmd160c.c
336
RIP4(C,D,E,A,B,WL58,SL58,KL3);
lib/libmd/rmd160c.c
337
RIP4(B,C,D,E,A,WL59,SL59,KL3);
lib/libmd/rmd160c.c
338
RIP4(A,B,C,D,E,WL60,SL60,KL3);
lib/libmd/rmd160c.c
339
RIP4(E,A,B,C,D,WL61,SL61,KL3);
lib/libmd/rmd160c.c
340
RIP4(D,E,A,B,C,WL62,SL62,KL3);
lib/libmd/rmd160c.c
341
RIP4(C,D,E,A,B,WL63,SL63,KL3);
lib/libmd/rmd160c.c
343
RIP5(B,C,D,E,A,WL64,SL64,KL4);
lib/libmd/rmd160c.c
344
RIP5(A,B,C,D,E,WL65,SL65,KL4);
lib/libmd/rmd160c.c
345
RIP5(E,A,B,C,D,WL66,SL66,KL4);
lib/libmd/rmd160c.c
346
RIP5(D,E,A,B,C,WL67,SL67,KL4);
lib/libmd/rmd160c.c
347
RIP5(C,D,E,A,B,WL68,SL68,KL4);
lib/libmd/rmd160c.c
348
RIP5(B,C,D,E,A,WL69,SL69,KL4);
lib/libmd/rmd160c.c
349
RIP5(A,B,C,D,E,WL70,SL70,KL4);
lib/libmd/rmd160c.c
350
RIP5(E,A,B,C,D,WL71,SL71,KL4);
lib/libmd/rmd160c.c
351
RIP5(D,E,A,B,C,WL72,SL72,KL4);
lib/libmd/rmd160c.c
352
RIP5(C,D,E,A,B,WL73,SL73,KL4);
lib/libmd/rmd160c.c
353
RIP5(B,C,D,E,A,WL74,SL74,KL4);
lib/libmd/rmd160c.c
354
RIP5(A,B,C,D,E,WL75,SL75,KL4);
lib/libmd/rmd160c.c
355
RIP5(E,A,B,C,D,WL76,SL76,KL4);
lib/libmd/rmd160c.c
356
RIP5(D,E,A,B,C,WL77,SL77,KL4);
lib/libmd/rmd160c.c
357
RIP5(C,D,E,A,B,WL78,SL78,KL4);
lib/libmd/rmd160c.c
358
RIP5(B,C,D,E,A,WL79,SL79,KL4);
lib/libmd/rmd160c.c
360
a=A; b=B; c=C; d=D; e=E;
lib/libmd/rmd160c.c
362
A=ctx->A; B=ctx->B; C=ctx->C; D=ctx->D; E=ctx->E;
lib/libmd/rmd160c.c
364
RIP5(A,B,C,D,E,WR00,SR00,KR0);
lib/libmd/rmd160c.c
365
RIP5(E,A,B,C,D,WR01,SR01,KR0);
lib/libmd/rmd160c.c
366
RIP5(D,E,A,B,C,WR02,SR02,KR0);
lib/libmd/rmd160c.c
367
RIP5(C,D,E,A,B,WR03,SR03,KR0);
lib/libmd/rmd160c.c
368
RIP5(B,C,D,E,A,WR04,SR04,KR0);
lib/libmd/rmd160c.c
369
RIP5(A,B,C,D,E,WR05,SR05,KR0);
lib/libmd/rmd160c.c
370
RIP5(E,A,B,C,D,WR06,SR06,KR0);
lib/libmd/rmd160c.c
371
RIP5(D,E,A,B,C,WR07,SR07,KR0);
lib/libmd/rmd160c.c
372
RIP5(C,D,E,A,B,WR08,SR08,KR0);
lib/libmd/rmd160c.c
373
RIP5(B,C,D,E,A,WR09,SR09,KR0);
lib/libmd/rmd160c.c
374
RIP5(A,B,C,D,E,WR10,SR10,KR0);
lib/libmd/rmd160c.c
375
RIP5(E,A,B,C,D,WR11,SR11,KR0);
lib/libmd/rmd160c.c
376
RIP5(D,E,A,B,C,WR12,SR12,KR0);
lib/libmd/rmd160c.c
377
RIP5(C,D,E,A,B,WR13,SR13,KR0);
lib/libmd/rmd160c.c
378
RIP5(B,C,D,E,A,WR14,SR14,KR0);
lib/libmd/rmd160c.c
379
RIP5(A,B,C,D,E,WR15,SR15,KR0);
lib/libmd/rmd160c.c
381
RIP4(E,A,B,C,D,WR16,SR16,KR1);
lib/libmd/rmd160c.c
382
RIP4(D,E,A,B,C,WR17,SR17,KR1);
lib/libmd/rmd160c.c
383
RIP4(C,D,E,A,B,WR18,SR18,KR1);
lib/libmd/rmd160c.c
384
RIP4(B,C,D,E,A,WR19,SR19,KR1);
lib/libmd/rmd160c.c
385
RIP4(A,B,C,D,E,WR20,SR20,KR1);
lib/libmd/rmd160c.c
386
RIP4(E,A,B,C,D,WR21,SR21,KR1);
lib/libmd/rmd160c.c
387
RIP4(D,E,A,B,C,WR22,SR22,KR1);
lib/libmd/rmd160c.c
388
RIP4(C,D,E,A,B,WR23,SR23,KR1);
lib/libmd/rmd160c.c
389
RIP4(B,C,D,E,A,WR24,SR24,KR1);
lib/libmd/rmd160c.c
390
RIP4(A,B,C,D,E,WR25,SR25,KR1);
lib/libmd/rmd160c.c
391
RIP4(E,A,B,C,D,WR26,SR26,KR1);
lib/libmd/rmd160c.c
392
RIP4(D,E,A,B,C,WR27,SR27,KR1);
lib/libmd/rmd160c.c
393
RIP4(C,D,E,A,B,WR28,SR28,KR1);
lib/libmd/rmd160c.c
394
RIP4(B,C,D,E,A,WR29,SR29,KR1);
lib/libmd/rmd160c.c
395
RIP4(A,B,C,D,E,WR30,SR30,KR1);
lib/libmd/rmd160c.c
396
RIP4(E,A,B,C,D,WR31,SR31,KR1);
lib/libmd/rmd160c.c
398
RIP3(D,E,A,B,C,WR32,SR32,KR2);
lib/libmd/rmd160c.c
399
RIP3(C,D,E,A,B,WR33,SR33,KR2);
lib/libmd/rmd160c.c
400
RIP3(B,C,D,E,A,WR34,SR34,KR2);
lib/libmd/rmd160c.c
401
RIP3(A,B,C,D,E,WR35,SR35,KR2);
lib/libmd/rmd160c.c
402
RIP3(E,A,B,C,D,WR36,SR36,KR2);
lib/libmd/rmd160c.c
403
RIP3(D,E,A,B,C,WR37,SR37,KR2);
lib/libmd/rmd160c.c
404
RIP3(C,D,E,A,B,WR38,SR38,KR2);
lib/libmd/rmd160c.c
405
RIP3(B,C,D,E,A,WR39,SR39,KR2);
lib/libmd/rmd160c.c
406
RIP3(A,B,C,D,E,WR40,SR40,KR2);
lib/libmd/rmd160c.c
407
RIP3(E,A,B,C,D,WR41,SR41,KR2);
lib/libmd/rmd160c.c
408
RIP3(D,E,A,B,C,WR42,SR42,KR2);
lib/libmd/rmd160c.c
409
RIP3(C,D,E,A,B,WR43,SR43,KR2);
lib/libmd/rmd160c.c
410
RIP3(B,C,D,E,A,WR44,SR44,KR2);
lib/libmd/rmd160c.c
411
RIP3(A,B,C,D,E,WR45,SR45,KR2);
lib/libmd/rmd160c.c
412
RIP3(E,A,B,C,D,WR46,SR46,KR2);
lib/libmd/rmd160c.c
413
RIP3(D,E,A,B,C,WR47,SR47,KR2);
lib/libmd/rmd160c.c
415
RIP2(C,D,E,A,B,WR48,SR48,KR3);
lib/libmd/rmd160c.c
416
RIP2(B,C,D,E,A,WR49,SR49,KR3);
lib/libmd/rmd160c.c
417
RIP2(A,B,C,D,E,WR50,SR50,KR3);
lib/libmd/rmd160c.c
418
RIP2(E,A,B,C,D,WR51,SR51,KR3);
lib/libmd/rmd160c.c
419
RIP2(D,E,A,B,C,WR52,SR52,KR3);
lib/libmd/rmd160c.c
420
RIP2(C,D,E,A,B,WR53,SR53,KR3);
lib/libmd/rmd160c.c
421
RIP2(B,C,D,E,A,WR54,SR54,KR3);
lib/libmd/rmd160c.c
422
RIP2(A,B,C,D,E,WR55,SR55,KR3);
lib/libmd/rmd160c.c
423
RIP2(E,A,B,C,D,WR56,SR56,KR3);
lib/libmd/rmd160c.c
424
RIP2(D,E,A,B,C,WR57,SR57,KR3);
lib/libmd/rmd160c.c
425
RIP2(C,D,E,A,B,WR58,SR58,KR3);
lib/libmd/rmd160c.c
426
RIP2(B,C,D,E,A,WR59,SR59,KR3);
lib/libmd/rmd160c.c
427
RIP2(A,B,C,D,E,WR60,SR60,KR3);
lib/libmd/rmd160c.c
428
RIP2(E,A,B,C,D,WR61,SR61,KR3);
lib/libmd/rmd160c.c
429
RIP2(D,E,A,B,C,WR62,SR62,KR3);
lib/libmd/rmd160c.c
430
RIP2(C,D,E,A,B,WR63,SR63,KR3);
lib/libmd/rmd160c.c
432
RIP1(B,C,D,E,A,WR64,SR64);
lib/libmd/rmd160c.c
433
RIP1(A,B,C,D,E,WR65,SR65);
lib/libmd/rmd160c.c
434
RIP1(E,A,B,C,D,WR66,SR66);
lib/libmd/rmd160c.c
435
RIP1(D,E,A,B,C,WR67,SR67);
lib/libmd/rmd160c.c
436
RIP1(C,D,E,A,B,WR68,SR68);
lib/libmd/rmd160c.c
437
RIP1(B,C,D,E,A,WR69,SR69);
lib/libmd/rmd160c.c
438
RIP1(A,B,C,D,E,WR70,SR70);
lib/libmd/rmd160c.c
439
RIP1(E,A,B,C,D,WR71,SR71);
lib/libmd/rmd160c.c
440
RIP1(D,E,A,B,C,WR72,SR72);
lib/libmd/rmd160c.c
441
RIP1(C,D,E,A,B,WR73,SR73);
lib/libmd/rmd160c.c
442
RIP1(B,C,D,E,A,WR74,SR74);
lib/libmd/rmd160c.c
443
RIP1(A,B,C,D,E,WR75,SR75);
lib/libmd/rmd160c.c
444
RIP1(E,A,B,C,D,WR76,SR76);
lib/libmd/rmd160c.c
445
RIP1(D,E,A,B,C,WR77,SR77);
lib/libmd/rmd160c.c
446
RIP1(C,D,E,A,B,WR78,SR78);
lib/libmd/rmd160c.c
447
RIP1(B,C,D,E,A,WR79,SR79);
lib/libmd/rmd160c.c
449
D =ctx->B+c+D;
lib/libmd/rmd160c.c
451
ctx->C=ctx->D+e+A;
lib/libmd/rmd160c.c
452
ctx->D=ctx->E+a+B;
lib/libmd/rmd160c.c
454
ctx->A=D;
lib/libmd/rmd160c.c
509
l=c->D; l2c(l,cp);
lib/libmd/rmd160c.c
93
c->D=RIPEMD160_D;
lib/libmd/sha0c.c
282
u_int32_t A,B,C,D,E,T;
lib/libmd/sha0c.c
288
D=c->h3;
lib/libmd/sha0c.c
293
BODY_00_15( 0,A,B,C,D,E,T,W);
lib/libmd/sha0c.c
294
BODY_00_15( 1,T,A,B,C,D,E,W);
lib/libmd/sha0c.c
295
BODY_00_15( 2,E,T,A,B,C,D,W);
lib/libmd/sha0c.c
296
BODY_00_15( 3,D,E,T,A,B,C,W);
lib/libmd/sha0c.c
297
BODY_00_15( 4,C,D,E,T,A,B,W);
lib/libmd/sha0c.c
298
BODY_00_15( 5,B,C,D,E,T,A,W);
lib/libmd/sha0c.c
299
BODY_00_15( 6,A,B,C,D,E,T,W);
lib/libmd/sha0c.c
300
BODY_00_15( 7,T,A,B,C,D,E,W);
lib/libmd/sha0c.c
301
BODY_00_15( 8,E,T,A,B,C,D,W);
lib/libmd/sha0c.c
302
BODY_00_15( 9,D,E,T,A,B,C,W);
lib/libmd/sha0c.c
303
BODY_00_15(10,C,D,E,T,A,B,W);
lib/libmd/sha0c.c
304
BODY_00_15(11,B,C,D,E,T,A,W);
lib/libmd/sha0c.c
305
BODY_00_15(12,A,B,C,D,E,T,W);
lib/libmd/sha0c.c
306
BODY_00_15(13,T,A,B,C,D,E,W);
lib/libmd/sha0c.c
307
BODY_00_15(14,E,T,A,B,C,D,W);
lib/libmd/sha0c.c
308
BODY_00_15(15,D,E,T,A,B,C,W);
lib/libmd/sha0c.c
309
BODY_16_19(16,C,D,E,T,A,B,W,W,W,W);
lib/libmd/sha0c.c
310
BODY_16_19(17,B,C,D,E,T,A,W,W,W,W);
lib/libmd/sha0c.c
311
BODY_16_19(18,A,B,C,D,E,T,W,W,W,W);
lib/libmd/sha0c.c
312
BODY_16_19(19,T,A,B,C,D,E,W,W,W,X);
lib/libmd/sha0c.c
314
BODY_20_31(20,E,T,A,B,C,D,W,W,W,X);
lib/libmd/sha0c.c
315
BODY_20_31(21,D,E,T,A,B,C,W,W,W,X);
lib/libmd/sha0c.c
316
BODY_20_31(22,C,D,E,T,A,B,W,W,W,X);
lib/libmd/sha0c.c
317
BODY_20_31(23,B,C,D,E,T,A,W,W,W,X);
lib/libmd/sha0c.c
318
BODY_20_31(24,A,B,C,D,E,T,W,W,X,X);
lib/libmd/sha0c.c
319
BODY_20_31(25,T,A,B,C,D,E,W,W,X,X);
lib/libmd/sha0c.c
320
BODY_20_31(26,E,T,A,B,C,D,W,W,X,X);
lib/libmd/sha0c.c
321
BODY_20_31(27,D,E,T,A,B,C,W,W,X,X);
lib/libmd/sha0c.c
322
BODY_20_31(28,C,D,E,T,A,B,W,W,X,X);
lib/libmd/sha0c.c
323
BODY_20_31(29,B,C,D,E,T,A,W,W,X,X);
lib/libmd/sha0c.c
324
BODY_20_31(30,A,B,C,D,E,T,W,X,X,X);
lib/libmd/sha0c.c
325
BODY_20_31(31,T,A,B,C,D,E,W,X,X,X);
lib/libmd/sha0c.c
326
BODY_32_39(32,E,T,A,B,C,D,X);
lib/libmd/sha0c.c
327
BODY_32_39(33,D,E,T,A,B,C,X);
lib/libmd/sha0c.c
328
BODY_32_39(34,C,D,E,T,A,B,X);
lib/libmd/sha0c.c
329
BODY_32_39(35,B,C,D,E,T,A,X);
lib/libmd/sha0c.c
330
BODY_32_39(36,A,B,C,D,E,T,X);
lib/libmd/sha0c.c
331
BODY_32_39(37,T,A,B,C,D,E,X);
lib/libmd/sha0c.c
332
BODY_32_39(38,E,T,A,B,C,D,X);
lib/libmd/sha0c.c
333
BODY_32_39(39,D,E,T,A,B,C,X);
lib/libmd/sha0c.c
335
BODY_40_59(40,C,D,E,T,A,B,X);
lib/libmd/sha0c.c
336
BODY_40_59(41,B,C,D,E,T,A,X);
lib/libmd/sha0c.c
337
BODY_40_59(42,A,B,C,D,E,T,X);
lib/libmd/sha0c.c
338
BODY_40_59(43,T,A,B,C,D,E,X);
lib/libmd/sha0c.c
339
BODY_40_59(44,E,T,A,B,C,D,X);
lib/libmd/sha0c.c
340
BODY_40_59(45,D,E,T,A,B,C,X);
lib/libmd/sha0c.c
341
BODY_40_59(46,C,D,E,T,A,B,X);
lib/libmd/sha0c.c
342
BODY_40_59(47,B,C,D,E,T,A,X);
lib/libmd/sha0c.c
343
BODY_40_59(48,A,B,C,D,E,T,X);
lib/libmd/sha0c.c
344
BODY_40_59(49,T,A,B,C,D,E,X);
lib/libmd/sha0c.c
345
BODY_40_59(50,E,T,A,B,C,D,X);
lib/libmd/sha0c.c
346
BODY_40_59(51,D,E,T,A,B,C,X);
lib/libmd/sha0c.c
347
BODY_40_59(52,C,D,E,T,A,B,X);
lib/libmd/sha0c.c
348
BODY_40_59(53,B,C,D,E,T,A,X);
lib/libmd/sha0c.c
349
BODY_40_59(54,A,B,C,D,E,T,X);
lib/libmd/sha0c.c
350
BODY_40_59(55,T,A,B,C,D,E,X);
lib/libmd/sha0c.c
351
BODY_40_59(56,E,T,A,B,C,D,X);
lib/libmd/sha0c.c
352
BODY_40_59(57,D,E,T,A,B,C,X);
lib/libmd/sha0c.c
353
BODY_40_59(58,C,D,E,T,A,B,X);
lib/libmd/sha0c.c
354
BODY_40_59(59,B,C,D,E,T,A,X);
lib/libmd/sha0c.c
356
BODY_60_79(60,A,B,C,D,E,T,X);
lib/libmd/sha0c.c
357
BODY_60_79(61,T,A,B,C,D,E,X);
lib/libmd/sha0c.c
358
BODY_60_79(62,E,T,A,B,C,D,X);
lib/libmd/sha0c.c
359
BODY_60_79(63,D,E,T,A,B,C,X);
lib/libmd/sha0c.c
360
BODY_60_79(64,C,D,E,T,A,B,X);
lib/libmd/sha0c.c
361
BODY_60_79(65,B,C,D,E,T,A,X);
lib/libmd/sha0c.c
362
BODY_60_79(66,A,B,C,D,E,T,X);
lib/libmd/sha0c.c
363
BODY_60_79(67,T,A,B,C,D,E,X);
lib/libmd/sha0c.c
364
BODY_60_79(68,E,T,A,B,C,D,X);
lib/libmd/sha0c.c
365
BODY_60_79(69,D,E,T,A,B,C,X);
lib/libmd/sha0c.c
366
BODY_60_79(70,C,D,E,T,A,B,X);
lib/libmd/sha0c.c
367
BODY_60_79(71,B,C,D,E,T,A,X);
lib/libmd/sha0c.c
368
BODY_60_79(72,A,B,C,D,E,T,X);
lib/libmd/sha0c.c
369
BODY_60_79(73,T,A,B,C,D,E,X);
lib/libmd/sha0c.c
370
BODY_60_79(74,E,T,A,B,C,D,X);
lib/libmd/sha0c.c
371
BODY_60_79(75,D,E,T,A,B,C,X);
lib/libmd/sha0c.c
372
BODY_60_79(76,C,D,E,T,A,B,X);
lib/libmd/sha0c.c
373
BODY_60_79(77,B,C,D,E,T,A,X);
lib/libmd/sha0c.c
374
BODY_60_79(78,A,B,C,D,E,T,X);
lib/libmd/sha0c.c
375
BODY_60_79(79,T,A,B,C,D,E,X);
lib/libmd/sha0c.c
389
D=c->h3;
lib/libnetmap/nmreq.c
47
#define ED(...) D(__VA_ARGS__)
lib/libpmc/libpmc.c
248
#define __PMC_CAP(N,V,D) #N ,
lib/libpmc/libpmc.c
259
#define __PMC_CLASS(S,V,D) { .pm_class = PMC_CLASS_##S, .pm_name = #S } ,
lib/libpmc/libpmc.c
270
#define __PMC_CPU(S, V, D) { .pm_cputype = PMC_CPU_##S, .pm_name = #S } ,
lib/libpmc/libpmc.c
276
#define __PMC_DISP(D) #D ,
lib/libvgl/simple.c
187
int dx, dy, incr1, incr2, D, x, y, xend, c, pixels_left;
lib/libvgl/simple.c
234
D = incr1 - dx;
lib/libvgl/simple.c
239
if (D < 0) {
lib/libvgl/simple.c
246
D += incr1;
lib/libvgl/simple.c
248
if (D < c) {
lib/libvgl/simple.c
266
D += incr2;
lib/libvgl/simple.c
272
if (D < 0) {
lib/libvgl/simple.c
279
if (D < c) {
lib/libvgl/simple.c
300
D = incr1 + dx;
lib/libvgl/simple.c
304
if (D > 0) {
lib/libvgl/simple.c
311
D += incr1;
lib/libvgl/simple.c
313
if (D < c) {
lib/libvgl/simple.c
331
D += incr2;
lib/libvgl/simple.c
336
if (D > 0) {
lib/libvgl/simple.c
345
if (D < c) {
lib/libvgl/simple.c
357
if (D > c) /* step 3 */
sbin/growfs/debug.h
111
#define DBG_PRINT3(A,B,C,D) if(_dbg_lvl_ & DL_INFO) { \
sbin/growfs/debug.h
113
fprintf(stderr, (A), (B), (C), (D)); \
sbin/growfs/debug.h
115
#define DBG_PRINT4(A,B,C,D,E) if(_dbg_lvl_ & DL_INFO) { \
sbin/growfs/debug.h
117
fprintf(stderr, (A), (B), (C), (D), (E)); \
sbin/growfs/debug.h
141
#define DBG_PRINT3(A,B,C,D)
sbin/growfs/debug.h
142
#define DBG_PRINT4(A,B,C,D,E)
sys/arm64/nvidia/tegra210/tegra210_pinmux.c
280
GMUX(0x07c, D, 0, spi4_miso_pd0, spi4, rsvd1, rsvd2, rsvd3, 0xb00, 0, 0, 0, 0),
sys/arm64/nvidia/tegra210/tegra210_pinmux.c
313
GMUX(0x104, D, 1, uart3_tx_pd1, uartc, spi4, rsvd2, rsvd3, 0xb48, 12, 5, 20, 5),
sys/arm64/nvidia/tegra210/tegra210_pinmux.c
314
GMUX(0x108, D, 2, uart3_rx_pd2, uartc, spi4, rsvd2, rsvd3, 0xb44, 12, 5, 20, 5),
sys/arm64/nvidia/tegra210/tegra210_pinmux.c
315
GMUX(0x10c, D, 3, uart3_rts_pd3, uartc, spi4, rsvd2, rsvd3, 0xb40, 12, 5, 20, 5),
sys/arm64/nvidia/tegra210/tegra210_pinmux.c
316
GMUX(0x110, D, 4, uart3_cts_pd4, uartc, spi4, rsvd2, rsvd3, 0xb3c, 12, 5, 20, 5),
sys/cam/scsi/scsi_all.c
139
#define ALL (D | T | L | P | W | R | O | M | A | E | B | K | V | F | S | C)
sys/cam/scsi/scsi_all.c
201
{ 0x01, D | W | R | O | M, "REZERO UNIT" },
sys/cam/scsi/scsi_all.c
206
{ 0x04, D | R | O, "FORMAT UNIT" },
sys/cam/scsi/scsi_all.c
215
{ 0x07, D | W | O, "REASSIGN BLOCKS" },
sys/cam/scsi/scsi_all.c
219
{ 0x08, D | T | W | O, "READ(6)" },
sys/cam/scsi/scsi_all.c
226
{ 0x0A, D | T | W | O, "WRITE(6)" },
sys/cam/scsi/scsi_all.c
234
{ 0x0B, D | W | R | O, "SEEK(6)" },
sys/cam/scsi/scsi_all.c
268
{ 0x18, D | T | L | P | W | R | O | K | S, "COPY" },
sys/cam/scsi/scsi_all.c
274
{ 0x1B, D | W | R | O | A | B | K | F, "START STOP UNIT" },
sys/cam/scsi/scsi_all.c
288
{ 0x1E, D | T | W | R | O | M | K | F, "PREVENT ALLOW MEDIUM REMOVAL" },
sys/cam/scsi/scsi_all.c
299
{ 0x25, D | W | O | B, "READ CAPACITY(10)" },
sys/cam/scsi/scsi_all.c
309
{ 0x28, D | W | R | O | B | K | S, "READ(10)" },
sys/cam/scsi/scsi_all.c
315
{ 0x2A, D | W | R | O | B | K, "WRITE(10)" },
sys/cam/scsi/scsi_all.c
321
{ 0x2B, D | W | R | O | K, "SEEK(10)" },
sys/cam/scsi/scsi_all.c
332
{ 0x2E, D | W | R | O | B | K, "WRITE AND VERIFY(10)" },
sys/cam/scsi/scsi_all.c
334
{ 0x2F, D | W | R | O, "VERIFY(10)" },
sys/cam/scsi/scsi_all.c
336
{ 0x30, D | W | R | O, "SEARCH DATA HIGH(10)" },
sys/cam/scsi/scsi_all.c
338
{ 0x31, D | W | R | O, "SEARCH DATA EQUAL(10)" },
sys/cam/scsi/scsi_all.c
342
{ 0x32, D | W | R | O, "SEARCH DATA LOW(10)" },
sys/cam/scsi/scsi_all.c
344
{ 0x33, D | W | R | O, "SET LIMITS(10)" },
sys/cam/scsi/scsi_all.c
346
{ 0x34, D | W | O | K, "PRE-FETCH(10)" },
sys/cam/scsi/scsi_all.c
352
{ 0x35, D | W | R | O | B | K, "SYNCHRONIZE CACHE(10)" },
sys/cam/scsi/scsi_all.c
354
{ 0x36, D | W | O | K, "LOCK UNLOCK CACHE(10)" },
sys/cam/scsi/scsi_all.c
356
{ 0x37, D | O, "READ DEFECT DATA(10)" },
sys/cam/scsi/scsi_all.c
362
{ 0x39, D | T | L | P | W | R | O | K | S, "COMPARE" },
sys/cam/scsi/scsi_all.c
364
{ 0x3A, D | T | L | P | W | R | O | K | S, "COPY AND VERIFY" },
sys/cam/scsi/scsi_all.c
372
{ 0x3E, D | W | O, "READ LONG(10)" },
sys/cam/scsi/scsi_all.c
374
{ 0x3F, D | W | O, "WRITE LONG(10)" },
sys/cam/scsi/scsi_all.c
376
{ 0x40, D | T | L | P | W | R | O | M | S | C, "CHANGE DEFINITION" },
sys/cam/scsi/scsi_all.c
378
{ 0x41, D, "WRITE SAME(10)" },
sys/cam/scsi/scsi_all.c
380
{ 0x42, D, "UNMAP" },
sys/cam/scsi/scsi_all.c
395
{ 0x48, D, "SANITIZE" },
sys/cam/scsi/scsi_all.c
409
{ 0x50, D, "XDWRITE(10)" },
sys/cam/scsi/scsi_all.c
411
{ 0x51, D, "XPWRITE(10)" },
sys/cam/scsi/scsi_all.c
415
{ 0x52, D, "XDREAD(10)" },
sys/cam/scsi/scsi_all.c
419
{ 0x53, D, "XDWRITEREAD(10)" },
sys/cam/scsi/scsi_all.c
450
{ 0x7E, D | T | R | M | A | E | B | V, "extended CDB" },
sys/cam/scsi/scsi_all.c
452
{ 0x7F, D | F, "variable length CDB (more than 16 bytes)" },
sys/cam/scsi/scsi_all.c
454
{ 0x80, D, "XDWRITE EXTENDED(16)" },
sys/cam/scsi/scsi_all.c
458
{ 0x81, D, "REBUILD(16)" },
sys/cam/scsi/scsi_all.c
462
{ 0x82, D, "REGENERATE(16)" },
sys/cam/scsi/scsi_all.c
466
{ 0x83, D | T | L | P | W | O | K | V, "EXTENDED COPY" },
sys/cam/scsi/scsi_all.c
468
{ 0x84, D | T | L | P | W | O | K | V, "RECEIVE COPY RESULTS" },
sys/cam/scsi/scsi_all.c
470
{ 0x85, D | R | B, "ATA COMMAND PASS THROUGH(16)" },
sys/cam/scsi/scsi_all.c
476
{ 0x88, D | T | W | O | B, "READ(16)" },
sys/cam/scsi/scsi_all.c
478
{ 0x89, D, "COMPARE AND WRITE" },
sys/cam/scsi/scsi_all.c
480
{ 0x8A, D | T | W | O | B, "WRITE(16)" },
sys/cam/scsi/scsi_all.c
482
{ 0x8B, D, "ORWRITE" },
sys/cam/scsi/scsi_all.c
484
{ 0x8C, D | T | W | O | M | B | V, "READ ATTRIBUTE" },
sys/cam/scsi/scsi_all.c
486
{ 0x8D, D | T | W | O | M | B | V, "WRITE ATTRIBUTE" },
sys/cam/scsi/scsi_all.c
488
{ 0x8E, D | W | O | B, "WRITE AND VERIFY(16)" },
sys/cam/scsi/scsi_all.c
490
{ 0x8F, D | T | W | O | B, "VERIFY(16)" },
sys/cam/scsi/scsi_all.c
492
{ 0x90, D | W | O | B, "PRE-FETCH(16)" },
sys/cam/scsi/scsi_all.c
494
{ 0x91, D | W | O | B, "SYNCHRONIZE CACHE(16)" },
sys/cam/scsi/scsi_all.c
498
{ 0x92, D | W | O, "LOCK UNLOCK CACHE(16)" },
sys/cam/scsi/scsi_all.c
502
{ 0x93, D, "WRITE SAME(16)" },
sys/cam/scsi/scsi_all.c
514
{ 0x9A, D, "WRITE STREAM(16)" },
sys/cam/scsi/scsi_all.c
518
{ 0x9C, D, "WRITE ATOMIC(16)" },
sys/cam/scsi/scsi_all.c
531
{ 0xA1, D | B, "ATA COMMAND PASS THROUGH(12)" },
sys/cam/scsi/scsi_all.c
533
{ 0xA2, D | T | R | V, "SECURITY PROTOCOL IN" },
sys/cam/scsi/scsi_all.c
551
{ 0xA7, D | T | W | O, "MOVE MEDIUM ATTACHED" },
sys/cam/scsi/scsi_all.c
555
{ 0xA8, D | W | R | O, "READ(12)" },
sys/cam/scsi/scsi_all.c
561
{ 0xAA, D | W | R | O, "WRITE(12)" },
sys/cam/scsi/scsi_all.c
573
{ 0xAE, D | W | O, "WRITE AND VERIFY(12)" },
sys/cam/scsi/scsi_all.c
575
{ 0xAF, D | W | R | O, "VERIFY(12)" },
sys/cam/scsi/scsi_all.c
583
{ 0xB3, D | W | R | O, "SET LIMITS(12)" },
sys/cam/scsi/scsi_all.c
585
{ 0xB4, D | T | W | R | O, "READ ELEMENT STATUS ATTACHED" },
sys/cam/scsi/scsi_all.c
587
{ 0xB5, D | T | R | V, "SECURITY PROTOCOL OUT" },
sys/cam/scsi/scsi_all.c
595
{ 0xB7, D | O, "READ DEFECT DATA(12)" },
sys/cam/scsi/scsi_all.c
601
{ 0xBA, D | W | O | M | A | E, "REDUNDANCY GROUP (IN)" },
sys/cam/scsi/scsi_all.c
605
{ 0xBB, D | W | O | M | A | E, "REDUNDANCY GROUP (OUT)" },
sys/cam/scsi/scsi_all.c
609
{ 0xBC, D | W | O | M | A | E, "SPARE (IN)" },
sys/cam/scsi/scsi_all.c
611
{ 0xBD, D | W | O | M | A | E, "SPARE (OUT)" },
sys/cam/scsi/scsi_all.c
615
{ 0xBE, D | W | O | M | A | E, "VOLUME SET (IN)" },
sys/cam/scsi/scsi_all.c
619
{ 0xBF, D | W | O | M | A | E, "VOLUME SET (OUT)" },
sys/cddl/dev/dtrace/x86/dis_tables.c
2368
/* [80] */ TNS("jo",D), TNS("jno",D), TNS("jb",D), TNS("jae",D),
sys/cddl/dev/dtrace/x86/dis_tables.c
2369
/* [84] */ TNS("je",D), TNS("jne",D), TNS("jbe",D), TNS("ja",D),
sys/cddl/dev/dtrace/x86/dis_tables.c
2370
/* [88] */ TNS("js",D), TNS("jns",D), TNS("jp",D), TNS("jnp",D),
sys/cddl/dev/dtrace/x86/dis_tables.c
2371
/* [8C] */ TNS("jl",D), TNS("jge",D), TNS("jle",D), TNS("jg",D),
sys/cddl/dev/dtrace/x86/dis_tables.c
2816
/* [E,8] */ TNSyp("call",D), TNSy("jmp",D), TNSx("ljmp",SO), TNSy("jmp",BD),
sys/cddl/dev/dtrace/x86/dis_tables.c
5542
case D:
sys/dev/bwn/if_bwnvar.h
141
#define BWN_LPD(L, P, D) (((L) << 2) | ((P) << 1) | ((D) << 0))
sys/dev/bxe/ecore_reg.h
3642
uint8_t D[32];
sys/dev/bxe/ecore_reg.h
3650
D[i] = (uint8_t)(data & 1);
sys/dev/bxe/ecore_reg.h
3660
NewCRC[0] = D[31] ^ D[30] ^ D[28] ^ D[23] ^ D[21] ^ D[19] ^ D[18] ^
sys/dev/bxe/ecore_reg.h
3661
D[16] ^ D[14] ^ D[12] ^ D[8] ^ D[7] ^ D[6] ^ D[0] ^ C[4] ^
sys/dev/bxe/ecore_reg.h
3663
NewCRC[1] = D[30] ^ D[29] ^ D[28] ^ D[24] ^ D[23] ^ D[22] ^ D[21] ^
sys/dev/bxe/ecore_reg.h
3664
D[20] ^ D[18] ^ D[17] ^ D[16] ^ D[15] ^ D[14] ^ D[13] ^
sys/dev/bxe/ecore_reg.h
3665
D[12] ^ D[9] ^ D[6] ^ D[1] ^ D[0] ^ C[0] ^ C[4] ^ C[5] ^ C[6];
sys/dev/bxe/ecore_reg.h
3666
NewCRC[2] = D[29] ^ D[28] ^ D[25] ^ D[24] ^ D[22] ^ D[17] ^ D[15] ^
sys/dev/bxe/ecore_reg.h
3667
D[13] ^ D[12] ^ D[10] ^ D[8] ^ D[6] ^ D[2] ^ D[1] ^ D[0] ^
sys/dev/bxe/ecore_reg.h
3669
NewCRC[3] = D[30] ^ D[29] ^ D[26] ^ D[25] ^ D[23] ^ D[18] ^ D[16] ^
sys/dev/bxe/ecore_reg.h
3670
D[14] ^ D[13] ^ D[11] ^ D[9] ^ D[7] ^ D[3] ^ D[2] ^ D[1] ^
sys/dev/bxe/ecore_reg.h
3672
NewCRC[4] = D[31] ^ D[30] ^ D[27] ^ D[26] ^ D[24] ^ D[19] ^ D[17] ^
sys/dev/bxe/ecore_reg.h
3673
D[15] ^ D[14] ^ D[12] ^ D[10] ^ D[8] ^ D[4] ^ D[3] ^ D[2] ^
sys/dev/bxe/ecore_reg.h
3675
NewCRC[5] = D[31] ^ D[28] ^ D[27] ^ D[25] ^ D[20] ^ D[18] ^ D[16] ^
sys/dev/bxe/ecore_reg.h
3676
D[15] ^ D[13] ^ D[11] ^ D[9] ^ D[5] ^ D[4] ^ D[3] ^ C[1] ^
sys/dev/bxe/ecore_reg.h
3678
NewCRC[6] = D[29] ^ D[28] ^ D[26] ^ D[21] ^ D[19] ^ D[17] ^ D[16] ^
sys/dev/bxe/ecore_reg.h
3679
D[14] ^ D[12] ^ D[10] ^ D[6] ^ D[5] ^ D[4] ^ C[2] ^ C[4] ^ C[5];
sys/dev/bxe/ecore_reg.h
3680
NewCRC[7] = D[30] ^ D[29] ^ D[27] ^ D[22] ^ D[20] ^ D[18] ^ D[17] ^
sys/dev/bxe/ecore_reg.h
3681
D[15] ^ D[13] ^ D[11] ^ D[7] ^ D[6] ^ D[5] ^ C[3] ^ C[5] ^ C[6];
sys/dev/hwpmc/hwpmc_logging.c
100
(D)->plb_domain = domain; \
sys/dev/hwpmc/hwpmc_logging.c
103
#define PMCLOG_RESET_BUFFER_DESCRIPTOR(D) do { \
sys/dev/hwpmc/hwpmc_logging.c
104
(D)->plb_ptr = (D)->plb_base; \
sys/dev/hwpmc/hwpmc_logging.c
97
#define PMCLOG_INIT_BUFFER_DESCRIPTOR(D, buf, domain) do { \
sys/dev/hwpmc/hwpmc_logging.c
98
(D)->plb_fence = ((char *)(buf)) + 1024 * pmclog_buffer_size; \
sys/dev/hwpmc/hwpmc_logging.c
99
(D)->plb_base = (D)->plb_ptr = ((char *)(buf)); \
sys/dev/hwpmc/hwpmc_mod.c
3263
#define __PMC_OP(N, D) #N ,
sys/dev/hwpmc/hwpmc_mod.c
5452
#define __PMC_CLASS(S,V,D) \
sys/dev/iavf/iavf_osdep.h
74
#define DEBUGOUT7(S,A,B,C,D,E,F,G) printf(S "\n",A,B,C,D,E,F,G)
sys/dev/iavf/iavf_osdep.h
80
#define DEBUGOUT6(S,A,B,C,D,E,F)
sys/dev/iavf/iavf_osdep.h
81
#define DEBUGOUT7(S,A,B,C,D,E,F,G)
sys/dev/ixgbe/if_ix.c
3759
D("%s read HLREG 0x%x rxc 0x%x",
sys/dev/ixgbe/if_ix.c
3776
D("%s write HLREG 0x%x rxc 0x%x",
sys/dev/ixgbe/ixgbe_osdep.h
107
#define DEBUGOUT4(S,A,B,C,D)
sys/dev/ixgbe/ixgbe_osdep.h
108
#define DEBUGOUT5(S,A,B,C,D,E)
sys/dev/ixgbe/ixgbe_osdep.h
109
#define DEBUGOUT6(S,A,B,C,D,E,F)
sys/dev/ixgbe/ixgbe_osdep.h
110
#define DEBUGOUT7(S,A,B,C,D,E,F,G)
sys/dev/ixgbe/ixgbe_osdep.h
81
#define DEBUGOUT4(S,A,B,C,D) printf(S "\n",A,B,C,D)
sys/dev/ixgbe/ixgbe_osdep.h
82
#define DEBUGOUT5(S,A,B,C,D,E) printf(S "\n",A,B,C,D,E)
sys/dev/ixgbe/ixgbe_osdep.h
83
#define DEBUGOUT6(S,A,B,C,D,E,F) printf(S "\n",A,B,C,D,E,F)
sys/dev/ixgbe/ixgbe_osdep.h
84
#define DEBUGOUT7(S,A,B,C,D,E,F,G) printf(S "\n",A,B,C,D,E,F,G)
sys/dev/ixl/i40e_osdep.h
67
#define DEBUGOUT7(S,A,B,C,D,E,F,G) printf(S "\n",A,B,C,D,E,F,G)
sys/dev/ixl/i40e_osdep.h
73
#define DEBUGOUT6(S,A,B,C,D,E,F)
sys/dev/ixl/i40e_osdep.h
74
#define DEBUGOUT7(S,A,B,C,D,E,F,G)
sys/dev/sym/sym_defs.h
867
#define DATA(D) (0x00040000 | ((D) & 0xff))
sys/dev/sym/sym_defs.h
868
#define MASK(D,M) (0x00040000 | (((M ^ 0xff) & 0xff) << 8ul)|((D) & 0xff))
sys/i386/i386/mp_machdep.c
107
#define CHECK_WRITE(A,D) (outb(CMOS_REG, (A)), outb(CMOS_DATA, (D)))
sys/i386/i386/mp_machdep.c
109
#define CHECK_INIT(D); \
sys/i386/i386/mp_machdep.c
110
CHECK_WRITE(0x34, (D)); \
sys/i386/i386/mp_machdep.c
111
CHECK_WRITE(0x35, (D)); \
sys/i386/i386/mp_machdep.c
112
CHECK_WRITE(0x36, (D)); \
sys/i386/i386/mp_machdep.c
113
CHECK_WRITE(0x37, (D)); \
sys/i386/i386/mp_machdep.c
114
CHECK_WRITE(0x38, (D)); \
sys/i386/i386/mp_machdep.c
115
CHECK_WRITE(0x39, (D));
sys/i386/i386/mp_machdep.c
129
#define CHECK_INIT(D)
sys/i386/i386/mp_machdep.c
131
#define CHECK_WRITE(A, D)
sys/kern/kern_ubsan.c
1404
double D;
sys/kern/kern_ubsan.c
1417
ASSERT(sizeof(D) == sizeof(uint64_t));
sys/kern/kern_ubsan.c
1432
memcpy(&D, pNumber, sizeof(double));
sys/kern/kern_ubsan.c
1433
snprintf(pBuffer, zBUfferLength, "%g", D);
sys/kern/kern_ubsan.c
1442
double D;
sys/kern/kern_ubsan.c
1449
ASSERT(sizeof(D) == sizeof(uint64_t));
sys/kern/kern_ubsan.c
1453
memcpy(&D, &ulNumber, sizeof(double));
sys/kern/kern_ubsan.c
1454
snprintf(pBuffer, zBUfferLength, "%g", D);
sys/net/netmap_user.h
1003
D("do not mmap, inherit from parent");
sys/net/netmap_user.h
192
D(format, ##__VA_ARGS__); \
sys/net/netmap_user.h
499
D("unsupported NIOCCONFIG!");
sys/net/netmap_user.h
503
D("invalid ioctl %x on netmap fd", ctlCode);
sys/net/netmap_user.h
871
D("overriding ARG1 %d", parent->req.nr_arg1);
sys/net/netmap_user.h
875
D("overriding ARG2 %d", parent->req.nr_arg2);
sys/net/netmap_user.h
879
D("overriding ARG3 %d", parent->req.nr_arg3);
sys/net/netmap_user.h
883
D("overriding RING_CFG");
sys/net/netmap_user.h
890
D("overriding ifname %s ringid 0x%x flags 0x%x",
sys/net/netmap_user.h
942
D("%s tx %d .. %d %d rx %d .. %d %d", ifname,
sys/net/netmap_user.h
947
D("TX%d %p h %d c %d t %d", i, r, r->head, r->cur, r->tail);
sys/net/netmap_user.h
951
D("RX%d %p h %d c %d t %d", i, r, r->head, r->cur, r->tail);
sys/net/netmap_user.h
963
D("%s %s", errmsg, ifname);
sys/netinet/in_fib_dxr.c
290
#define DXR_LOOKUP_DEFINE(D) \
sys/netinet/in_fib_dxr.c
292
dxr_lookup_##D(struct dxr *dxr, uint32_t dst) \
sys/netinet/in_fib_dxr.c
298
de = xt[(dt[dst >> (32 - (D))] << (DXR_TRIE_BITS - (D))) \
sys/netinet/in_fib_dxr.c
300
(0xffffffffU >> (32 - DXR_TRIE_BITS + (D))))]; \
sys/netinet/in_fib_dxr.c
307
dxr_fib_lookup_##D(void *algo_data, \
sys/netinet/in_fib_dxr.c
312
return (dxr->nh_tbl[dxr_lookup_##D(dxr, \
sys/netpfil/ipfw/dn_aqm_codel.c
106
D("%ld", value);
sys/netpfil/ipfw/dn_aqm_codel.c
209
D("Codel timestamp mtag not found!");
sys/netpfil/ipfw/dn_aqm_codel.c
239
D("Codel queue is not initialized\n");
sys/netpfil/ipfw/dn_aqm_codel.c
296
D("Codel is not configure!d");
sys/netpfil/ipfw/dn_aqm_codel.c
303
D("Cannot allocate AQM_codel private data");
sys/netpfil/ipfw/dn_aqm_codel.c
336
D("Codel already cleaned up");
sys/netpfil/ipfw/dn_aqm_codel.c
351
D("invalid sched parms length got %d need %d", len, l);
sys/netpfil/ipfw/dn_aqm_codel.c
365
D("cannot allocate AQM_codel configuration parameters");
sys/netpfil/ipfw/dn_aqm_pie.c
262
D("underflow");
sys/netpfil/ipfw/dn_aqm_pie.c
276
D("overflow");
sys/netpfil/ipfw/dn_aqm_pie.c
346
D("PIE timestamp mtag not found!");
sys/netpfil/ipfw/dn_aqm_pie.c
592
D("cannot allocate PIE private data");
sys/netpfil/ipfw/dn_aqm_pie.c
649
D("q is null");
sys/netpfil/ipfw/dn_aqm_pie.c
658
D("fs is null or no cfg");
sys/netpfil/ipfw/dn_aqm_pie.c
662
D("Not PIE fs (%d)", q->fs->fs.fs_nr);
sys/netpfil/ipfw/dn_aqm_pie.c
693
D("invalid sched parms length got %d need %d", len, l);
sys/netpfil/ipfw/dn_aqm_pie.c
707
D("cannot allocate PIE configuration parameters");
sys/netpfil/ipfw/dn_sched_fq_codel.c
328
if (mainq->ni.length > schk->cfg.limit) { D("over limit");
sys/netpfil/ipfw/dn_sched_fq_codel.c
340
D("maxidx = %d",maxidx);
sys/netpfil/ipfw/dn_sched_fq_codel.c
445
D("si already configured!");
sys/netpfil/ipfw/dn_sched_fq_codel.c
459
D("cannot allocate memory for fq_codel configuration parameters");
sys/netpfil/ipfw/dn_sched_fq_codel.h
155
D("timestamp tag is not found!");
sys/netpfil/ipfw/dn_sched_fq_pie.c
1022
D("si already configured!");
sys/netpfil/ipfw/dn_sched_fq_pie.c
1036
D("cannot allocate memory for fq_pie si extra vars");
sys/netpfil/ipfw/dn_sched_fq_pie.c
1046
D("cannot allocate memory for fq_pie flows");
sys/netpfil/ipfw/dn_sched_fq_pie.c
1175
D("Wrong parameters for fq_pie scheduler");
sys/netpfil/ipfw/dn_sched_fq_pie.c
356
D("PIE timestamp mtag not found!");
sys/netpfil/ipfw/dn_sched_fq_pie.c
438
D("underflow");
sys/netpfil/ipfw/dn_sched_fq_pie.c
452
D("overflow");
sys/netpfil/ipfw/dn_sched_fq_pie.c
548
D("AQM_PIE is not configured");
sys/netpfil/ipfw/dn_sched_qfq.c
104
D("bad index %d", ix);
sys/netpfil/ipfw/dn_sched_qfq.c
110
D("bad index %d", ix);
sys/netpfil/ipfw/dn_sched_qfq.c
316
D("rounding weight to 1");
sys/netpfil/ipfw/dn_sched_qfq.c
570
D("BUG/* non-workconserving leaf */");
sys/netpfil/ipfw/dn_sched_qfq.c
865
D(" bucket %d %p", j, g->slots[j]);
sys/netpfil/ipfw/dn_sched_qfq.c
867
D("full_slots 0x%llx", (_P64)g->full_slots);
sys/netpfil/ipfw/dn_sched_qfq.c
868
D(" %2d S 0x%20llx F 0x%llx %c", i,
sys/netpfil/ipfw/dn_sched_qfq.c
877
D("--- in %s: ---", msg);
sys/netpfil/ipfw/dn_sched_qfq.c
878
D("loops %d queued %d V 0x%llx", q->loops, q->queued, (_P64)q->V);
sys/netpfil/ipfw/dn_sched_qfq.c
879
D(" ER 0x%08x", (unsigned)q->bitmaps[ER]);
sys/netpfil/ipfw/dn_sched_qfq.c
880
D(" EB 0x%08x", (unsigned)q->bitmaps[EB]);
sys/netpfil/ipfw/dn_sched_qfq.c
881
D(" IR 0x%08x", (unsigned)q->bitmaps[IR]);
sys/netpfil/ipfw/dn_sched_qfq.c
882
D(" IB 0x%08x", (unsigned)q->bitmaps[IB]);
sys/netpfil/ipfw/dn_sched_qfq.c
98
D("bad index %d", ix);
sys/netpfil/ipfw/dn_sched_rr.c
265
D("quantum too large, truncating to 4G - 1");
sys/netpfil/ipfw/dn_sched_wf2q.c
183
D("++ ouch! not eligible but empty scheduler!");
sys/netpfil/ipfw/ip_dn_io.c
245
D("skip TS tag");
sys/netpfil/ipfw/ip_dn_private.h
41
#ifndef D
sys/netpfil/ipfw/ip_dn_private.h
47
if (V_dn_cfg.debug > lev) D(fmt, ## __VA_ARGS__); } while (0)
sys/netpfil/ipfw/ip_dummynet.c
1002
D("ERROR type %d %s %d have %d need %d",
sys/netpfil/ipfw/ip_dummynet.c
1052
D("error have %d need %d", have, profile_len);
sys/netpfil/ipfw/ip_dummynet.c
1319
D("XXX TODO requeue from fs %d to sch %d",
sys/netpfil/ipfw/ip_dummynet.c
1342
D("fs %d for sch %d not %d still unlinked",
sys/netpfil/ipfw/ip_dummynet.c
1365
D("bad len sopt->sopt_valsize %d len %d",
sys/netpfil/ipfw/ip_dummynet.c
1387
D("fs %d not found", ep->nr);
sys/netpfil/ipfw/ip_dummynet.c
1394
D("Error while trying to get AQM params");
sys/netpfil/ipfw/ip_dummynet.c
1420
D("bad len sopt->sopt_valsize %d len %d",
sys/netpfil/ipfw/ip_dummynet.c
1442
D("sched %d not found", ep->nr);
sys/netpfil/ipfw/ip_dummynet.c
1449
D("Error while trying to get sched params");
sys/netpfil/ipfw/ip_dummynet.c
1485
D("short aqm len %d", ep->oid.len);
sys/netpfil/ipfw/ip_dummynet.c
1491
D("Unable to configure flowset, flowset busy!");
sys/netpfil/ipfw/ip_dummynet.c
1502
D("AQM functions not found for type %s!", ep->name);
sys/netpfil/ipfw/ip_dummynet.c
1510
D("Wrong subtype");
sys/netpfil/ipfw/ip_dummynet.c
1518
D("Unable to configure AQM for FS %d", fs->fs.fs_nr );
sys/netpfil/ipfw/ip_dummynet.c
1561
D("invalid pipe len %d", p->oid.len);
sys/netpfil/ipfw/ip_dummynet.c
1584
D("sched %d not found", i);
sys/netpfil/ipfw/ip_dummynet.c
1621
D("invalid flowset len %d", nfs->oid.len);
sys/netpfil/ipfw/ip_dummynet.c
1661
D("missing sched for flowset %d", i);
sys/netpfil/ipfw/ip_dummynet.c
1746
D("bad sched len %d", a.sch->oid.len);
sys/netpfil/ipfw/ip_dummynet.c
1802
D("invalid scheduler type %d %s",
sys/netpfil/ipfw/ip_dummynet.c
1812
D("cannot allocate scheduler %d", i);
sys/netpfil/ipfw/ip_dummynet.c
1824
D("cannot allocate profile");
sys/netpfil/ipfw/ip_dummynet.c
1842
D("XXX WARNING link 0 for sched %d", i);
sys/netpfil/ipfw/ip_dummynet.c
1881
D("error creating internal fs for %d", i);
sys/netpfil/ipfw/ip_dummynet.c
1927
D("short profile len %d", pf->oid.len);
sys/netpfil/ipfw/ip_dummynet.c
1962
D("no memory for profile %d", i);
sys/netpfil/ipfw/ip_dummynet.c
2019
D("invalid api version got %d need %d", o.id, DN_API_VERSION);
sys/netpfil/ipfw/ip_dummynet.c
2028
D("bad len o.len %d len %zu", o.len, l);
sys/netpfil/ipfw/ip_dummynet.c
2036
D("cmd %d not implemented", o.type);
sys/netpfil/ipfw/ip_dummynet.c
2071
D("invalid delete type %d", o.subtype);
sys/netpfil/ipfw/ip_dummynet.c
2484
D("dummynet: unknown option %d", sopt->sopt_name);
sys/netpfil/ipfw/ip_dummynet.c
2495
D("argument len %zu invalid", l);
sys/netpfil/ipfw/ip_dummynet.c
2647
D("missing enqueue or dequeue for %s", d->name);
sys/netpfil/ipfw/ip_dummynet.c
2655
D("%s already loaded", d->name);
sys/netpfil/ipfw/ip_dummynet.c
2662
D("dn_sched %s %sloaded", d->name, s ? "not ":"");
sys/netpfil/ipfw/ip_dummynet.c
2686
D("dn_sched %s %sunloaded", s->name, err ? "not ":"");
sys/netpfil/ipfw/ip_dummynet.c
2740
D("missing enqueue or dequeue for %s", d->name);
sys/netpfil/ipfw/ip_dummynet.c
2749
D("%s already loaded", d->name);
sys/netpfil/ipfw/ip_dummynet.c
2758
D("dn_aqm %s %sloaded", d->name, aqm ? "not ":"");
sys/netpfil/ipfw/ip_dummynet.c
2804
D("%s %sunloaded", aqm->name, err ? "not ":"");
sys/netpfil/ipfw/ip_dummynet.c
2806
D("ref_count=%d, cfg_ref_count=%d", r->ref_count, r->cfg_ref_count);
sys/netpfil/ipfw/ip_dummynet.c
361
D("no memory for new queue");
sys/netpfil/ipfw/ip_dummynet.c
379
D("unable to init AQM for fs %d", fs->fs.fs_nr);
sys/netpfil/ipfw/ip_dummynet.c
538
D("new_sched error");
sys/netpfil/ipfw/ip_dummynet.c
549
D("unable to init AQM for fs %d", s->fs->fs.fs_nr);
sys/netpfil/ipfw/ip_dummynet.c
967
D("(WARN) type %d %s %d have %d need %d",
sys/netpfil/ipfw/test/dn_test.h
28
if (debug > lev) D(fmt, ## args); } while (0)
sys/netpfil/ipfw/test/main.c
218
D("loop %d enqueue fail", i );
sys/netpfil/ipfw/test/main.c
238
D("--- ouch, cannot operate on iteration %d, pending %d", i, c->pending);
sys/netpfil/ipfw/test/main.c
296
D("suffix %s for %s, next %p", end, key, next);
sys/netpfil/ipfw/test/main.c
328
D("warning, overwriting fs %s with %s",
sys/netpfil/ipfw/test/main.c
335
D("no fsconfig");
sys/netpfil/ipfw/test/main.c
378
D("error in number of flowsets");
sys/netpfil/ipfw/test/main.c
500
D("option %s not recognised, ignore", *av);
sys/netpfil/ipfw/test/main.c
544
D("using %d flows, %d flowsets", c->flows, c->flowsets);
sys/netpfil/ipfw/test/main.c
545
D("q_len %d dn_fsk %d si %d sched %d",
sys/netpfil/ipfw/test/main.c
554
D("error allocating memory");
sys/netpfil/ipfw/test/main.c
612
D("th_min %d th_max %d", c.th_min, c.th_max);
sys/netpfil/ipfw/test/main.c
628
D("sched=%-12s\ttime=%d.%03d sec (%.0f nsec) enq %lu %lu deq\n"
sys/netpfil/ipfw/test/main.c
674
D("no candidate");
sys/powerpc/powerpc/db_disasm.c
726
u_int D;
sys/powerpc/powerpc/db_disasm.c
727
D = extract_field(instr, 31 - 10, 5);
sys/powerpc/powerpc/db_disasm.c
728
APP_PSTR("r%d, ", D);
sys/powerpc/powerpc/db_disasm.c
827
u_int D;
sys/powerpc/powerpc/db_disasm.c
828
D = extract_field(instr, 31 - 10, 5);
sys/powerpc/powerpc/db_disasm.c
829
APP_PSTR("r%d, ", D);
tools/tools/ath/athrd/athrd.c
391
D(NO_ENUMRD),
tools/tools/ath/athrd/athrd.c
392
D(NULL1_WORLD), /* For 11b-only countries (no 11a allowed) */
tools/tools/ath/athrd/athrd.c
393
D(NULL1_ETSIB), /* Israel */
tools/tools/ath/athrd/athrd.c
394
D(NULL1_ETSIC),
tools/tools/ath/athrd/athrd.c
395
D(FCC1_FCCA), /* USA */
tools/tools/ath/athrd/athrd.c
396
D(FCC1_WORLD), /* Hong Kong */
tools/tools/ath/athrd/athrd.c
397
D(FCC4_FCCA), /* USA - Public Safety */
tools/tools/ath/athrd/athrd.c
399
D(FCC2_FCCA), /* Canada */
tools/tools/ath/athrd/athrd.c
400
D(FCC2_WORLD), /* Australia & HK */
tools/tools/ath/athrd/athrd.c
401
D(FCC2_ETSIC),
tools/tools/ath/athrd/athrd.c
402
D(FRANCE_RES), /* Legacy France for OEM */
tools/tools/ath/athrd/athrd.c
403
D(FCC3_FCCA),
tools/tools/ath/athrd/athrd.c
404
D(FCC3_WORLD),
tools/tools/ath/athrd/athrd.c
406
D(ETSI1_WORLD),
tools/tools/ath/athrd/athrd.c
407
D(ETSI3_ETSIA), /* France (optional) */
tools/tools/ath/athrd/athrd.c
408
D(ETSI2_WORLD), /* Hungary & others */
tools/tools/ath/athrd/athrd.c
409
D(ETSI3_WORLD), /* France & others */
tools/tools/ath/athrd/athrd.c
410
D(ETSI4_WORLD),
tools/tools/ath/athrd/athrd.c
411
D(ETSI4_ETSIC),
tools/tools/ath/athrd/athrd.c
412
D(ETSI5_WORLD),
tools/tools/ath/athrd/athrd.c
413
D(ETSI6_WORLD), /* Bulgaria */
tools/tools/ath/athrd/athrd.c
414
D(ETSI_RESERVED), /* Reserved (Do not used) */
tools/tools/ath/athrd/athrd.c
416
D(MKK1_MKKA), /* Japan (JP1) */
tools/tools/ath/athrd/athrd.c
417
D(MKK1_MKKB), /* Japan (JP0) */
tools/tools/ath/athrd/athrd.c
418
D(APL4_WORLD), /* Singapore */
tools/tools/ath/athrd/athrd.c
419
D(MKK2_MKKA), /* Japan with 4.9G channels */
tools/tools/ath/athrd/athrd.c
420
D(APL_RESERVED), /* Reserved (Do not used) */
tools/tools/ath/athrd/athrd.c
421
D(APL2_WORLD), /* Korea */
tools/tools/ath/athrd/athrd.c
422
D(APL2_APLC),
tools/tools/ath/athrd/athrd.c
423
D(APL3_WORLD),
tools/tools/ath/athrd/athrd.c
424
D(MKK1_FCCA), /* Japan (JP1-1) */
tools/tools/ath/athrd/athrd.c
425
D(APL2_APLD), /* Korea with 2.3G channels */
tools/tools/ath/athrd/athrd.c
426
D(MKK1_MKKA1), /* Japan (JE1) */
tools/tools/ath/athrd/athrd.c
427
D(MKK1_MKKA2), /* Japan (JE2) */
tools/tools/ath/athrd/athrd.c
428
D(MKK1_MKKC),
tools/tools/ath/athrd/athrd.c
430
D(APL3_FCCA),
tools/tools/ath/athrd/athrd.c
431
D(APL1_WORLD), /* Latin America */
tools/tools/ath/athrd/athrd.c
432
D(APL1_FCCA),
tools/tools/ath/athrd/athrd.c
433
D(APL1_APLA),
tools/tools/ath/athrd/athrd.c
434
D(APL1_ETSIC),
tools/tools/ath/athrd/athrd.c
435
D(APL2_ETSIC), /* Venezuela */
tools/tools/ath/athrd/athrd.c
436
D(APL5_WORLD), /* Chile */
tools/tools/ath/athrd/athrd.c
437
D(APL6_WORLD), /* Singapore */
tools/tools/ath/athrd/athrd.c
438
D(APL7_FCCA), /* Taiwan 5.47 Band */
tools/tools/ath/athrd/athrd.c
439
D(APL8_WORLD), /* Malaysia 5GHz */
tools/tools/ath/athrd/athrd.c
440
D(APL9_WORLD), /* Korea 5GHz */
tools/tools/ath/athrd/athrd.c
442
D(WOR0_WORLD), /* World0 (WO0 SKU) */
tools/tools/ath/athrd/athrd.c
443
D(WOR1_WORLD), /* World1 (WO1 SKU) */
tools/tools/ath/athrd/athrd.c
444
D(WOR2_WORLD), /* World2 (WO2 SKU) */
tools/tools/ath/athrd/athrd.c
445
D(WOR3_WORLD), /* World3 (WO3 SKU) */
tools/tools/ath/athrd/athrd.c
446
D(WOR4_WORLD), /* World4 (WO4 SKU) */
tools/tools/ath/athrd/athrd.c
447
D(WOR5_ETSIC), /* World5 (WO5 SKU) */
tools/tools/ath/athrd/athrd.c
449
D(WOR01_WORLD), /* World0-1 (WW0-1 SKU) */
tools/tools/ath/athrd/athrd.c
450
D(WOR02_WORLD), /* World0-2 (WW0-2 SKU) */
tools/tools/ath/athrd/athrd.c
451
D(EU1_WORLD),
tools/tools/ath/athrd/athrd.c
453
D(WOR9_WORLD), /* World9 (WO9 SKU) */
tools/tools/ath/athrd/athrd.c
454
D(WORA_WORLD), /* WorldA (WOA SKU) */
tools/tools/ath/athrd/athrd.c
456
D(MKK3_MKKB), /* Japan UNI-1 even + MKKB */
tools/tools/ath/athrd/athrd.c
457
D(MKK3_MKKA2), /* Japan UNI-1 even + MKKA2 */
tools/tools/ath/athrd/athrd.c
458
D(MKK3_MKKC), /* Japan UNI-1 even + MKKC */
tools/tools/ath/athrd/athrd.c
460
D(MKK4_MKKB), /* Japan UNI-1 even + UNI-2 + MKKB */
tools/tools/ath/athrd/athrd.c
461
D(MKK4_MKKA2), /* Japan UNI-1 even + UNI-2 + MKKA2 */
tools/tools/ath/athrd/athrd.c
462
D(MKK4_MKKC), /* Japan UNI-1 even + UNI-2 + MKKC */
tools/tools/ath/athrd/athrd.c
464
D(MKK5_MKKB), /* Japan UNI-1 even + UNI-2 + mid-band + MKKB */
tools/tools/ath/athrd/athrd.c
465
D(MKK5_MKKA2), /* Japan UNI-1 even + UNI-2 + mid-band + MKKA2 */
tools/tools/ath/athrd/athrd.c
466
D(MKK5_MKKC), /* Japan UNI-1 even + UNI-2 + mid-band + MKKC */
tools/tools/ath/athrd/athrd.c
468
D(MKK6_MKKB), /* Japan UNI-1 even + UNI-1 odd MKKB */
tools/tools/ath/athrd/athrd.c
469
D(MKK6_MKKA2), /* Japan UNI-1 even + UNI-1 odd + MKKA2 */
tools/tools/ath/athrd/athrd.c
470
D(MKK6_MKKC), /* Japan UNI-1 even + UNI-1 odd + MKKC */
tools/tools/ath/athrd/athrd.c
472
D(MKK7_MKKB), /* Japan UNI-1 even + UNI-1 odd + UNI-2 + MKKB */
tools/tools/ath/athrd/athrd.c
473
D(MKK7_MKKA2), /* Japan UNI-1 even + UNI-1 odd + UNI-2 + MKKA2 */
tools/tools/ath/athrd/athrd.c
474
D(MKK7_MKKC), /* Japan UNI-1 even + UNI-1 odd + UNI-2 + MKKC */
tools/tools/ath/athrd/athrd.c
476
D(MKK8_MKKB), /* Japan UNI-1 even + UNI-1 odd + UNI-2 + mid-band + MKKB */
tools/tools/ath/athrd/athrd.c
477
D(MKK8_MKKA2), /* Japan UNI-1 even + UNI-1 odd + UNI-2 + mid-band + MKKA2 */
tools/tools/ath/athrd/athrd.c
478
D(MKK8_MKKC), /* Japan UNI-1 even + UNI-1 odd + UNI-2 + mid-band + MKKC */
tools/tools/ath/athrd/athrd.c
480
D(MKK3_MKKA), /* Japan UNI-1 even + MKKA */
tools/tools/ath/athrd/athrd.c
481
D(MKK3_MKKA1), /* Japan UNI-1 even + MKKA1 */
tools/tools/ath/athrd/athrd.c
482
D(MKK3_FCCA), /* Japan UNI-1 even + FCCA */
tools/tools/ath/athrd/athrd.c
483
D(MKK4_MKKA), /* Japan UNI-1 even + UNI-2 + MKKA */
tools/tools/ath/athrd/athrd.c
484
D(MKK4_MKKA1), /* Japan UNI-1 even + UNI-2 + MKKA1 */
tools/tools/ath/athrd/athrd.c
485
D(MKK4_FCCA), /* Japan UNI-1 even + UNI-2 + FCCA */
tools/tools/ath/athrd/athrd.c
486
D(MKK9_MKKA), /* Japan UNI-1 even + 4.9GHz */
tools/tools/ath/athrd/athrd.c
487
D(MKK10_MKKA), /* Japan UNI-1 even + UNI-2 + 4.9GHz */
tools/tools/ath/athrd/athrd.c
489
D(APL1), /* LAT & Asia */
tools/tools/ath/athrd/athrd.c
490
D(APL2), /* LAT & Asia */
tools/tools/ath/athrd/athrd.c
491
D(APL3), /* Taiwan */
tools/tools/ath/athrd/athrd.c
492
D(APL4), /* Jordan */
tools/tools/ath/athrd/athrd.c
493
D(APL5), /* Chile */
tools/tools/ath/athrd/athrd.c
494
D(APL6), /* Singapore */
tools/tools/ath/athrd/athrd.c
495
D(APL8), /* Malaysia */
tools/tools/ath/athrd/athrd.c
496
D(APL9), /* Korea (South) ROC 3 */
tools/tools/ath/athrd/athrd.c
498
D(ETSI1), /* Europe & others */
tools/tools/ath/athrd/athrd.c
499
D(ETSI2), /* Europe & others */
tools/tools/ath/athrd/athrd.c
500
D(ETSI3), /* Europe & others */
tools/tools/ath/athrd/athrd.c
501
D(ETSI4), /* Europe & others */
tools/tools/ath/athrd/athrd.c
502
D(ETSI5), /* Europe & others */
tools/tools/ath/athrd/athrd.c
503
D(ETSI6), /* Europe & others */
tools/tools/ath/athrd/athrd.c
504
D(ETSIA), /* France */
tools/tools/ath/athrd/athrd.c
505
D(ETSIB), /* Israel */
tools/tools/ath/athrd/athrd.c
506
D(ETSIC), /* Latin America */
tools/tools/ath/athrd/athrd.c
508
D(FCC1), /* US & others */
tools/tools/ath/athrd/athrd.c
509
D(FCC2),
tools/tools/ath/athrd/athrd.c
510
D(FCC3), /* US w/new middle band & DFS */
tools/tools/ath/athrd/athrd.c
511
D(FCC4), /* US Public Safety */
tools/tools/ath/athrd/athrd.c
512
D(FCCA),
tools/tools/ath/athrd/athrd.c
514
D(APLD), /* South Korea */
tools/tools/ath/athrd/athrd.c
516
D(MKK1), /* Japan (UNI-1 odd)*/
tools/tools/ath/athrd/athrd.c
517
D(MKK2), /* Japan (4.9 GHz + UNI-1 odd) */
tools/tools/ath/athrd/athrd.c
518
D(MKK3), /* Japan (UNI-1 even) */
tools/tools/ath/athrd/athrd.c
519
D(MKK4), /* Japan (UNI-1 even + UNI-2) */
tools/tools/ath/athrd/athrd.c
520
D(MKK5), /* Japan (UNI-1 even + UNI-2 + mid-band) */
tools/tools/ath/athrd/athrd.c
521
D(MKK6), /* Japan (UNI-1 odd + UNI-1 even) */
tools/tools/ath/athrd/athrd.c
522
D(MKK7), /* Japan (UNI-1 odd + UNI-1 even + UNI-2 */
tools/tools/ath/athrd/athrd.c
523
D(MKK8), /* Japan (UNI-1 odd + UNI-1 even + UNI-2 + mid-band) */
tools/tools/ath/athrd/athrd.c
524
D(MKK9), /* Japan (UNI-1 even + 4.9 GHZ) */
tools/tools/ath/athrd/athrd.c
525
D(MKK10), /* Japan (UNI-1 even + UNI-2 + 4.9 GHZ) */
tools/tools/ath/athrd/athrd.c
526
D(MKKA), /* Japan */
tools/tools/ath/athrd/athrd.c
527
D(MKKC),
tools/tools/ath/athrd/athrd.c
529
D(NULL1),
tools/tools/ath/athrd/athrd.c
530
D(WORLD),
tools/tools/ath/athrd/athrd.c
531
D(DEBUG_REG_DMN),
tools/tools/netmap/bridge.c
102
D("%s: fwd len %u, rx[%d] -> tx[%d]",
tools/tools/netmap/bridge.c
129
D("%s fwd %d packets: rxring %u --> txring %u",
tools/tools/netmap/bridge.c
210
D("bad option %c %s", ch, optarg);
tools/tools/netmap/bridge.c
224
D("%s ignored, already have 2 interfaces",
tools/tools/netmap/bridge.c
255
D("missing interface");
tools/tools/netmap/bridge.c
259
D("invalid burst %d, set to 1024", burst);
tools/tools/netmap/bridge.c
263
D("invalid wait_link %d, set to 4", wait_link);
tools/tools/netmap/bridge.c
268
D("same interface, endpoint 0 goes to host");
tools/tools/netmap/bridge.c
272
D("same interface, loopbacking traffic");
tools/tools/netmap/bridge.c
279
D("cannot open %s", ifa);
tools/tools/netmap/bridge.c
285
D("cannot open %s", ifb);
tools/tools/netmap/bridge.c
290
D("------- zerocopy %ssupported", zerocopy ? "" : "NOT ");
tools/tools/netmap/bridge.c
297
D("Wait %d secs for link to come up...", wait_link);
tools/tools/netmap/bridge.c
299
D("Ready to go, %s 0x%x/%d <-> %s 0x%x/%d.",
tools/tools/netmap/bridge.c
350
D("poll %s [0] ev %x %x rx %d@%d tx %d,"
tools/tools/netmap/bridge.c
368
D("error on fd0, rx [%d,%d,%d)",
tools/tools/netmap/bridge.c
373
D("error on fd1, rx [%d,%d,%d)",
tools/tools/netmap/bridge.c
76
D("%s rxflags %x txflags %x",
tools/tools/netmap/lb.c
136
D("%s: queue full!", q->name);
tools/tools/netmap/lb.c
151
D("%s: queue empty!", q->name);
tools/tools/netmap/lb.c
221
D("out of memory");
tools/tools/netmap/lb.c
375
D("added %d buffers to netmap free list", tot);
tools/tools/netmap/lb.c
419
D("out of memory");
tools/tools/netmap/lb.c
428
D("name '%s' too long", spec);
tools/tools/netmap/lb.c
432
D("missing prefix before ':' in '%s'", spec);
tools/tools/netmap/lb.c
452
D("invalid number of pipes '%s' (must be at least 1)", end);
tools/tools/netmap/lb.c
633
D("interface is %s", optarg);
tools/tools/netmap/lb.c
635
D("ifname too long %s", optarg);
tools/tools/netmap/lb.c
654
D("requested %d extra buffers", glob_arg.extra_bufs);
tools/tools/netmap/lb.c
659
D("batch is %d", glob_arg.batch);
tools/tools/netmap/lb.c
664
D("link wait for up time is %d", glob_arg.wait_link);
tools/tools/netmap/lb.c
685
D("bad option %c %s", ch, optarg);
tools/tools/netmap/lb.c
692
D("missing interface name");
tools/tools/netmap/lb.c
712
D("failed to allocate the stats array");
tools/tools/netmap/lb.c
719
D("cannot parse %s", glob_arg.ifname);
tools/tools/netmap/lb.c
730
D("failed to allocate the counters snapshot buffer");
tools/tools/netmap/lb.c
737
D("cannot open %s", glob_arg.ifname);
tools/tools/netmap/lb.c
740
D("successfully opened %s", glob_arg.ifname);
tools/tools/netmap/lb.c
750
D("obtained %d extra buffers", extra_bufs);
tools/tools/netmap/lb.c
759
D("failed to allocated overflow queues descriptors");
tools/tools/netmap/lb.c
768
D("failed to allocate the free list");
tools/tools/netmap/lb.c
792
D("something went wrong: netmap reported %d extra_bufs, but the free list contained %d",
tools/tools/netmap/lb.c
811
D("opening pipe named %s", p->interface);
tools/tools/netmap/lb.c
816
D("cannot open %s", p->interface);
tools/tools/netmap/lb.c
819
D("failed to open pipe #%d in zero-copy mode, "
tools/tools/netmap/lb.c
827
D("successfully opened pipe #%d %s (tx slots: %d)",
tools/tools/netmap/lb.c
836
D("zerocopy %s",
tools/tools/netmap/lb.c
843
D("failed to allocate overflow queue for pipe %d", k);
tools/tools/netmap/lb.c
864
D("*** overflow queues disabled ***");
tools/tools/netmap/lb.c
871
D("unable to create the stats thread: %s", strerror(errno));
tools/tools/netmap/nmreplay.c
1148
D("bad option %c %s", ch, optarg);
tools/tools/netmap/nmreplay.c
1273
D("exiting on abort");
tools/tools/netmap/nmreplay.c
1395
that follow the specific option eg -D constant,20ms
tools/tools/netmap/nmreplay.c
1424
DELAY emulation -D option_arguments
tools/tools/netmap/nmreplay.c
1529
D("dmin %lld dmax %lld", (long long)dmin, (long long)dmax);
tools/tools/netmap/nmreplay.c
764
D("alloc %lld bytes for queue failed, exiting",(long long)need);
tools/tools/netmap/nmreplay.c
906
D("exiting on abort");
tools/tools/netmap/pkt-gen.c
1116
D("failed to open pcap file %s",
tools/tools/netmap/pkt-gen.c
1119
D("failed to read packet from %s",
tools/tools/netmap/pkt-gen.c
1122
D("out of memory");
tools/tools/netmap/pkt-gen.c
1222
D("Unable to get virtio-net header length");
tools/tools/netmap/pkt-gen.c
1228
D("Port requires virtio-net header, length = %d",
tools/tools/netmap/pkt-gen.c
1250
D("Unable to set virtio-net header length %d", l);
tools/tools/netmap/pkt-gen.c
1404
D("can only ping with 1 thread");
tools/tools/netmap/pkt-gen.c
1409
D("Warning: ping-pong with IPv6 not supported");
tools/tools/netmap/pkt-gen.c
1443
D("-- ouch, cannot send");
tools/tools/netmap/pkt-gen.c
1467
D("TXSYNC error on queue %d: %s", targ->me,
tools/tools/netmap/pkt-gen.c
1475
D("poll error on queue %d: %s", targ->me,
tools/tools/netmap/pkt-gen.c
1506
if (0) D("seq %d/%llu delta %d.%09d", seq,
tools/tools/netmap/pkt-gen.c
1532
D("count %d RTT: min %d av %d ns",
tools/tools/netmap/pkt-gen.c
1548
D("k: %d .. %d\n\t%s", 1<<kmin, 1<<k, buf);
tools/tools/netmap/pkt-gen.c
1565
D("RTT over %llu packets: min %d av %d ns",
tools/tools/netmap/pkt-gen.c
1592
D("can only reply ping with 1 thread");
tools/tools/netmap/pkt-gen.c
1596
D("understood ponger %llu but don't know how to do it",
tools/tools/netmap/pkt-gen.c
1600
D("Warning: ping-pong with IPv6 not supported");
tools/tools/netmap/pkt-gen.c
1611
D("poll error on queue %d: %s", targ->me,
tools/tools/netmap/pkt-gen.c
1701
D("start, fd %d main_fd %d", targ->fd, targ->g->main_fd);
tools/tools/netmap/pkt-gen.c
1714
D("writing to file desc %d", targ->g->main_fd);
tools/tools/netmap/pkt-gen.c
1759
D("frags %u frag_size %u", targ->frags, targ->frag_size);
tools/tools/netmap/pkt-gen.c
1788
D("ioctl error on queue %d: %s", targ->me,
tools/tools/netmap/pkt-gen.c
1796
D("poll error on queue %d: %s", targ->me,
tools/tools/netmap/pkt-gen.c
1801
D("poll error on %d ring %d-%d", pfd.fd,
tools/tools/netmap/pkt-gen.c
1847
D("flush tail %d head %d on thread %p",
tools/tools/netmap/pkt-gen.c
1938
D("reading from %s fd %d main_fd %d",
tools/tools/netmap/pkt-gen.c
1946
D("poll() error: %s", strerror(errno));
tools/tools/netmap/pkt-gen.c
1950
D("fd error");
tools/tools/netmap/pkt-gen.c
1987
D("ioctl error on queue %d: %s", targ->me,
tools/tools/netmap/pkt-gen.c
1999
D("poll err");
tools/tools/netmap/pkt-gen.c
2062
D("can only txseq ping with 1 thread");
tools/tools/netmap/pkt-gen.c
2067
D("Ignoring -n argument");
tools/tools/netmap/pkt-gen.c
2073
D("start, fd %d main_fd %d", targ->fd, targ->g->main_fd);
tools/tools/netmap/pkt-gen.c
2109
D("ioctl error on queue %d: %s", targ->me,
tools/tools/netmap/pkt-gen.c
2117
D("poll error on queue %d: %s", targ->me,
tools/tools/netmap/pkt-gen.c
2122
D("poll error on %d ring %d-%d", pfd.fd,
tools/tools/netmap/pkt-gen.c
2204
D("flush tail %d head %d on thread %p",
tools/tools/netmap/pkt-gen.c
2276
D("failed to allocate seq array");
tools/tools/netmap/pkt-gen.c
2280
D("reading from %s fd %d main_fd %d",
tools/tools/netmap/pkt-gen.c
2300
D("ioctl error on queue %d: %s", targ->me,
tools/tools/netmap/pkt-gen.c
2312
D("poll err");
tools/tools/netmap/pkt-gen.c
2694
D("Wait %d secs for phy reset", g->wait_link);
tools/tools/netmap/pkt-gen.c
2696
D("Ready...");
tools/tools/netmap/pkt-gen.c
2701
D("Unable to create thread %d: %s", i, strerror(errno));
tools/tools/netmap/pkt-gen.c
2780
D("%spps %s(%spkts %sbps in %llu usec) %.2f avg_batch %d min_space",
tools/tools/netmap/pkt-gen.c
2812
D("ouch, thread %d exited with error", i);
tools/tools/netmap/pkt-gen.c
2886
D("%s open successful", clonedev);
tools/tools/netmap/pkt-gen.c
2900
D("%s too long", dev);
tools/tools/netmap/pkt-gen.c
2908
D("failed to do a TUNSETIFF: %s", strerror(errno));
tools/tools/netmap/pkt-gen.c
2918
D("new name is %s", dev);
tools/tools/netmap/pkt-gen.c
2973
D("bad option %c %s", ch, optarg);
tools/tools/netmap/pkt-gen.c
3000
D("invalid frags %d [1..63], ignore", i);
tools/tools/netmap/pkt-gen.c
3019
D("unrecognised function %s", optarg);
tools/tools/netmap/pkt-gen.c
3035
D("interface is %s", optarg);
tools/tools/netmap/pkt-gen.c
3037
D("ifname too long %s", optarg);
tools/tools/netmap/pkt-gen.c
3122
D("WARNING: the 'C' option is deprecated, use the '+conf:' libnetmap option instead");
tools/tools/netmap/pkt-gen.c
3152
D("missing ifname");
tools/tools/netmap/pkt-gen.c
3158
D("using default burst size: %d", g.burst);
tools/tools/netmap/pkt-gen.c
3163
D("%d cpus is too high, have only %d cpus", g.cpus, i);
tools/tools/netmap/pkt-gen.c
3166
D("running on %d cpus (have %d)", g.cpus, i);
tools/tools/netmap/pkt-gen.c
3175
D("bad pktsize %d [16..%d]\n", g.pkt_size, MAX_PKTSIZE);
tools/tools/netmap/pkt-gen.c
3180
D("bad pktminsize %d [16..%d]\n", g.pkt_min_size, g.pkt_size);
tools/tools/netmap/pkt-gen.c
3188
D("Unable to retrieve source mac");
tools/tools/netmap/pkt-gen.c
3201
D("bad virtio-net-header length");
tools/tools/netmap/pkt-gen.c
3206
D("want to use tap %s", g.ifname);
tools/tools/netmap/pkt-gen.c
3209
D("cannot open tap %s", g.ifname);
tools/tools/netmap/pkt-gen.c
3219
D("cannot open pcap on %s", g.ifname);
tools/tools/netmap/pkt-gen.c
3223
D("using pcap on %s fileno %d", g.ifname, g.main_fd);
tools/tools/netmap/pkt-gen.c
3226
D("using a dummy send routine");
tools/tools/netmap/pkt-gen.c
3282
D("bad nthreads %d, have %d queues", g.nthreads, devqueues);
tools/tools/netmap/pkt-gen.c
3290
D("pkt_size (%d) must be <= mtu (%d)",
tools/tools/netmap/pkt-gen.c
3300
D("nifp at offset %"PRIu64" ntxqs %d nrxqs %d memid %d",
tools/tools/netmap/pkt-gen.c
3305
D(" TX%d at offset %p slots %d", i,
tools/tools/netmap/pkt-gen.c
3310
D(" RX%d at offset %p slots %d", i,
tools/tools/netmap/pkt-gen.c
3334
D("aborting");
tools/tools/netmap/pkt-gen.c
3341
D("--- SPECIAL OPTIONS:%s%s%s%s%s%s\n",
tools/tools/netmap/pkt-gen.c
3368
D("Sending %d packets every %jd.%09ld s",
tools/tools/netmap/pkt-gen.c
3376
D("failed to block SIGINT: %s", strerror(errno));
tools/tools/netmap/pkt-gen.c
3384
D("failed to install ^C handler: %s", strerror(errno));
tools/tools/netmap/pkt-gen.c
3388
D("failed to re-enable SIGINT: %s", strerror(errno));
tools/tools/netmap/pkt-gen.c
420
D("extract IP range from %s", r->name);
tools/tools/netmap/pkt-gen.c
424
D("strdup failed");
tools/tools/netmap/pkt-gen.c
476
D("range is %s:%d to %s:%d", start, r->port0, end, r->port1);
tools/tools/netmap/pkt-gen.c
478
D("range is %d@[%s]:%d to %d@[%s]:%d", r->ipv6.sgroup,
tools/tools/netmap/pkt-gen.c
495
D("extract MAC range from %s", r->name);
tools/tools/netmap/pkt-gen.c
499
D("invalid MAC address '%s'", r->name);
tools/tools/netmap/pkt-gen.c
517
D("%s starts at %s", r->name, ether_ntoa(&r->start));
tools/tools/netmap/pkt-gen.c
535
D("'%s' too long, cannot ask for MTU", ifname);
tools/tools/netmap/pkt-gen.c
541
D("socket() failed: %s", strerror(errno));
tools/tools/netmap/pkt-gen.c
550
D("ioctl(SIOCGIFMTU) failed: %s", strerror(errno));
tools/tools/netmap/pkt-gen.c
573
D("received control-C on thread %p", (void *)pthread_self());
tools/tools/netmap/pkt-gen.c
661
D("ignored config: %s", tok);
tools/tools/netmap/pkt-gen.c
665
D("txr %d txd %d rxr %d rxd %d",
tools/tools/netmap/pkt-gen.c
683
D("getifaddrs %s failed", ifname);
tools/tools/netmap/pkt-gen.c
705
D("source hwaddr %s", buf);
tools/tools/netmap/pkt-gen.c
727
D("Unable to set affinity: %s", strerror(errno));
usr.bin/calendar/pom.c
210
double A4, lprime, V, ldprime, D, Nm;
usr.bin/calendar/pom.c
234
D = ldprime - LambdaSol; /* sec 63 #2 */
usr.bin/calendar/pom.c
235
return(50 * (1 - cos(dtor(D)))); /* sec 63 #3 */
usr.bin/calendar/sunpos.c
103
double ZJ, D, T, M, epsilon, lambda, alpha, HA, UTHM;
usr.bin/calendar/sunpos.c
111
D = floor(365.25 * Y) + ZJ + inDD + UTHM / FHOURSPERDAY; /* 3 */
usr.bin/calendar/sunpos.c
112
T = D / 36525.0; /* 4 */
usr.bin/calendar/sunpos.c
168
comp("D", D, expD);
usr.bin/pom/pom.c
179
double A4, lprime, V, ldprime, D, Nm;
usr.bin/pom/pom.c
203
D = ldprime - LambdaSol; /* sec 63 #2 */
usr.bin/pom/pom.c
204
return(50 * (1 - cos(dtor(D)))); /* sec 63 #3 */
usr.sbin/bluetooth/bthidd/hid.c
73
#define MAGIC_MOUSE(D) (((D)->vendor_id == 0x5ac) && ((D)->product_id == 0x30d))