crypto/libressl/crypto/bn/bn_bpsw.c
123
bn_lucas(BIGNUM *U, BIGNUM *V, const BIGNUM *k, const BIGNUM *D,
crypto/libressl/crypto/bn/bn_bpsw.c
142
if (!bn_lucas_step(U, V, digit, D, n, ctx))
crypto/libressl/crypto/bn/bn_bpsw.c
159
bn_strong_lucas_test(int *is_prime, const BIGNUM *n, const BIGNUM *D,
crypto/libressl/crypto/bn/bn_bpsw.c
193
if (!bn_lucas(U, V, k, D, n, ctx))
crypto/libressl/crypto/bn/bn_bpsw.c
207
if (!bn_lucas_step(U, V, 0, D, n, ctx))
crypto/libressl/crypto/bn/bn_bpsw.c
240
BIGNUM *D, *two;
crypto/libressl/crypto/bn/bn_bpsw.c
259
if ((D = BN_CTX_get(ctx)) == NULL)
crypto/libressl/crypto/bn/bn_bpsw.c
265
if (!BN_set_word(D, 5))
crypto/libressl/crypto/bn/bn_bpsw.c
272
if ((jacobi_symbol = BN_kronecker(D, n, ctx)) == -2)
crypto/libressl/crypto/bn/bn_bpsw.c
286
if (!BN_uadd(D, D, two))
crypto/libressl/crypto/bn/bn_bpsw.c
288
BN_set_negative(D, sign == -1);
crypto/libressl/crypto/bn/bn_bpsw.c
291
if (!bn_strong_lucas_test(is_prime, n, D, ctx))
crypto/libressl/crypto/bn/bn_bpsw.c
63
bn_lucas_step(BIGNUM *U, BIGNUM *V, int digit, const BIGNUM *D,
crypto/libressl/crypto/bn/bn_bpsw.c
77
if (!BN_mul(tmp, D, tmp, ctx))
crypto/libressl/crypto/bn/bn_bpsw.c
94
if (!BN_mul(tmp, D, U, ctx))
crypto/libressl/crypto/bn/bn_gcd.c
255
BIGNUM *A, *B, *X, *Y, *M, *D, *T, *R = NULL;
crypto/libressl/crypto/bn/bn_gcd.c
272
if ((D = BN_CTX_get(ctx)) == NULL)
crypto/libressl/crypto/bn/bn_gcd.c
406
if (!BN_one(D))
crypto/libressl/crypto/bn/bn_gcd.c
416
if (!BN_one(D))
crypto/libressl/crypto/bn/bn_gcd.c
424
if (!BN_add(D,T,B)) goto err; /* use D (:= 3*B) as temp */
crypto/libressl/crypto/bn/bn_gcd.c
425
if (BN_ucmp(A, D) < 0) {
crypto/libressl/crypto/bn/bn_gcd.c
427
if (!BN_set_word(D, 2))
crypto/libressl/crypto/bn/bn_gcd.c
432
if (!BN_set_word(D, 3))
crypto/libressl/crypto/bn/bn_gcd.c
440
if (!BN_div_nonct(D, M, A, B, ctx))
crypto/libressl/crypto/bn/bn_gcd.c
476
if (BN_is_one(D)) {
crypto/libressl/crypto/bn/bn_gcd.c
480
if (BN_is_word(D, 2)) {
crypto/libressl/crypto/bn/bn_gcd.c
483
} else if (BN_is_word(D, 4)) {
crypto/libressl/crypto/bn/bn_gcd.c
486
} else if (D->top == 1) {
crypto/libressl/crypto/bn/bn_gcd.c
489
if (!BN_mul_word(tmp, D->d[0]))
crypto/libressl/crypto/bn/bn_gcd.c
492
if (!BN_mul(tmp, D,X, ctx))
crypto/libressl/crypto/bn/bn_gcd.c
570
BIGNUM *A, *B, *X, *Y, *M, *D, *T, *R = NULL;
crypto/libressl/crypto/bn/bn_gcd.c
589
if ((D = BN_CTX_get(ctx)) == NULL)
crypto/libressl/crypto/bn/bn_gcd.c
650
if (!BN_div_ct(D, M, pA, B, ctx))
crypto/libressl/crypto/bn/bn_gcd.c
684
if (!BN_mul(tmp, D, X, ctx))
crypto/libressl/crypto/bn/bn_gcd.c
740
BIGNUM *A, *B, *X, *Y, *M, *D, *T, *R = NULL;
crypto/libressl/crypto/bn/bn_gcd.c
763
if ((D = BN_CTX_get(ctx)) == NULL)
crypto/libressl/crypto/bn/bn_gcd.c
817
if (!BN_div_ct(D, M, pA, B, ctx))
crypto/libressl/crypto/bn/bn_gcd.c
851
if (!BN_mul(tmp, D, X, ctx))
crypto/libressl/crypto/md4/md4_dgst.c
103
D=c->D;
crypto/libressl/crypto/md4/md4_dgst.c
110
R0(A,B,C,D,X( 0), 3,0); HOST_c2l(data,l); X( 2)=l;
crypto/libressl/crypto/md4/md4_dgst.c
111
R0(D,A,B,C,X( 1), 7,0); HOST_c2l(data,l); X( 3)=l;
crypto/libressl/crypto/md4/md4_dgst.c
112
R0(C,D,A,B,X( 2),11,0); HOST_c2l(data,l); X( 4)=l;
crypto/libressl/crypto/md4/md4_dgst.c
113
R0(B,C,D,A,X( 3),19,0); HOST_c2l(data,l); X( 5)=l;
crypto/libressl/crypto/md4/md4_dgst.c
114
R0(A,B,C,D,X( 4), 3,0); HOST_c2l(data,l); X( 6)=l;
crypto/libressl/crypto/md4/md4_dgst.c
115
R0(D,A,B,C,X( 5), 7,0); HOST_c2l(data,l); X( 7)=l;
crypto/libressl/crypto/md4/md4_dgst.c
116
R0(C,D,A,B,X( 6),11,0); HOST_c2l(data,l); X( 8)=l;
crypto/libressl/crypto/md4/md4_dgst.c
117
R0(B,C,D,A,X( 7),19,0); HOST_c2l(data,l); X( 9)=l;
crypto/libressl/crypto/md4/md4_dgst.c
118
R0(A,B,C,D,X( 8), 3,0); HOST_c2l(data,l); X(10)=l;
crypto/libressl/crypto/md4/md4_dgst.c
119
R0(D,A,B,C,X( 9), 7,0); HOST_c2l(data,l); X(11)=l;
crypto/libressl/crypto/md4/md4_dgst.c
120
R0(C,D,A,B,X(10),11,0); HOST_c2l(data,l); X(12)=l;
crypto/libressl/crypto/md4/md4_dgst.c
121
R0(B,C,D,A,X(11),19,0); HOST_c2l(data,l); X(13)=l;
crypto/libressl/crypto/md4/md4_dgst.c
122
R0(A,B,C,D,X(12), 3,0); HOST_c2l(data,l); X(14)=l;
crypto/libressl/crypto/md4/md4_dgst.c
123
R0(D,A,B,C,X(13), 7,0); HOST_c2l(data,l); X(15)=l;
crypto/libressl/crypto/md4/md4_dgst.c
124
R0(C,D,A,B,X(14),11,0);
crypto/libressl/crypto/md4/md4_dgst.c
125
R0(B,C,D,A,X(15),19,0);
crypto/libressl/crypto/md4/md4_dgst.c
127
R1(A,B,C,D,X( 0), 3,0x5A827999L);
crypto/libressl/crypto/md4/md4_dgst.c
128
R1(D,A,B,C,X( 4), 5,0x5A827999L);
crypto/libressl/crypto/md4/md4_dgst.c
129
R1(C,D,A,B,X( 8), 9,0x5A827999L);
crypto/libressl/crypto/md4/md4_dgst.c
130
R1(B,C,D,A,X(12),13,0x5A827999L);
crypto/libressl/crypto/md4/md4_dgst.c
131
R1(A,B,C,D,X( 1), 3,0x5A827999L);
crypto/libressl/crypto/md4/md4_dgst.c
132
R1(D,A,B,C,X( 5), 5,0x5A827999L);
crypto/libressl/crypto/md4/md4_dgst.c
133
R1(C,D,A,B,X( 9), 9,0x5A827999L);
crypto/libressl/crypto/md4/md4_dgst.c
134
R1(B,C,D,A,X(13),13,0x5A827999L);
crypto/libressl/crypto/md4/md4_dgst.c
135
R1(A,B,C,D,X( 2), 3,0x5A827999L);
crypto/libressl/crypto/md4/md4_dgst.c
136
R1(D,A,B,C,X( 6), 5,0x5A827999L);
crypto/libressl/crypto/md4/md4_dgst.c
137
R1(C,D,A,B,X(10), 9,0x5A827999L);
crypto/libressl/crypto/md4/md4_dgst.c
138
R1(B,C,D,A,X(14),13,0x5A827999L);
crypto/libressl/crypto/md4/md4_dgst.c
139
R1(A,B,C,D,X( 3), 3,0x5A827999L);
crypto/libressl/crypto/md4/md4_dgst.c
140
R1(D,A,B,C,X( 7), 5,0x5A827999L);
crypto/libressl/crypto/md4/md4_dgst.c
141
R1(C,D,A,B,X(11), 9,0x5A827999L);
crypto/libressl/crypto/md4/md4_dgst.c
142
R1(B,C,D,A,X(15),13,0x5A827999L);
crypto/libressl/crypto/md4/md4_dgst.c
144
R2(A,B,C,D,X( 0), 3,0x6ED9EBA1L);
crypto/libressl/crypto/md4/md4_dgst.c
145
R2(D,A,B,C,X( 8), 9,0x6ED9EBA1L);
crypto/libressl/crypto/md4/md4_dgst.c
146
R2(C,D,A,B,X( 4),11,0x6ED9EBA1L);
crypto/libressl/crypto/md4/md4_dgst.c
147
R2(B,C,D,A,X(12),15,0x6ED9EBA1L);
crypto/libressl/crypto/md4/md4_dgst.c
148
R2(A,B,C,D,X( 2), 3,0x6ED9EBA1L);
crypto/libressl/crypto/md4/md4_dgst.c
149
R2(D,A,B,C,X(10), 9,0x6ED9EBA1L);
crypto/libressl/crypto/md4/md4_dgst.c
150
R2(C,D,A,B,X( 6),11,0x6ED9EBA1L);
crypto/libressl/crypto/md4/md4_dgst.c
151
R2(B,C,D,A,X(14),15,0x6ED9EBA1L);
crypto/libressl/crypto/md4/md4_dgst.c
152
R2(A,B,C,D,X( 1), 3,0x6ED9EBA1L);
crypto/libressl/crypto/md4/md4_dgst.c
153
R2(D,A,B,C,X( 9), 9,0x6ED9EBA1L);
crypto/libressl/crypto/md4/md4_dgst.c
154
R2(C,D,A,B,X( 5),11,0x6ED9EBA1L);
crypto/libressl/crypto/md4/md4_dgst.c
155
R2(B,C,D,A,X(13),15,0x6ED9EBA1L);
crypto/libressl/crypto/md4/md4_dgst.c
156
R2(A,B,C,D,X( 3), 3,0x6ED9EBA1L);
crypto/libressl/crypto/md4/md4_dgst.c
157
R2(D,A,B,C,X(11), 9,0x6ED9EBA1L);
crypto/libressl/crypto/md4/md4_dgst.c
158
R2(C,D,A,B,X( 7),11,0x6ED9EBA1L);
crypto/libressl/crypto/md4/md4_dgst.c
159
R2(B,C,D,A,X(15),15,0x6ED9EBA1L);
crypto/libressl/crypto/md4/md4_dgst.c
164
D = c->D += D;
crypto/libressl/crypto/md4/md4_dgst.c
78
c->D=INIT_DATA_D;
crypto/libressl/crypto/md4/md4_dgst.c
89
unsigned MD32_REG_T A,B,C,D,l;
crypto/libressl/crypto/md4/md4_locl.h
83
ll=(c)->D; HOST_l2c(ll,(s)); \
crypto/libressl/crypto/md5/md5_dgst.c
103
D=c->D;
crypto/libressl/crypto/md5/md5_dgst.c
109
R0(A,B,C,D,X( 0), 7,0xd76aa478L); HOST_c2l(data,l); X( 2)=l;
crypto/libressl/crypto/md5/md5_dgst.c
110
R0(D,A,B,C,X( 1),12,0xe8c7b756L); HOST_c2l(data,l); X( 3)=l;
crypto/libressl/crypto/md5/md5_dgst.c
111
R0(C,D,A,B,X( 2),17,0x242070dbL); HOST_c2l(data,l); X( 4)=l;
crypto/libressl/crypto/md5/md5_dgst.c
112
R0(B,C,D,A,X( 3),22,0xc1bdceeeL); HOST_c2l(data,l); X( 5)=l;
crypto/libressl/crypto/md5/md5_dgst.c
113
R0(A,B,C,D,X( 4), 7,0xf57c0fafL); HOST_c2l(data,l); X( 6)=l;
crypto/libressl/crypto/md5/md5_dgst.c
114
R0(D,A,B,C,X( 5),12,0x4787c62aL); HOST_c2l(data,l); X( 7)=l;
crypto/libressl/crypto/md5/md5_dgst.c
115
R0(C,D,A,B,X( 6),17,0xa8304613L); HOST_c2l(data,l); X( 8)=l;
crypto/libressl/crypto/md5/md5_dgst.c
116
R0(B,C,D,A,X( 7),22,0xfd469501L); HOST_c2l(data,l); X( 9)=l;
crypto/libressl/crypto/md5/md5_dgst.c
117
R0(A,B,C,D,X( 8), 7,0x698098d8L); HOST_c2l(data,l); X(10)=l;
crypto/libressl/crypto/md5/md5_dgst.c
118
R0(D,A,B,C,X( 9),12,0x8b44f7afL); HOST_c2l(data,l); X(11)=l;
crypto/libressl/crypto/md5/md5_dgst.c
119
R0(C,D,A,B,X(10),17,0xffff5bb1L); HOST_c2l(data,l); X(12)=l;
crypto/libressl/crypto/md5/md5_dgst.c
120
R0(B,C,D,A,X(11),22,0x895cd7beL); HOST_c2l(data,l); X(13)=l;
crypto/libressl/crypto/md5/md5_dgst.c
121
R0(A,B,C,D,X(12), 7,0x6b901122L); HOST_c2l(data,l); X(14)=l;
crypto/libressl/crypto/md5/md5_dgst.c
122
R0(D,A,B,C,X(13),12,0xfd987193L); HOST_c2l(data,l); X(15)=l;
crypto/libressl/crypto/md5/md5_dgst.c
123
R0(C,D,A,B,X(14),17,0xa679438eL);
crypto/libressl/crypto/md5/md5_dgst.c
124
R0(B,C,D,A,X(15),22,0x49b40821L);
crypto/libressl/crypto/md5/md5_dgst.c
126
R1(A,B,C,D,X( 1), 5,0xf61e2562L);
crypto/libressl/crypto/md5/md5_dgst.c
127
R1(D,A,B,C,X( 6), 9,0xc040b340L);
crypto/libressl/crypto/md5/md5_dgst.c
128
R1(C,D,A,B,X(11),14,0x265e5a51L);
crypto/libressl/crypto/md5/md5_dgst.c
129
R1(B,C,D,A,X( 0),20,0xe9b6c7aaL);
crypto/libressl/crypto/md5/md5_dgst.c
130
R1(A,B,C,D,X( 5), 5,0xd62f105dL);
crypto/libressl/crypto/md5/md5_dgst.c
131
R1(D,A,B,C,X(10), 9,0x02441453L);
crypto/libressl/crypto/md5/md5_dgst.c
132
R1(C,D,A,B,X(15),14,0xd8a1e681L);
crypto/libressl/crypto/md5/md5_dgst.c
133
R1(B,C,D,A,X( 4),20,0xe7d3fbc8L);
crypto/libressl/crypto/md5/md5_dgst.c
134
R1(A,B,C,D,X( 9), 5,0x21e1cde6L);
crypto/libressl/crypto/md5/md5_dgst.c
135
R1(D,A,B,C,X(14), 9,0xc33707d6L);
crypto/libressl/crypto/md5/md5_dgst.c
136
R1(C,D,A,B,X( 3),14,0xf4d50d87L);
crypto/libressl/crypto/md5/md5_dgst.c
137
R1(B,C,D,A,X( 8),20,0x455a14edL);
crypto/libressl/crypto/md5/md5_dgst.c
138
R1(A,B,C,D,X(13), 5,0xa9e3e905L);
crypto/libressl/crypto/md5/md5_dgst.c
139
R1(D,A,B,C,X( 2), 9,0xfcefa3f8L);
crypto/libressl/crypto/md5/md5_dgst.c
140
R1(C,D,A,B,X( 7),14,0x676f02d9L);
crypto/libressl/crypto/md5/md5_dgst.c
141
R1(B,C,D,A,X(12),20,0x8d2a4c8aL);
crypto/libressl/crypto/md5/md5_dgst.c
143
R2(A,B,C,D,X( 5), 4,0xfffa3942L);
crypto/libressl/crypto/md5/md5_dgst.c
144
R2(D,A,B,C,X( 8),11,0x8771f681L);
crypto/libressl/crypto/md5/md5_dgst.c
145
R2(C,D,A,B,X(11),16,0x6d9d6122L);
crypto/libressl/crypto/md5/md5_dgst.c
146
R2(B,C,D,A,X(14),23,0xfde5380cL);
crypto/libressl/crypto/md5/md5_dgst.c
147
R2(A,B,C,D,X( 1), 4,0xa4beea44L);
crypto/libressl/crypto/md5/md5_dgst.c
148
R2(D,A,B,C,X( 4),11,0x4bdecfa9L);
crypto/libressl/crypto/md5/md5_dgst.c
149
R2(C,D,A,B,X( 7),16,0xf6bb4b60L);
crypto/libressl/crypto/md5/md5_dgst.c
150
R2(B,C,D,A,X(10),23,0xbebfbc70L);
crypto/libressl/crypto/md5/md5_dgst.c
151
R2(A,B,C,D,X(13), 4,0x289b7ec6L);
crypto/libressl/crypto/md5/md5_dgst.c
152
R2(D,A,B,C,X( 0),11,0xeaa127faL);
crypto/libressl/crypto/md5/md5_dgst.c
153
R2(C,D,A,B,X( 3),16,0xd4ef3085L);
crypto/libressl/crypto/md5/md5_dgst.c
154
R2(B,C,D,A,X( 6),23,0x04881d05L);
crypto/libressl/crypto/md5/md5_dgst.c
155
R2(A,B,C,D,X( 9), 4,0xd9d4d039L);
crypto/libressl/crypto/md5/md5_dgst.c
156
R2(D,A,B,C,X(12),11,0xe6db99e5L);
crypto/libressl/crypto/md5/md5_dgst.c
157
R2(C,D,A,B,X(15),16,0x1fa27cf8L);
crypto/libressl/crypto/md5/md5_dgst.c
158
R2(B,C,D,A,X( 2),23,0xc4ac5665L);
crypto/libressl/crypto/md5/md5_dgst.c
160
R3(A,B,C,D,X( 0), 6,0xf4292244L);
crypto/libressl/crypto/md5/md5_dgst.c
161
R3(D,A,B,C,X( 7),10,0x432aff97L);
crypto/libressl/crypto/md5/md5_dgst.c
162
R3(C,D,A,B,X(14),15,0xab9423a7L);
crypto/libressl/crypto/md5/md5_dgst.c
163
R3(B,C,D,A,X( 5),21,0xfc93a039L);
crypto/libressl/crypto/md5/md5_dgst.c
164
R3(A,B,C,D,X(12), 6,0x655b59c3L);
crypto/libressl/crypto/md5/md5_dgst.c
165
R3(D,A,B,C,X( 3),10,0x8f0ccc92L);
crypto/libressl/crypto/md5/md5_dgst.c
166
R3(C,D,A,B,X(10),15,0xffeff47dL);
crypto/libressl/crypto/md5/md5_dgst.c
167
R3(B,C,D,A,X( 1),21,0x85845dd1L);
crypto/libressl/crypto/md5/md5_dgst.c
168
R3(A,B,C,D,X( 8), 6,0x6fa87e4fL);
crypto/libressl/crypto/md5/md5_dgst.c
169
R3(D,A,B,C,X(15),10,0xfe2ce6e0L);
crypto/libressl/crypto/md5/md5_dgst.c
170
R3(C,D,A,B,X( 6),15,0xa3014314L);
crypto/libressl/crypto/md5/md5_dgst.c
171
R3(B,C,D,A,X(13),21,0x4e0811a1L);
crypto/libressl/crypto/md5/md5_dgst.c
172
R3(A,B,C,D,X( 4), 6,0xf7537e82L);
crypto/libressl/crypto/md5/md5_dgst.c
173
R3(D,A,B,C,X(11),10,0xbd3af235L);
crypto/libressl/crypto/md5/md5_dgst.c
174
R3(C,D,A,B,X( 2),15,0x2ad7d2bbL);
crypto/libressl/crypto/md5/md5_dgst.c
175
R3(B,C,D,A,X( 9),21,0xeb86d391L);
crypto/libressl/crypto/md5/md5_dgst.c
180
D = c->D += D;
crypto/libressl/crypto/md5/md5_dgst.c
78
c->D=INIT_DATA_D;
crypto/libressl/crypto/md5/md5_dgst.c
89
unsigned MD32_REG_T A,B,C,D,l;
crypto/libressl/crypto/md5/md5_locl.h
94
ll=(c)->D; HOST_l2c(ll,(s)); \
crypto/libressl/crypto/pkcs12/p12_key.c
103
unsigned char *B = NULL, *D = NULL, *I = NULL, *Ai = NULL;
crypto/libressl/crypto/pkcs12/p12_key.c
117
if ((D = malloc(v)) == NULL)
crypto/libressl/crypto/pkcs12/p12_key.c
136
D[i] = id;
crypto/libressl/crypto/pkcs12/p12_key.c
147
if (!EVP_DigestUpdate(ctx, D, v))
crypto/libressl/crypto/pkcs12/p12_key.c
190
free(D);
crypto/libressl/crypto/ripemd/rmd_dgst.c
104
A=ctx->A; B=ctx->B; C=ctx->C; D=ctx->D; E=ctx->E;
crypto/libressl/crypto/ripemd/rmd_dgst.c
107
RIP1(A,B,C,D,E,WL00,SL00); HOST_c2l(data,l); X( 2)=l;
crypto/libressl/crypto/ripemd/rmd_dgst.c
108
RIP1(E,A,B,C,D,WL01,SL01); HOST_c2l(data,l); X( 3)=l;
crypto/libressl/crypto/ripemd/rmd_dgst.c
109
RIP1(D,E,A,B,C,WL02,SL02); HOST_c2l(data,l); X( 4)=l;
crypto/libressl/crypto/ripemd/rmd_dgst.c
110
RIP1(C,D,E,A,B,WL03,SL03); HOST_c2l(data,l); X( 5)=l;
crypto/libressl/crypto/ripemd/rmd_dgst.c
111
RIP1(B,C,D,E,A,WL04,SL04); HOST_c2l(data,l); X( 6)=l;
crypto/libressl/crypto/ripemd/rmd_dgst.c
112
RIP1(A,B,C,D,E,WL05,SL05); HOST_c2l(data,l); X( 7)=l;
crypto/libressl/crypto/ripemd/rmd_dgst.c
113
RIP1(E,A,B,C,D,WL06,SL06); HOST_c2l(data,l); X( 8)=l;
crypto/libressl/crypto/ripemd/rmd_dgst.c
114
RIP1(D,E,A,B,C,WL07,SL07); HOST_c2l(data,l); X( 9)=l;
crypto/libressl/crypto/ripemd/rmd_dgst.c
115
RIP1(C,D,E,A,B,WL08,SL08); HOST_c2l(data,l); X(10)=l;
crypto/libressl/crypto/ripemd/rmd_dgst.c
116
RIP1(B,C,D,E,A,WL09,SL09); HOST_c2l(data,l); X(11)=l;
crypto/libressl/crypto/ripemd/rmd_dgst.c
117
RIP1(A,B,C,D,E,WL10,SL10); HOST_c2l(data,l); X(12)=l;
crypto/libressl/crypto/ripemd/rmd_dgst.c
118
RIP1(E,A,B,C,D,WL11,SL11); HOST_c2l(data,l); X(13)=l;
crypto/libressl/crypto/ripemd/rmd_dgst.c
119
RIP1(D,E,A,B,C,WL12,SL12); HOST_c2l(data,l); X(14)=l;
crypto/libressl/crypto/ripemd/rmd_dgst.c
120
RIP1(C,D,E,A,B,WL13,SL13); HOST_c2l(data,l); X(15)=l;
crypto/libressl/crypto/ripemd/rmd_dgst.c
121
RIP1(B,C,D,E,A,WL14,SL14);
crypto/libressl/crypto/ripemd/rmd_dgst.c
122
RIP1(A,B,C,D,E,WL15,SL15);
crypto/libressl/crypto/ripemd/rmd_dgst.c
124
RIP2(E,A,B,C,D,WL16,SL16,KL1);
crypto/libressl/crypto/ripemd/rmd_dgst.c
125
RIP2(D,E,A,B,C,WL17,SL17,KL1);
crypto/libressl/crypto/ripemd/rmd_dgst.c
126
RIP2(C,D,E,A,B,WL18,SL18,KL1);
crypto/libressl/crypto/ripemd/rmd_dgst.c
127
RIP2(B,C,D,E,A,WL19,SL19,KL1);
crypto/libressl/crypto/ripemd/rmd_dgst.c
128
RIP2(A,B,C,D,E,WL20,SL20,KL1);
crypto/libressl/crypto/ripemd/rmd_dgst.c
129
RIP2(E,A,B,C,D,WL21,SL21,KL1);
crypto/libressl/crypto/ripemd/rmd_dgst.c
130
RIP2(D,E,A,B,C,WL22,SL22,KL1);
crypto/libressl/crypto/ripemd/rmd_dgst.c
131
RIP2(C,D,E,A,B,WL23,SL23,KL1);
crypto/libressl/crypto/ripemd/rmd_dgst.c
132
RIP2(B,C,D,E,A,WL24,SL24,KL1);
crypto/libressl/crypto/ripemd/rmd_dgst.c
133
RIP2(A,B,C,D,E,WL25,SL25,KL1);
crypto/libressl/crypto/ripemd/rmd_dgst.c
134
RIP2(E,A,B,C,D,WL26,SL26,KL1);
crypto/libressl/crypto/ripemd/rmd_dgst.c
135
RIP2(D,E,A,B,C,WL27,SL27,KL1);
crypto/libressl/crypto/ripemd/rmd_dgst.c
136
RIP2(C,D,E,A,B,WL28,SL28,KL1);
crypto/libressl/crypto/ripemd/rmd_dgst.c
137
RIP2(B,C,D,E,A,WL29,SL29,KL1);
crypto/libressl/crypto/ripemd/rmd_dgst.c
138
RIP2(A,B,C,D,E,WL30,SL30,KL1);
crypto/libressl/crypto/ripemd/rmd_dgst.c
139
RIP2(E,A,B,C,D,WL31,SL31,KL1);
crypto/libressl/crypto/ripemd/rmd_dgst.c
141
RIP3(D,E,A,B,C,WL32,SL32,KL2);
crypto/libressl/crypto/ripemd/rmd_dgst.c
142
RIP3(C,D,E,A,B,WL33,SL33,KL2);
crypto/libressl/crypto/ripemd/rmd_dgst.c
143
RIP3(B,C,D,E,A,WL34,SL34,KL2);
crypto/libressl/crypto/ripemd/rmd_dgst.c
144
RIP3(A,B,C,D,E,WL35,SL35,KL2);
crypto/libressl/crypto/ripemd/rmd_dgst.c
145
RIP3(E,A,B,C,D,WL36,SL36,KL2);
crypto/libressl/crypto/ripemd/rmd_dgst.c
146
RIP3(D,E,A,B,C,WL37,SL37,KL2);
crypto/libressl/crypto/ripemd/rmd_dgst.c
147
RIP3(C,D,E,A,B,WL38,SL38,KL2);
crypto/libressl/crypto/ripemd/rmd_dgst.c
148
RIP3(B,C,D,E,A,WL39,SL39,KL2);
crypto/libressl/crypto/ripemd/rmd_dgst.c
149
RIP3(A,B,C,D,E,WL40,SL40,KL2);
crypto/libressl/crypto/ripemd/rmd_dgst.c
150
RIP3(E,A,B,C,D,WL41,SL41,KL2);
crypto/libressl/crypto/ripemd/rmd_dgst.c
151
RIP3(D,E,A,B,C,WL42,SL42,KL2);
crypto/libressl/crypto/ripemd/rmd_dgst.c
152
RIP3(C,D,E,A,B,WL43,SL43,KL2);
crypto/libressl/crypto/ripemd/rmd_dgst.c
153
RIP3(B,C,D,E,A,WL44,SL44,KL2);
crypto/libressl/crypto/ripemd/rmd_dgst.c
154
RIP3(A,B,C,D,E,WL45,SL45,KL2);
crypto/libressl/crypto/ripemd/rmd_dgst.c
155
RIP3(E,A,B,C,D,WL46,SL46,KL2);
crypto/libressl/crypto/ripemd/rmd_dgst.c
156
RIP3(D,E,A,B,C,WL47,SL47,KL2);
crypto/libressl/crypto/ripemd/rmd_dgst.c
158
RIP4(C,D,E,A,B,WL48,SL48,KL3);
crypto/libressl/crypto/ripemd/rmd_dgst.c
159
RIP4(B,C,D,E,A,WL49,SL49,KL3);
crypto/libressl/crypto/ripemd/rmd_dgst.c
160
RIP4(A,B,C,D,E,WL50,SL50,KL3);
crypto/libressl/crypto/ripemd/rmd_dgst.c
161
RIP4(E,A,B,C,D,WL51,SL51,KL3);
crypto/libressl/crypto/ripemd/rmd_dgst.c
162
RIP4(D,E,A,B,C,WL52,SL52,KL3);
crypto/libressl/crypto/ripemd/rmd_dgst.c
163
RIP4(C,D,E,A,B,WL53,SL53,KL3);
crypto/libressl/crypto/ripemd/rmd_dgst.c
164
RIP4(B,C,D,E,A,WL54,SL54,KL3);
crypto/libressl/crypto/ripemd/rmd_dgst.c
165
RIP4(A,B,C,D,E,WL55,SL55,KL3);
crypto/libressl/crypto/ripemd/rmd_dgst.c
166
RIP4(E,A,B,C,D,WL56,SL56,KL3);
crypto/libressl/crypto/ripemd/rmd_dgst.c
167
RIP4(D,E,A,B,C,WL57,SL57,KL3);
crypto/libressl/crypto/ripemd/rmd_dgst.c
168
RIP4(C,D,E,A,B,WL58,SL58,KL3);
crypto/libressl/crypto/ripemd/rmd_dgst.c
169
RIP4(B,C,D,E,A,WL59,SL59,KL3);
crypto/libressl/crypto/ripemd/rmd_dgst.c
170
RIP4(A,B,C,D,E,WL60,SL60,KL3);
crypto/libressl/crypto/ripemd/rmd_dgst.c
171
RIP4(E,A,B,C,D,WL61,SL61,KL3);
crypto/libressl/crypto/ripemd/rmd_dgst.c
172
RIP4(D,E,A,B,C,WL62,SL62,KL3);
crypto/libressl/crypto/ripemd/rmd_dgst.c
173
RIP4(C,D,E,A,B,WL63,SL63,KL3);
crypto/libressl/crypto/ripemd/rmd_dgst.c
175
RIP5(B,C,D,E,A,WL64,SL64,KL4);
crypto/libressl/crypto/ripemd/rmd_dgst.c
176
RIP5(A,B,C,D,E,WL65,SL65,KL4);
crypto/libressl/crypto/ripemd/rmd_dgst.c
177
RIP5(E,A,B,C,D,WL66,SL66,KL4);
crypto/libressl/crypto/ripemd/rmd_dgst.c
178
RIP5(D,E,A,B,C,WL67,SL67,KL4);
crypto/libressl/crypto/ripemd/rmd_dgst.c
179
RIP5(C,D,E,A,B,WL68,SL68,KL4);
crypto/libressl/crypto/ripemd/rmd_dgst.c
180
RIP5(B,C,D,E,A,WL69,SL69,KL4);
crypto/libressl/crypto/ripemd/rmd_dgst.c
181
RIP5(A,B,C,D,E,WL70,SL70,KL4);
crypto/libressl/crypto/ripemd/rmd_dgst.c
182
RIP5(E,A,B,C,D,WL71,SL71,KL4);
crypto/libressl/crypto/ripemd/rmd_dgst.c
183
RIP5(D,E,A,B,C,WL72,SL72,KL4);
crypto/libressl/crypto/ripemd/rmd_dgst.c
184
RIP5(C,D,E,A,B,WL73,SL73,KL4);
crypto/libressl/crypto/ripemd/rmd_dgst.c
185
RIP5(B,C,D,E,A,WL74,SL74,KL4);
crypto/libressl/crypto/ripemd/rmd_dgst.c
186
RIP5(A,B,C,D,E,WL75,SL75,KL4);
crypto/libressl/crypto/ripemd/rmd_dgst.c
187
RIP5(E,A,B,C,D,WL76,SL76,KL4);
crypto/libressl/crypto/ripemd/rmd_dgst.c
188
RIP5(D,E,A,B,C,WL77,SL77,KL4);
crypto/libressl/crypto/ripemd/rmd_dgst.c
189
RIP5(C,D,E,A,B,WL78,SL78,KL4);
crypto/libressl/crypto/ripemd/rmd_dgst.c
190
RIP5(B,C,D,E,A,WL79,SL79,KL4);
crypto/libressl/crypto/ripemd/rmd_dgst.c
192
a=A; b=B; c=C; d=D; e=E;
crypto/libressl/crypto/ripemd/rmd_dgst.c
194
A=ctx->A; B=ctx->B; C=ctx->C; D=ctx->D; E=ctx->E;
crypto/libressl/crypto/ripemd/rmd_dgst.c
196
RIP5(A,B,C,D,E,WR00,SR00,KR0);
crypto/libressl/crypto/ripemd/rmd_dgst.c
197
RIP5(E,A,B,C,D,WR01,SR01,KR0);
crypto/libressl/crypto/ripemd/rmd_dgst.c
198
RIP5(D,E,A,B,C,WR02,SR02,KR0);
crypto/libressl/crypto/ripemd/rmd_dgst.c
199
RIP5(C,D,E,A,B,WR03,SR03,KR0);
crypto/libressl/crypto/ripemd/rmd_dgst.c
200
RIP5(B,C,D,E,A,WR04,SR04,KR0);
crypto/libressl/crypto/ripemd/rmd_dgst.c
201
RIP5(A,B,C,D,E,WR05,SR05,KR0);
crypto/libressl/crypto/ripemd/rmd_dgst.c
202
RIP5(E,A,B,C,D,WR06,SR06,KR0);
crypto/libressl/crypto/ripemd/rmd_dgst.c
203
RIP5(D,E,A,B,C,WR07,SR07,KR0);
crypto/libressl/crypto/ripemd/rmd_dgst.c
204
RIP5(C,D,E,A,B,WR08,SR08,KR0);
crypto/libressl/crypto/ripemd/rmd_dgst.c
205
RIP5(B,C,D,E,A,WR09,SR09,KR0);
crypto/libressl/crypto/ripemd/rmd_dgst.c
206
RIP5(A,B,C,D,E,WR10,SR10,KR0);
crypto/libressl/crypto/ripemd/rmd_dgst.c
207
RIP5(E,A,B,C,D,WR11,SR11,KR0);
crypto/libressl/crypto/ripemd/rmd_dgst.c
208
RIP5(D,E,A,B,C,WR12,SR12,KR0);
crypto/libressl/crypto/ripemd/rmd_dgst.c
209
RIP5(C,D,E,A,B,WR13,SR13,KR0);
crypto/libressl/crypto/ripemd/rmd_dgst.c
210
RIP5(B,C,D,E,A,WR14,SR14,KR0);
crypto/libressl/crypto/ripemd/rmd_dgst.c
211
RIP5(A,B,C,D,E,WR15,SR15,KR0);
crypto/libressl/crypto/ripemd/rmd_dgst.c
213
RIP4(E,A,B,C,D,WR16,SR16,KR1);
crypto/libressl/crypto/ripemd/rmd_dgst.c
214
RIP4(D,E,A,B,C,WR17,SR17,KR1);
crypto/libressl/crypto/ripemd/rmd_dgst.c
215
RIP4(C,D,E,A,B,WR18,SR18,KR1);
crypto/libressl/crypto/ripemd/rmd_dgst.c
216
RIP4(B,C,D,E,A,WR19,SR19,KR1);
crypto/libressl/crypto/ripemd/rmd_dgst.c
217
RIP4(A,B,C,D,E,WR20,SR20,KR1);
crypto/libressl/crypto/ripemd/rmd_dgst.c
218
RIP4(E,A,B,C,D,WR21,SR21,KR1);
crypto/libressl/crypto/ripemd/rmd_dgst.c
219
RIP4(D,E,A,B,C,WR22,SR22,KR1);
crypto/libressl/crypto/ripemd/rmd_dgst.c
220
RIP4(C,D,E,A,B,WR23,SR23,KR1);
crypto/libressl/crypto/ripemd/rmd_dgst.c
221
RIP4(B,C,D,E,A,WR24,SR24,KR1);
crypto/libressl/crypto/ripemd/rmd_dgst.c
222
RIP4(A,B,C,D,E,WR25,SR25,KR1);
crypto/libressl/crypto/ripemd/rmd_dgst.c
223
RIP4(E,A,B,C,D,WR26,SR26,KR1);
crypto/libressl/crypto/ripemd/rmd_dgst.c
224
RIP4(D,E,A,B,C,WR27,SR27,KR1);
crypto/libressl/crypto/ripemd/rmd_dgst.c
225
RIP4(C,D,E,A,B,WR28,SR28,KR1);
crypto/libressl/crypto/ripemd/rmd_dgst.c
226
RIP4(B,C,D,E,A,WR29,SR29,KR1);
crypto/libressl/crypto/ripemd/rmd_dgst.c
227
RIP4(A,B,C,D,E,WR30,SR30,KR1);
crypto/libressl/crypto/ripemd/rmd_dgst.c
228
RIP4(E,A,B,C,D,WR31,SR31,KR1);
crypto/libressl/crypto/ripemd/rmd_dgst.c
230
RIP3(D,E,A,B,C,WR32,SR32,KR2);
crypto/libressl/crypto/ripemd/rmd_dgst.c
231
RIP3(C,D,E,A,B,WR33,SR33,KR2);
crypto/libressl/crypto/ripemd/rmd_dgst.c
232
RIP3(B,C,D,E,A,WR34,SR34,KR2);
crypto/libressl/crypto/ripemd/rmd_dgst.c
233
RIP3(A,B,C,D,E,WR35,SR35,KR2);
crypto/libressl/crypto/ripemd/rmd_dgst.c
234
RIP3(E,A,B,C,D,WR36,SR36,KR2);
crypto/libressl/crypto/ripemd/rmd_dgst.c
235
RIP3(D,E,A,B,C,WR37,SR37,KR2);
crypto/libressl/crypto/ripemd/rmd_dgst.c
236
RIP3(C,D,E,A,B,WR38,SR38,KR2);
crypto/libressl/crypto/ripemd/rmd_dgst.c
237
RIP3(B,C,D,E,A,WR39,SR39,KR2);
crypto/libressl/crypto/ripemd/rmd_dgst.c
238
RIP3(A,B,C,D,E,WR40,SR40,KR2);
crypto/libressl/crypto/ripemd/rmd_dgst.c
239
RIP3(E,A,B,C,D,WR41,SR41,KR2);
crypto/libressl/crypto/ripemd/rmd_dgst.c
240
RIP3(D,E,A,B,C,WR42,SR42,KR2);
crypto/libressl/crypto/ripemd/rmd_dgst.c
241
RIP3(C,D,E,A,B,WR43,SR43,KR2);
crypto/libressl/crypto/ripemd/rmd_dgst.c
242
RIP3(B,C,D,E,A,WR44,SR44,KR2);
crypto/libressl/crypto/ripemd/rmd_dgst.c
243
RIP3(A,B,C,D,E,WR45,SR45,KR2);
crypto/libressl/crypto/ripemd/rmd_dgst.c
244
RIP3(E,A,B,C,D,WR46,SR46,KR2);
crypto/libressl/crypto/ripemd/rmd_dgst.c
245
RIP3(D,E,A,B,C,WR47,SR47,KR2);
crypto/libressl/crypto/ripemd/rmd_dgst.c
247
RIP2(C,D,E,A,B,WR48,SR48,KR3);
crypto/libressl/crypto/ripemd/rmd_dgst.c
248
RIP2(B,C,D,E,A,WR49,SR49,KR3);
crypto/libressl/crypto/ripemd/rmd_dgst.c
249
RIP2(A,B,C,D,E,WR50,SR50,KR3);
crypto/libressl/crypto/ripemd/rmd_dgst.c
250
RIP2(E,A,B,C,D,WR51,SR51,KR3);
crypto/libressl/crypto/ripemd/rmd_dgst.c
251
RIP2(D,E,A,B,C,WR52,SR52,KR3);
crypto/libressl/crypto/ripemd/rmd_dgst.c
252
RIP2(C,D,E,A,B,WR53,SR53,KR3);
crypto/libressl/crypto/ripemd/rmd_dgst.c
253
RIP2(B,C,D,E,A,WR54,SR54,KR3);
crypto/libressl/crypto/ripemd/rmd_dgst.c
254
RIP2(A,B,C,D,E,WR55,SR55,KR3);
crypto/libressl/crypto/ripemd/rmd_dgst.c
255
RIP2(E,A,B,C,D,WR56,SR56,KR3);
crypto/libressl/crypto/ripemd/rmd_dgst.c
256
RIP2(D,E,A,B,C,WR57,SR57,KR3);
crypto/libressl/crypto/ripemd/rmd_dgst.c
257
RIP2(C,D,E,A,B,WR58,SR58,KR3);
crypto/libressl/crypto/ripemd/rmd_dgst.c
258
RIP2(B,C,D,E,A,WR59,SR59,KR3);
crypto/libressl/crypto/ripemd/rmd_dgst.c
259
RIP2(A,B,C,D,E,WR60,SR60,KR3);
crypto/libressl/crypto/ripemd/rmd_dgst.c
260
RIP2(E,A,B,C,D,WR61,SR61,KR3);
crypto/libressl/crypto/ripemd/rmd_dgst.c
261
RIP2(D,E,A,B,C,WR62,SR62,KR3);
crypto/libressl/crypto/ripemd/rmd_dgst.c
262
RIP2(C,D,E,A,B,WR63,SR63,KR3);
crypto/libressl/crypto/ripemd/rmd_dgst.c
264
RIP1(B,C,D,E,A,WR64,SR64);
crypto/libressl/crypto/ripemd/rmd_dgst.c
265
RIP1(A,B,C,D,E,WR65,SR65);
crypto/libressl/crypto/ripemd/rmd_dgst.c
266
RIP1(E,A,B,C,D,WR66,SR66);
crypto/libressl/crypto/ripemd/rmd_dgst.c
267
RIP1(D,E,A,B,C,WR67,SR67);
crypto/libressl/crypto/ripemd/rmd_dgst.c
268
RIP1(C,D,E,A,B,WR68,SR68);
crypto/libressl/crypto/ripemd/rmd_dgst.c
269
RIP1(B,C,D,E,A,WR69,SR69);
crypto/libressl/crypto/ripemd/rmd_dgst.c
270
RIP1(A,B,C,D,E,WR70,SR70);
crypto/libressl/crypto/ripemd/rmd_dgst.c
271
RIP1(E,A,B,C,D,WR71,SR71);
crypto/libressl/crypto/ripemd/rmd_dgst.c
272
RIP1(D,E,A,B,C,WR72,SR72);
crypto/libressl/crypto/ripemd/rmd_dgst.c
273
RIP1(C,D,E,A,B,WR73,SR73);
crypto/libressl/crypto/ripemd/rmd_dgst.c
274
RIP1(B,C,D,E,A,WR74,SR74);
crypto/libressl/crypto/ripemd/rmd_dgst.c
275
RIP1(A,B,C,D,E,WR75,SR75);
crypto/libressl/crypto/ripemd/rmd_dgst.c
276
RIP1(E,A,B,C,D,WR76,SR76);
crypto/libressl/crypto/ripemd/rmd_dgst.c
277
RIP1(D,E,A,B,C,WR77,SR77);
crypto/libressl/crypto/ripemd/rmd_dgst.c
278
RIP1(C,D,E,A,B,WR78,SR78);
crypto/libressl/crypto/ripemd/rmd_dgst.c
279
RIP1(B,C,D,E,A,WR79,SR79);
crypto/libressl/crypto/ripemd/rmd_dgst.c
281
D =ctx->B+c+D;
crypto/libressl/crypto/ripemd/rmd_dgst.c
283
ctx->C=ctx->D+e+A;
crypto/libressl/crypto/ripemd/rmd_dgst.c
284
ctx->D=ctx->E+a+B;
crypto/libressl/crypto/ripemd/rmd_dgst.c
286
ctx->A=D;
crypto/libressl/crypto/ripemd/rmd_dgst.c
77
c->D=RIPEMD160_D;
crypto/libressl/crypto/ripemd/rmd_dgst.c
89
unsigned MD32_REG_T A,B,C,D,E;
crypto/libressl/crypto/ripemd/rmd_locl.h
94
ll=(c)->D; HOST_l2c(ll,(s)); \
crypto/libressl/crypto/sha/sha_locl.h
193
unsigned MD32_REG_T A,B,C,D,E,T,l;
crypto/libressl/crypto/sha/sha_locl.h
204
D=c->h3;
crypto/libressl/crypto/sha/sha_locl.h
216
BODY_00_15( 0,A,B,C,D,E,T,X( 0)); X( 2) = W[ 2];
crypto/libressl/crypto/sha/sha_locl.h
217
BODY_00_15( 1,T,A,B,C,D,E,X( 1)); X( 3) = W[ 3];
crypto/libressl/crypto/sha/sha_locl.h
218
BODY_00_15( 2,E,T,A,B,C,D,X( 2)); X( 4) = W[ 4];
crypto/libressl/crypto/sha/sha_locl.h
219
BODY_00_15( 3,D,E,T,A,B,C,X( 3)); X( 5) = W[ 5];
crypto/libressl/crypto/sha/sha_locl.h
220
BODY_00_15( 4,C,D,E,T,A,B,X( 4)); X( 6) = W[ 6];
crypto/libressl/crypto/sha/sha_locl.h
221
BODY_00_15( 5,B,C,D,E,T,A,X( 5)); X( 7) = W[ 7];
crypto/libressl/crypto/sha/sha_locl.h
222
BODY_00_15( 6,A,B,C,D,E,T,X( 6)); X( 8) = W[ 8];
crypto/libressl/crypto/sha/sha_locl.h
223
BODY_00_15( 7,T,A,B,C,D,E,X( 7)); X( 9) = W[ 9];
crypto/libressl/crypto/sha/sha_locl.h
224
BODY_00_15( 8,E,T,A,B,C,D,X( 8)); X(10) = W[10];
crypto/libressl/crypto/sha/sha_locl.h
225
BODY_00_15( 9,D,E,T,A,B,C,X( 9)); X(11) = W[11];
crypto/libressl/crypto/sha/sha_locl.h
226
BODY_00_15(10,C,D,E,T,A,B,X(10)); X(12) = W[12];
crypto/libressl/crypto/sha/sha_locl.h
227
BODY_00_15(11,B,C,D,E,T,A,X(11)); X(13) = W[13];
crypto/libressl/crypto/sha/sha_locl.h
228
BODY_00_15(12,A,B,C,D,E,T,X(12)); X(14) = W[14];
crypto/libressl/crypto/sha/sha_locl.h
229
BODY_00_15(13,T,A,B,C,D,E,X(13)); X(15) = W[15];
crypto/libressl/crypto/sha/sha_locl.h
230
BODY_00_15(14,E,T,A,B,C,D,X(14));
crypto/libressl/crypto/sha/sha_locl.h
231
BODY_00_15(15,D,E,T,A,B,C,X(15));
crypto/libressl/crypto/sha/sha_locl.h
238
BODY_00_15( 0,A,B,C,D,E,T,X( 0)); HOST_c2l(data,l); X( 2)=l;
crypto/libressl/crypto/sha/sha_locl.h
239
BODY_00_15( 1,T,A,B,C,D,E,X( 1)); HOST_c2l(data,l); X( 3)=l;
crypto/libressl/crypto/sha/sha_locl.h
240
BODY_00_15( 2,E,T,A,B,C,D,X( 2)); HOST_c2l(data,l); X( 4)=l;
crypto/libressl/crypto/sha/sha_locl.h
241
BODY_00_15( 3,D,E,T,A,B,C,X( 3)); HOST_c2l(data,l); X( 5)=l;
crypto/libressl/crypto/sha/sha_locl.h
242
BODY_00_15( 4,C,D,E,T,A,B,X( 4)); HOST_c2l(data,l); X( 6)=l;
crypto/libressl/crypto/sha/sha_locl.h
243
BODY_00_15( 5,B,C,D,E,T,A,X( 5)); HOST_c2l(data,l); X( 7)=l;
crypto/libressl/crypto/sha/sha_locl.h
244
BODY_00_15( 6,A,B,C,D,E,T,X( 6)); HOST_c2l(data,l); X( 8)=l;
crypto/libressl/crypto/sha/sha_locl.h
245
BODY_00_15( 7,T,A,B,C,D,E,X( 7)); HOST_c2l(data,l); X( 9)=l;
crypto/libressl/crypto/sha/sha_locl.h
246
BODY_00_15( 8,E,T,A,B,C,D,X( 8)); HOST_c2l(data,l); X(10)=l;
crypto/libressl/crypto/sha/sha_locl.h
247
BODY_00_15( 9,D,E,T,A,B,C,X( 9)); HOST_c2l(data,l); X(11)=l;
crypto/libressl/crypto/sha/sha_locl.h
248
BODY_00_15(10,C,D,E,T,A,B,X(10)); HOST_c2l(data,l); X(12)=l;
crypto/libressl/crypto/sha/sha_locl.h
249
BODY_00_15(11,B,C,D,E,T,A,X(11)); HOST_c2l(data,l); X(13)=l;
crypto/libressl/crypto/sha/sha_locl.h
250
BODY_00_15(12,A,B,C,D,E,T,X(12)); HOST_c2l(data,l); X(14)=l;
crypto/libressl/crypto/sha/sha_locl.h
251
BODY_00_15(13,T,A,B,C,D,E,X(13)); HOST_c2l(data,l); X(15)=l;
crypto/libressl/crypto/sha/sha_locl.h
252
BODY_00_15(14,E,T,A,B,C,D,X(14));
crypto/libressl/crypto/sha/sha_locl.h
253
BODY_00_15(15,D,E,T,A,B,C,X(15));
crypto/libressl/crypto/sha/sha_locl.h
256
BODY_16_19(16,C,D,E,T,A,B,X( 0),X( 0),X( 2),X( 8),X(13));
crypto/libressl/crypto/sha/sha_locl.h
257
BODY_16_19(17,B,C,D,E,T,A,X( 1),X( 1),X( 3),X( 9),X(14));
crypto/libressl/crypto/sha/sha_locl.h
258
BODY_16_19(18,A,B,C,D,E,T,X( 2),X( 2),X( 4),X(10),X(15));
crypto/libressl/crypto/sha/sha_locl.h
259
BODY_16_19(19,T,A,B,C,D,E,X( 3),X( 3),X( 5),X(11),X( 0));
crypto/libressl/crypto/sha/sha_locl.h
261
BODY_20_31(20,E,T,A,B,C,D,X( 4),X( 4),X( 6),X(12),X( 1));
crypto/libressl/crypto/sha/sha_locl.h
262
BODY_20_31(21,D,E,T,A,B,C,X( 5),X( 5),X( 7),X(13),X( 2));
crypto/libressl/crypto/sha/sha_locl.h
263
BODY_20_31(22,C,D,E,T,A,B,X( 6),X( 6),X( 8),X(14),X( 3));
crypto/libressl/crypto/sha/sha_locl.h
264
BODY_20_31(23,B,C,D,E,T,A,X( 7),X( 7),X( 9),X(15),X( 4));
crypto/libressl/crypto/sha/sha_locl.h
265
BODY_20_31(24,A,B,C,D,E,T,X( 8),X( 8),X(10),X( 0),X( 5));
crypto/libressl/crypto/sha/sha_locl.h
266
BODY_20_31(25,T,A,B,C,D,E,X( 9),X( 9),X(11),X( 1),X( 6));
crypto/libressl/crypto/sha/sha_locl.h
267
BODY_20_31(26,E,T,A,B,C,D,X(10),X(10),X(12),X( 2),X( 7));
crypto/libressl/crypto/sha/sha_locl.h
268
BODY_20_31(27,D,E,T,A,B,C,X(11),X(11),X(13),X( 3),X( 8));
crypto/libressl/crypto/sha/sha_locl.h
269
BODY_20_31(28,C,D,E,T,A,B,X(12),X(12),X(14),X( 4),X( 9));
crypto/libressl/crypto/sha/sha_locl.h
270
BODY_20_31(29,B,C,D,E,T,A,X(13),X(13),X(15),X( 5),X(10));
crypto/libressl/crypto/sha/sha_locl.h
271
BODY_20_31(30,A,B,C,D,E,T,X(14),X(14),X( 0),X( 6),X(11));
crypto/libressl/crypto/sha/sha_locl.h
272
BODY_20_31(31,T,A,B,C,D,E,X(15),X(15),X( 1),X( 7),X(12));
crypto/libressl/crypto/sha/sha_locl.h
274
BODY_32_39(32,E,T,A,B,C,D,X( 0),X( 2),X( 8),X(13));
crypto/libressl/crypto/sha/sha_locl.h
275
BODY_32_39(33,D,E,T,A,B,C,X( 1),X( 3),X( 9),X(14));
crypto/libressl/crypto/sha/sha_locl.h
276
BODY_32_39(34,C,D,E,T,A,B,X( 2),X( 4),X(10),X(15));
crypto/libressl/crypto/sha/sha_locl.h
277
BODY_32_39(35,B,C,D,E,T,A,X( 3),X( 5),X(11),X( 0));
crypto/libressl/crypto/sha/sha_locl.h
278
BODY_32_39(36,A,B,C,D,E,T,X( 4),X( 6),X(12),X( 1));
crypto/libressl/crypto/sha/sha_locl.h
279
BODY_32_39(37,T,A,B,C,D,E,X( 5),X( 7),X(13),X( 2));
crypto/libressl/crypto/sha/sha_locl.h
280
BODY_32_39(38,E,T,A,B,C,D,X( 6),X( 8),X(14),X( 3));
crypto/libressl/crypto/sha/sha_locl.h
281
BODY_32_39(39,D,E,T,A,B,C,X( 7),X( 9),X(15),X( 4));
crypto/libressl/crypto/sha/sha_locl.h
283
BODY_40_59(40,C,D,E,T,A,B,X( 8),X(10),X( 0),X( 5));
crypto/libressl/crypto/sha/sha_locl.h
284
BODY_40_59(41,B,C,D,E,T,A,X( 9),X(11),X( 1),X( 6));
crypto/libressl/crypto/sha/sha_locl.h
285
BODY_40_59(42,A,B,C,D,E,T,X(10),X(12),X( 2),X( 7));
crypto/libressl/crypto/sha/sha_locl.h
286
BODY_40_59(43,T,A,B,C,D,E,X(11),X(13),X( 3),X( 8));
crypto/libressl/crypto/sha/sha_locl.h
287
BODY_40_59(44,E,T,A,B,C,D,X(12),X(14),X( 4),X( 9));
crypto/libressl/crypto/sha/sha_locl.h
288
BODY_40_59(45,D,E,T,A,B,C,X(13),X(15),X( 5),X(10));
crypto/libressl/crypto/sha/sha_locl.h
289
BODY_40_59(46,C,D,E,T,A,B,X(14),X( 0),X( 6),X(11));
crypto/libressl/crypto/sha/sha_locl.h
290
BODY_40_59(47,B,C,D,E,T,A,X(15),X( 1),X( 7),X(12));
crypto/libressl/crypto/sha/sha_locl.h
291
BODY_40_59(48,A,B,C,D,E,T,X( 0),X( 2),X( 8),X(13));
crypto/libressl/crypto/sha/sha_locl.h
292
BODY_40_59(49,T,A,B,C,D,E,X( 1),X( 3),X( 9),X(14));
crypto/libressl/crypto/sha/sha_locl.h
293
BODY_40_59(50,E,T,A,B,C,D,X( 2),X( 4),X(10),X(15));
crypto/libressl/crypto/sha/sha_locl.h
294
BODY_40_59(51,D,E,T,A,B,C,X( 3),X( 5),X(11),X( 0));
crypto/libressl/crypto/sha/sha_locl.h
295
BODY_40_59(52,C,D,E,T,A,B,X( 4),X( 6),X(12),X( 1));
crypto/libressl/crypto/sha/sha_locl.h
296
BODY_40_59(53,B,C,D,E,T,A,X( 5),X( 7),X(13),X( 2));
crypto/libressl/crypto/sha/sha_locl.h
297
BODY_40_59(54,A,B,C,D,E,T,X( 6),X( 8),X(14),X( 3));
crypto/libressl/crypto/sha/sha_locl.h
298
BODY_40_59(55,T,A,B,C,D,E,X( 7),X( 9),X(15),X( 4));
crypto/libressl/crypto/sha/sha_locl.h
299
BODY_40_59(56,E,T,A,B,C,D,X( 8),X(10),X( 0),X( 5));
crypto/libressl/crypto/sha/sha_locl.h
300
BODY_40_59(57,D,E,T,A,B,C,X( 9),X(11),X( 1),X( 6));
crypto/libressl/crypto/sha/sha_locl.h
301
BODY_40_59(58,C,D,E,T,A,B,X(10),X(12),X( 2),X( 7));
crypto/libressl/crypto/sha/sha_locl.h
302
BODY_40_59(59,B,C,D,E,T,A,X(11),X(13),X( 3),X( 8));
crypto/libressl/crypto/sha/sha_locl.h
304
BODY_60_79(60,A,B,C,D,E,T,X(12),X(14),X( 4),X( 9));
crypto/libressl/crypto/sha/sha_locl.h
305
BODY_60_79(61,T,A,B,C,D,E,X(13),X(15),X( 5),X(10));
crypto/libressl/crypto/sha/sha_locl.h
306
BODY_60_79(62,E,T,A,B,C,D,X(14),X( 0),X( 6),X(11));
crypto/libressl/crypto/sha/sha_locl.h
307
BODY_60_79(63,D,E,T,A,B,C,X(15),X( 1),X( 7),X(12));
crypto/libressl/crypto/sha/sha_locl.h
308
BODY_60_79(64,C,D,E,T,A,B,X( 0),X( 2),X( 8),X(13));
crypto/libressl/crypto/sha/sha_locl.h
309
BODY_60_79(65,B,C,D,E,T,A,X( 1),X( 3),X( 9),X(14));
crypto/libressl/crypto/sha/sha_locl.h
310
BODY_60_79(66,A,B,C,D,E,T,X( 2),X( 4),X(10),X(15));
crypto/libressl/crypto/sha/sha_locl.h
311
BODY_60_79(67,T,A,B,C,D,E,X( 3),X( 5),X(11),X( 0));
crypto/libressl/crypto/sha/sha_locl.h
312
BODY_60_79(68,E,T,A,B,C,D,X( 4),X( 6),X(12),X( 1));
crypto/libressl/crypto/sha/sha_locl.h
313
BODY_60_79(69,D,E,T,A,B,C,X( 5),X( 7),X(13),X( 2));
crypto/libressl/crypto/sha/sha_locl.h
314
BODY_60_79(70,C,D,E,T,A,B,X( 6),X( 8),X(14),X( 3));
crypto/libressl/crypto/sha/sha_locl.h
315
BODY_60_79(71,B,C,D,E,T,A,X( 7),X( 9),X(15),X( 4));
crypto/libressl/crypto/sha/sha_locl.h
316
BODY_60_79(72,A,B,C,D,E,T,X( 8),X(10),X( 0),X( 5));
crypto/libressl/crypto/sha/sha_locl.h
317
BODY_60_79(73,T,A,B,C,D,E,X( 9),X(11),X( 1),X( 6));
crypto/libressl/crypto/sha/sha_locl.h
318
BODY_60_79(74,E,T,A,B,C,D,X(10),X(12),X( 2),X( 7));
crypto/libressl/crypto/sha/sha_locl.h
319
BODY_60_79(75,D,E,T,A,B,C,X(11),X(13),X( 3),X( 8));
crypto/libressl/crypto/sha/sha_locl.h
320
BODY_60_79(76,C,D,E,T,A,B,X(12),X(14),X( 4),X( 9));
crypto/libressl/crypto/sha/sha_locl.h
321
BODY_60_79(77,B,C,D,E,T,A,X(13),X(15),X( 5),X(10));
crypto/libressl/crypto/sha/sha_locl.h
322
BODY_60_79(78,A,B,C,D,E,T,X(14),X( 0),X( 6),X(11));
crypto/libressl/crypto/sha/sha_locl.h
323
BODY_60_79(79,T,A,B,C,D,E,X(15),X( 1),X( 7),X(12));
crypto/libressl/crypto/sha/sha_locl.h
336
D=c->h3;
crypto/libressl/crypto/sha/sha_locl.h
346
T=E+K_00_19+F_00_19(B,C,D); \
crypto/libressl/crypto/sha/sha_locl.h
347
E=D, D=C, C=ROTATE(B,30), B=A; \
crypto/libressl/crypto/sha/sha_locl.h
352
T+=E+K_00_19+F_00_19(B,C,D); \
crypto/libressl/crypto/sha/sha_locl.h
353
E=D, D=C, C=ROTATE(B,30), B=A; \
crypto/libressl/crypto/sha/sha_locl.h
358
T+=E+K_20_39+F_20_39(B,C,D); \
crypto/libressl/crypto/sha/sha_locl.h
359
E=D, D=C, C=ROTATE(B,30), B=A; \
crypto/libressl/crypto/sha/sha_locl.h
364
T+=E+K_40_59+F_40_59(B,C,D); \
crypto/libressl/crypto/sha/sha_locl.h
365
E=D, D=C, C=ROTATE(B,30), B=A; \
crypto/libressl/crypto/sha/sha_locl.h
370
T=E+K_60_79+F_60_79(B,C,D); \
crypto/libressl/crypto/sha/sha_locl.h
371
E=D, D=C, C=ROTATE(B,30), B=A; \
crypto/libressl/crypto/sha/sha_locl.h
378
unsigned MD32_REG_T A,B,C,D,E,T,l;
crypto/libressl/crypto/sha/sha_locl.h
385
D=c->h3;
crypto/libressl/crypto/sha/sha_locl.h
404
c->h3=(c->h3+D)&0xffffffffL;
crypto/libressl/crypto/sha/sha_locl.h
412
D=c->h3;
crypto/libressl/crypto/sm3/sm3.c
100
R1(B, C, D, A, F, G, H, E, 0x6228cbce, W11, W11 ^ W15);
crypto/libressl/crypto/sm3/sm3.c
102
R1(A, B, C, D, E, F, G, H, 0xc451979c, W12, W12 ^ W00);
crypto/libressl/crypto/sm3/sm3.c
104
R1(D, A, B, C, H, E, F, G, 0x88a32f39, W13, W13 ^ W01);
crypto/libressl/crypto/sm3/sm3.c
106
R1(C, D, A, B, G, H, E, F, 0x11465e73, W14, W14 ^ W02);
crypto/libressl/crypto/sm3/sm3.c
108
R1(B, C, D, A, F, G, H, E, 0x228cbce6, W15, W15 ^ W03);
crypto/libressl/crypto/sm3/sm3.c
110
R2(A, B, C, D, E, F, G, H, 0x9d8a7a87, W00, W00 ^ W04);
crypto/libressl/crypto/sm3/sm3.c
112
R2(D, A, B, C, H, E, F, G, 0x3b14f50f, W01, W01 ^ W05);
crypto/libressl/crypto/sm3/sm3.c
114
R2(C, D, A, B, G, H, E, F, 0x7629ea1e, W02, W02 ^ W06);
crypto/libressl/crypto/sm3/sm3.c
116
R2(B, C, D, A, F, G, H, E, 0xec53d43c, W03, W03 ^ W07);
crypto/libressl/crypto/sm3/sm3.c
118
R2(A, B, C, D, E, F, G, H, 0xd8a7a879, W04, W04 ^ W08);
crypto/libressl/crypto/sm3/sm3.c
120
R2(D, A, B, C, H, E, F, G, 0xb14f50f3, W05, W05 ^ W09);
crypto/libressl/crypto/sm3/sm3.c
122
R2(C, D, A, B, G, H, E, F, 0x629ea1e7, W06, W06 ^ W10);
crypto/libressl/crypto/sm3/sm3.c
124
R2(B, C, D, A, F, G, H, E, 0xc53d43ce, W07, W07 ^ W11);
crypto/libressl/crypto/sm3/sm3.c
126
R2(A, B, C, D, E, F, G, H, 0x8a7a879d, W08, W08 ^ W12);
crypto/libressl/crypto/sm3/sm3.c
128
R2(D, A, B, C, H, E, F, G, 0x14f50f3b, W09, W09 ^ W13);
crypto/libressl/crypto/sm3/sm3.c
130
R2(C, D, A, B, G, H, E, F, 0x29ea1e76, W10, W10 ^ W14);
crypto/libressl/crypto/sm3/sm3.c
132
R2(B, C, D, A, F, G, H, E, 0x53d43cec, W11, W11 ^ W15);
crypto/libressl/crypto/sm3/sm3.c
134
R2(A, B, C, D, E, F, G, H, 0xa7a879d8, W12, W12 ^ W00);
crypto/libressl/crypto/sm3/sm3.c
136
R2(D, A, B, C, H, E, F, G, 0x4f50f3b1, W13, W13 ^ W01);
crypto/libressl/crypto/sm3/sm3.c
138
R2(C, D, A, B, G, H, E, F, 0x9ea1e762, W14, W14 ^ W02);
crypto/libressl/crypto/sm3/sm3.c
140
R2(B, C, D, A, F, G, H, E, 0x3d43cec5, W15, W15 ^ W03);
crypto/libressl/crypto/sm3/sm3.c
142
R2(A, B, C, D, E, F, G, H, 0x7a879d8a, W00, W00 ^ W04);
crypto/libressl/crypto/sm3/sm3.c
144
R2(D, A, B, C, H, E, F, G, 0xf50f3b14, W01, W01 ^ W05);
crypto/libressl/crypto/sm3/sm3.c
146
R2(C, D, A, B, G, H, E, F, 0xea1e7629, W02, W02 ^ W06);
crypto/libressl/crypto/sm3/sm3.c
148
R2(B, C, D, A, F, G, H, E, 0xd43cec53, W03, W03 ^ W07);
crypto/libressl/crypto/sm3/sm3.c
150
R2(A, B, C, D, E, F, G, H, 0xa879d8a7, W04, W04 ^ W08);
crypto/libressl/crypto/sm3/sm3.c
152
R2(D, A, B, C, H, E, F, G, 0x50f3b14f, W05, W05 ^ W09);
crypto/libressl/crypto/sm3/sm3.c
154
R2(C, D, A, B, G, H, E, F, 0xa1e7629e, W06, W06 ^ W10);
crypto/libressl/crypto/sm3/sm3.c
156
R2(B, C, D, A, F, G, H, E, 0x43cec53d, W07, W07 ^ W11);
crypto/libressl/crypto/sm3/sm3.c
158
R2(A, B, C, D, E, F, G, H, 0x879d8a7a, W08, W08 ^ W12);
crypto/libressl/crypto/sm3/sm3.c
160
R2(D, A, B, C, H, E, F, G, 0x0f3b14f5, W09, W09 ^ W13);
crypto/libressl/crypto/sm3/sm3.c
162
R2(C, D, A, B, G, H, E, F, 0x1e7629ea, W10, W10 ^ W14);
crypto/libressl/crypto/sm3/sm3.c
164
R2(B, C, D, A, F, G, H, E, 0x3cec53d4, W11, W11 ^ W15);
crypto/libressl/crypto/sm3/sm3.c
166
R2(A, B, C, D, E, F, G, H, 0x79d8a7a8, W12, W12 ^ W00);
crypto/libressl/crypto/sm3/sm3.c
168
R2(D, A, B, C, H, E, F, G, 0xf3b14f50, W13, W13 ^ W01);
crypto/libressl/crypto/sm3/sm3.c
170
R2(C, D, A, B, G, H, E, F, 0xe7629ea1, W14, W14 ^ W02);
crypto/libressl/crypto/sm3/sm3.c
172
R2(B, C, D, A, F, G, H, E, 0xcec53d43, W15, W15 ^ W03);
crypto/libressl/crypto/sm3/sm3.c
174
R2(A, B, C, D, E, F, G, H, 0x9d8a7a87, W00, W00 ^ W04);
crypto/libressl/crypto/sm3/sm3.c
176
R2(D, A, B, C, H, E, F, G, 0x3b14f50f, W01, W01 ^ W05);
crypto/libressl/crypto/sm3/sm3.c
178
R2(C, D, A, B, G, H, E, F, 0x7629ea1e, W02, W02 ^ W06);
crypto/libressl/crypto/sm3/sm3.c
180
R2(B, C, D, A, F, G, H, E, 0xec53d43c, W03, W03 ^ W07);
crypto/libressl/crypto/sm3/sm3.c
182
R2(A, B, C, D, E, F, G, H, 0xd8a7a879, W04, W04 ^ W08);
crypto/libressl/crypto/sm3/sm3.c
183
R2(D, A, B, C, H, E, F, G, 0xb14f50f3, W05, W05 ^ W09);
crypto/libressl/crypto/sm3/sm3.c
184
R2(C, D, A, B, G, H, E, F, 0x629ea1e7, W06, W06 ^ W10);
crypto/libressl/crypto/sm3/sm3.c
185
R2(B, C, D, A, F, G, H, E, 0xc53d43ce, W07, W07 ^ W11);
crypto/libressl/crypto/sm3/sm3.c
186
R2(A, B, C, D, E, F, G, H, 0x8a7a879d, W08, W08 ^ W12);
crypto/libressl/crypto/sm3/sm3.c
187
R2(D, A, B, C, H, E, F, G, 0x14f50f3b, W09, W09 ^ W13);
crypto/libressl/crypto/sm3/sm3.c
188
R2(C, D, A, B, G, H, E, F, 0x29ea1e76, W10, W10 ^ W14);
crypto/libressl/crypto/sm3/sm3.c
189
R2(B, C, D, A, F, G, H, E, 0x53d43cec, W11, W11 ^ W15);
crypto/libressl/crypto/sm3/sm3.c
190
R2(A, B, C, D, E, F, G, H, 0xa7a879d8, W12, W12 ^ W00);
crypto/libressl/crypto/sm3/sm3.c
191
R2(D, A, B, C, H, E, F, G, 0x4f50f3b1, W13, W13 ^ W01);
crypto/libressl/crypto/sm3/sm3.c
192
R2(C, D, A, B, G, H, E, F, 0x9ea1e762, W14, W14 ^ W02);
crypto/libressl/crypto/sm3/sm3.c
193
R2(B, C, D, A, F, G, H, E, 0x3d43cec5, W15, W15 ^ W03);
crypto/libressl/crypto/sm3/sm3.c
198
ctx->D ^= D;
crypto/libressl/crypto/sm3/sm3.c
31
c->D = SM3_D;
crypto/libressl/crypto/sm3/sm3.c
43
SM3_WORD A, B, C, D, E, F, G, H;
crypto/libressl/crypto/sm3/sm3.c
51
D = ctx->D;
crypto/libressl/crypto/sm3/sm3.c
78
R1(A, B, C, D, E, F, G, H, 0x79cc4519, W00, W00 ^ W04);
crypto/libressl/crypto/sm3/sm3.c
80
R1(D, A, B, C, H, E, F, G, 0xf3988a32, W01, W01 ^ W05);
crypto/libressl/crypto/sm3/sm3.c
82
R1(C, D, A, B, G, H, E, F, 0xe7311465, W02, W02 ^ W06);
crypto/libressl/crypto/sm3/sm3.c
84
R1(B, C, D, A, F, G, H, E, 0xce6228cb, W03, W03 ^ W07);
crypto/libressl/crypto/sm3/sm3.c
86
R1(A, B, C, D, E, F, G, H, 0x9cc45197, W04, W04 ^ W08);
crypto/libressl/crypto/sm3/sm3.c
88
R1(D, A, B, C, H, E, F, G, 0x3988a32f, W05, W05 ^ W09);
crypto/libressl/crypto/sm3/sm3.c
90
R1(C, D, A, B, G, H, E, F, 0x7311465e, W06, W06 ^ W10);
crypto/libressl/crypto/sm3/sm3.c
92
R1(B, C, D, A, F, G, H, E, 0xe6228cbc, W07, W07 ^ W11);
crypto/libressl/crypto/sm3/sm3.c
94
R1(A, B, C, D, E, F, G, H, 0xcc451979, W08, W08 ^ W12);
crypto/libressl/crypto/sm3/sm3.c
96
R1(D, A, B, C, H, E, F, G, 0x988a32f3, W09, W09 ^ W13);
crypto/libressl/crypto/sm3/sm3.c
98
R1(C, D, A, B, G, H, E, F, 0x311465e7, W10, W10 ^ W14);
crypto/libressl/crypto/sm3/sm3_locl.h
35
ll = (c)->D; HOST_l2c(ll, (s)); \
crypto/libressl/crypto/sm3/sm3_locl.h
60
#define ROUND(A, B, C, D, E, F, G, H, TJ, Wi, Wj, FF, GG) do { \
crypto/libressl/crypto/sm3/sm3_locl.h
64
const SM3_WORD TT1 = FF(A, B, C) + D + (SS1 ^ A12) + (Wj); \
crypto/libressl/crypto/sm3/sm3_locl.h
67
D = TT1; \
crypto/libressl/crypto/sm3/sm3_locl.h
72
#define R1(A, B, C, D, E, F, G, H, TJ, Wi, Wj) \
crypto/libressl/crypto/sm3/sm3_locl.h
73
ROUND(A, B, C, D, E, F, G, H, TJ, Wi, Wj, FF0, GG0)
crypto/libressl/crypto/sm3/sm3_locl.h
75
#define R2(A, B, C, D, E, F, G, H, TJ, Wi, Wj) \
crypto/libressl/crypto/sm3/sm3_locl.h
76
ROUND(A, B, C, D, E, F, G, H, TJ, Wi, Wj, FF1, GG1)
crypto/libressl/include/openssl/md4.h
88
MD4_LONG A,B,C,D;
crypto/libressl/include/openssl/md5.h
95
MD5_LONG A,B,C,D;
crypto/libressl/include/openssl/ripemd.h
89
RIPEMD160_LONG A,B,C,D,E;
crypto/libressl/include/openssl/sm3.h
39
SM3_WORD A, B, C, D, E, F, G, H;
crypto/libressl/ssl/s3_cbc.c
299
u32toLE(md5->D, md_out);
games/pom/pom.c
109
double A4, lprime, V, ldprime, D, Nm;
games/pom/pom.c
133
D = ldprime - LambdaSol; /* sec 63 #2 */
games/pom/pom.c
134
return(50 * (1 - cos(dtor(D)))); /* sec 63 #3 */
games/sail/extern.h
222
char A, B, C, D;
games/sail/game.c
85
Move = (flank ? 2 : 1) - WET[windspeed][ship->specs->class-1].D;
lib/libc/db/hash/page.h
73
#define PAIRSIZE(K,D) (2*sizeof(uint16_t) + (K)->size + (D)->size)
lib/libc/db/hash/page.h
79
#define PAIRFITS(P,K,D) \
lib/libc/db/hash/page.h
81
(PAIRSIZE((K),(D)) + OVFLSIZE) <= FREESPACE((P)))
lib/omd/private_md5.h
249
context->D = 0x10325476;
lib/omd/private_md5.h
49
MD5_LONG A,B,C,D;
sbin/growfs/debug.h
102
#define DBG_PRINT3(A,B,C,D) if(_dbg_lvl_ & DL_INFO) { \
sbin/growfs/debug.h
104
fprintf(stderr, (A), (B), (C), (D)); \
sbin/growfs/debug.h
106
#define DBG_PRINT4(A,B,C,D,E) if(_dbg_lvl_ & DL_INFO) { \
sbin/growfs/debug.h
108
fprintf(stderr, (A), (B), (C), (D), (E)); \
sbin/growfs/debug.h
131
#define DBG_PRINT3(A,B,C,D)
sbin/growfs/debug.h
132
#define DBG_PRINT4(A,B,C,D,E)
sys/bus/cam/scsi/scsi_all.c
130
#define ALL (D | T | L | P | W | R | O | M | A | E | B | K | V | F | S | C)
sys/bus/cam/scsi/scsi_all.c
192
{ 0x01, D | W | R | O | M, "REZERO UNIT" },
sys/bus/cam/scsi/scsi_all.c
197
{ 0x04, D | R | O, "FORMAT UNIT" },
sys/bus/cam/scsi/scsi_all.c
206
{ 0x07, D | W | O, "REASSIGN BLOCKS" },
sys/bus/cam/scsi/scsi_all.c
210
{ 0x08, D | T | W | O, "READ(6)" },
sys/bus/cam/scsi/scsi_all.c
217
{ 0x0A, D | T | W | O, "WRITE(6)" },
sys/bus/cam/scsi/scsi_all.c
225
{ 0x0B, D | W | R | O, "SEEK(6)" },
sys/bus/cam/scsi/scsi_all.c
259
{ 0x18, D | T | L | P | W | R | O | K | S, "COPY" },
sys/bus/cam/scsi/scsi_all.c
265
{ 0x1B, D | W | R | O | A | B | K | F, "START STOP UNIT" },
sys/bus/cam/scsi/scsi_all.c
279
{ 0x1E, D | T | W | R | O | M | K | F, "PREVENT ALLOW MEDIUM REMOVAL" },
sys/bus/cam/scsi/scsi_all.c
290
{ 0x25, D | W | O | B, "READ CAPACITY(10)" },
sys/bus/cam/scsi/scsi_all.c
300
{ 0x28, D | W | R | O | B | K | S, "READ(10)" },
sys/bus/cam/scsi/scsi_all.c
306
{ 0x2A, D | W | R | O | B | K, "WRITE(10)" },
sys/bus/cam/scsi/scsi_all.c
312
{ 0x2B, D | W | R | O | K, "SEEK(10)" },
sys/bus/cam/scsi/scsi_all.c
323
{ 0x2E, D | W | R | O | B | K, "WRITE AND VERIFY(10)" },
sys/bus/cam/scsi/scsi_all.c
325
{ 0x2F, D | W | R | O, "VERIFY(10)" },
sys/bus/cam/scsi/scsi_all.c
327
{ 0x30, D | W | R | O, "SEARCH DATA HIGH(10)" },
sys/bus/cam/scsi/scsi_all.c
329
{ 0x31, D | W | R | O, "SEARCH DATA EQUAL(10)" },
sys/bus/cam/scsi/scsi_all.c
333
{ 0x32, D | W | R | O, "SEARCH DATA LOW(10)" },
sys/bus/cam/scsi/scsi_all.c
335
{ 0x33, D | W | R | O, "SET LIMITS(10)" },
sys/bus/cam/scsi/scsi_all.c
337
{ 0x34, D | W | O | K, "PRE-FETCH(10)" },
sys/bus/cam/scsi/scsi_all.c
343
{ 0x35, D | W | R | O | B | K, "SYNCHRONIZE CACHE(10)" },
sys/bus/cam/scsi/scsi_all.c
345
{ 0x36, D | W | O | K, "LOCK UNLOCK CACHE(10)" },
sys/bus/cam/scsi/scsi_all.c
347
{ 0x37, D | O, "READ DEFECT DATA(10)" },
sys/bus/cam/scsi/scsi_all.c
353
{ 0x39, D | T | L | P | W | R | O | K | S, "COMPARE" },
sys/bus/cam/scsi/scsi_all.c
355
{ 0x3A, D | T | L | P | W | R | O | K | S, "COPY AND VERIFY" },
sys/bus/cam/scsi/scsi_all.c
363
{ 0x3E, D | W | O, "READ LONG(10)" },
sys/bus/cam/scsi/scsi_all.c
365
{ 0x3F, D | W | O, "WRITE LONG(10)" },
sys/bus/cam/scsi/scsi_all.c
367
{ 0x40, D | T | L | P | W | R | O | M | S | C, "CHANGE DEFINITION" },
sys/bus/cam/scsi/scsi_all.c
369
{ 0x41, D, "WRITE SAME(10)" },
sys/bus/cam/scsi/scsi_all.c
397
{ 0x50, D, "XDWRITE(10)" },
sys/bus/cam/scsi/scsi_all.c
399
{ 0x51, D, "XPWRITE(10)" },
sys/bus/cam/scsi/scsi_all.c
403
{ 0x52, D, "XDREAD(10)" },
sys/bus/cam/scsi/scsi_all.c
436
{ 0x7E, D | T | R | M | A | E | B | V, "extended CDB" },
sys/bus/cam/scsi/scsi_all.c
438
{ 0x7F, D | F, "variable length CDB (more than 16 bytes)" },
sys/bus/cam/scsi/scsi_all.c
440
{ 0x80, D, "XDWRITE EXTENDED(16)" },
sys/bus/cam/scsi/scsi_all.c
444
{ 0x81, D, "REBUILD(16)" },
sys/bus/cam/scsi/scsi_all.c
448
{ 0x82, D, "REGENERATE(16)" },
sys/bus/cam/scsi/scsi_all.c
450
{ 0x83, D | T | L | P | W | O | K | V, "EXTENDED COPY" },
sys/bus/cam/scsi/scsi_all.c
452
{ 0x84, D | T | L | P | W | O | K | V, "RECEIVE COPY RESULTS" },
sys/bus/cam/scsi/scsi_all.c
454
{ 0x85, D | R | B, "ATA COMMAND PASS THROUGH(16)" },
sys/bus/cam/scsi/scsi_all.c
464
{ 0x88, D | T | W | O | B, "READ(16)" },
sys/bus/cam/scsi/scsi_all.c
467
{ 0x8A, D | T | W | O | B, "WRITE(16)" },
sys/bus/cam/scsi/scsi_all.c
469
{ 0x8B, D, "ORWRITE" },
sys/bus/cam/scsi/scsi_all.c
471
{ 0x8C, D | T | W | O | M | B | V, "READ ATTRIBUTE" },
sys/bus/cam/scsi/scsi_all.c
473
{ 0x8D, D | T | W | O | M | B | V, "WRITE ATTRIBUTE" },
sys/bus/cam/scsi/scsi_all.c
475
{ 0x8E, D | W | O | B, "WRITE AND VERIFY(16)" },
sys/bus/cam/scsi/scsi_all.c
477
{ 0x8F, D | T | W | O | B, "VERIFY(16)" },
sys/bus/cam/scsi/scsi_all.c
479
{ 0x90, D | W | O | B, "PRE-FETCH(16)" },
sys/bus/cam/scsi/scsi_all.c
481
{ 0x91, D | W | O | B, "SYNCHRONIZE CACHE(16)" },
sys/bus/cam/scsi/scsi_all.c
485
{ 0x92, D | W | O, "LOCK UNLOCK CACHE(16)" },
sys/bus/cam/scsi/scsi_all.c
489
{ 0x93, D, "WRITE SAME(16)" },
sys/bus/cam/scsi/scsi_all.c
513
{ 0xA1, D | B, "ATA COMMAND PASS THROUGH(12)" },
sys/bus/cam/scsi/scsi_all.c
515
{ 0xA2, D | T | R | V, "SECURITY PROTOCOL IN" },
sys/bus/cam/scsi/scsi_all.c
533
{ 0xA7, D | T | W | O, "MOVE MEDIUM ATTACHED" },
sys/bus/cam/scsi/scsi_all.c
537
{ 0xA8, D | W | R | O, "READ(12)" },
sys/bus/cam/scsi/scsi_all.c
543
{ 0xAA, D | W | R | O, "WRITE(12)" },
sys/bus/cam/scsi/scsi_all.c
555
{ 0xAE, D | W | O, "WRITE AND VERIFY(12)" },
sys/bus/cam/scsi/scsi_all.c
557
{ 0xAF, D | W | R | O, "VERIFY(12)" },
sys/bus/cam/scsi/scsi_all.c
565
{ 0xB3, D | W | R | O, "SET LIMITS(12)" },
sys/bus/cam/scsi/scsi_all.c
567
{ 0xB4, D | T | W | R | O, "READ ELEMENT STATUS ATTACHED" },
sys/bus/cam/scsi/scsi_all.c
569
{ 0xB5, D | T | R | V, "SECURITY PROTOCOL OUT" },
sys/bus/cam/scsi/scsi_all.c
577
{ 0xB7, D | O, "READ DEFECT DATA(12)" },
sys/bus/cam/scsi/scsi_all.c
583
{ 0xBA, D | W | O | M | A | E, "REDUNDANCY GROUP (IN)" },
sys/bus/cam/scsi/scsi_all.c
587
{ 0xBB, D | W | O | M | A | E, "REDUNDANCY GROUP (OUT)" },
sys/bus/cam/scsi/scsi_all.c
591
{ 0xBC, D | W | O | M | A | E, "SPARE (IN)" },
sys/bus/cam/scsi/scsi_all.c
593
{ 0xBD, D | W | O | M | A | E, "SPARE (OUT)" },
sys/bus/cam/scsi/scsi_all.c
597
{ 0xBE, D | W | O | M | A | E, "VOLUME SET (IN)" },
sys/bus/cam/scsi/scsi_all.c
601
{ 0xBF, D | W | O | M | A | E, "VOLUME SET (OUT)" },
sys/dev/disk/ncr/ncrreg.h
524
#define DATA(D) (0x00040000 | ((D) & 0xff))
sys/dev/disk/ncr/ncrreg.h
525
#define MASK(D,M) (0x00040000 | (((M ^ 0xff) & 0xff) << 8ul)|((D) & 0xff))
sys/dev/disk/sym/sym_defs.h
869
#define DATA(D) (0x00040000 | ((D) & 0xff))
sys/dev/disk/sym/sym_defs.h
870
#define MASK(D,M) (0x00040000 | (((M ^ 0xff) & 0xff) << 8ul)|((D) & 0xff))
sys/dev/drm/amd/display/dc/dce112/dce112_resource.c
368
clk_src_regs(3, D),
sys/dev/drm/amd/display/dc/dce120/dce120_resource.c
353
clk_src_regs(3, D),
sys/dev/drm/amd/display/dc/dcn10/dcn10_resource.c
488
clk_src_regs(3, D)
sys/dev/netif/bwn/bwn/if_bwnvar.h
140
#define BWN_LPD(L, P, D) (((L) << 2) | ((P) << 1) | ((D) << 0))
sys/dev/netif/ix/ixgbe_osdep.h
69
#define DEBUGOUT4(S,A,B,C,D) kprintf(S "\n",A,B,C,D)
sys/dev/netif/ix/ixgbe_osdep.h
70
#define DEBUGOUT5(S,A,B,C,D,E) kprintf(S "\n",A,B,C,D,E)
sys/dev/netif/ix/ixgbe_osdep.h
71
#define DEBUGOUT6(S,A,B,C,D,E,F) kprintf(S "\n",A,B,C,D,E,F)
sys/dev/netif/ix/ixgbe_osdep.h
72
#define DEBUGOUT7(S,A,B,C,D,E,F,G) kprintf(S "\n",A,B,C,D,E,F,G)
sys/dev/netif/ix/ixgbe_osdep.h
81
#define DEBUGOUT4(S,A,B,C,D) do { } while (0)
sys/dev/netif/ix/ixgbe_osdep.h
82
#define DEBUGOUT5(S,A,B,C,D,E) do { } while (0)
sys/dev/netif/ix/ixgbe_osdep.h
83
#define DEBUGOUT6(S,A,B,C,D,E,F) do { } while (0)
sys/dev/netif/ix/ixgbe_osdep.h
84
#define DEBUGOUT7(S,A,B,C,D,E,F,G) do { } while (0)
sys/dev/sound/midi/mpu401.c
132
D(s, 1);
sys/kern/md5c.c
142
context->D = 0x10325476;
sys/net/netmap/netmap.c
1023
D("Created generic NA %p (prev %p)", gna, gna->prev);
sys/net/netmap/netmap.c
1121
D("bad buffer at slot %d idx %d len %d ", i, idx, len);
sys/net/netmap/netmap.c
1127
D("bad len %d at slot %d idx %d",
sys/net/netmap/netmap.c
1165
D("invalid ring id %d", i);
sys/net/netmap/netmap.c
1182
D("ringid %s set to SW RING", NM_IFPNAME(ifp));
sys/net/netmap/netmap.c
1184
D("ringid %s set to HW RING %d", NM_IFPNAME(ifp),
sys/net/netmap/netmap.c
1187
D("ringid %s set to all %d HW RINGS", NM_IFPNAME(ifp), lim);
sys/net/netmap/netmap.c
1306
D("API mismatch got %d have %d",
sys/net/netmap/netmap.c
1362
D("nr_cmd must be 0 not %d", i);
sys/net/netmap/netmap.c
1414
D("deprecated, data is %p", nmr);
sys/net/netmap/netmap.c
1431
D("Internal error: nifp != NULL && na == NULL");
sys/net/netmap/netmap.c
1465
D("pre txsync ring %d cur %d hwcur %d",
sys/net/netmap/netmap.c
1470
D("post txsync ring %d cur %d hwcur %d",
sys/net/netmap/netmap.c
1485
D("ignore BIOCIMMEDIATE/BIOCSHDRCMPLT/BIOCSHDRCMPLT/BIOCSSEESENT");
sys/net/netmap/netmap.c
1589
D("No if registered");
sys/net/netmap/netmap.c
1606
D("device %s events 0x%x", NM_IFPNAME(ifp), events);
sys/net/netmap/netmap.c
1719
D("send %d on %s %d",
sys/net/netmap/netmap.c
1844
D("%s: invalid rings tx %d rx %d",
sys/net/netmap/netmap.c
1871
D("freeing leftover tx_rings");
sys/net/netmap/netmap.c
1914
D("success for %s", NM_IFPNAME(ifp));
sys/net/netmap/netmap.c
1918
D("fail, arg %p ifp %p na %p", arg, ifp, hwna);
sys/net/netmap/netmap.c
2014
D("%s packet %d len %d from the stack", NM_IFPNAME(ifp),
sys/net/netmap/netmap.c
2018
D("%s from_host, drop packet size %d > %d", NM_IFPNAME(ifp),
sys/net/netmap/netmap.c
2031
D("stack ring %s full\n", NM_IFPNAME(ifp));
sys/net/netmap/netmap.c
2041
D("wake up host ring %s %d", NM_IFPNAME(na->ifp), na->num_rx_rings);
sys/net/netmap/netmap.c
2073
D("NULL na, should not happen");
sys/net/netmap/netmap.c
2105
D("%s hwofs %d -> %d, hwavail %d -> %d",
sys/net/netmap/netmap.c
390
D("stored config %s: txring %d x %d, rxring %d x %d",
sys/net/netmap/netmap.c
394
D("new config %s: txring %d x %d, rxring %d x %d",
sys/net/netmap/netmap.c
398
D("configuration changed (but fine)");
sys/net/netmap/netmap.c
405
D("configuration changed while active, this is bad...");
sys/net/netmap/netmap.c
420
D("Cannot allocate krings");
sys/net/netmap/netmap.c
600
D("deleting last instance for %s", NM_IFPNAME(ifp));
sys/net/netmap/netmap.c
712
D("sending up pkt %p size %d", m, MBUF_LEN(m));
sys/net/netmap/netmap.c
749
D("bad pkt at %d len %d", n, slot->len);
sys/net/netmap/netmap.c
848
D("ring %p busy (user error)", kring);
sys/net/netmap/netmap.c
853
D("invalid ring index in stack TX kring %p", kring);
sys/net/netmap/netmap.c
911
D("XXX invalid reserve/avail %d %d", resvd, ring->avail);
sys/net/netmap/netmap.c
925
D("%d pkts from stack", k);
sys/net/netmap/netmap_freebsd.c
149
D("called");
sys/net/netmap/netmap_freebsd.c
156
D("called");
sys/net/netmap/netmap_freebsd.c
207
D("handle %p size %jd prot %d foff %jd",
sys/net/netmap/netmap_freebsd.c
223
D("handle %p", handle);
sys/net/netmap/netmap_freebsd.c
320
D("cdev %p foff %jd size %jd objp %p prot %d", cdev,
sys/net/netmap/netmap_freebsd.c
345
D("cdev_pager_allocate failed");
sys/net/netmap/netmap_freebsd.c
369
D("dev %p fflag 0x%x devtype %d",
sys/net/netmap/netmap_freebsd.c
71
D("cannot intercept again");
sys/net/netmap/netmap_freebsd.c
78
D("cannot restore");
sys/net/netmap/netmap_generic.c
150
D("[v1000] Error: mod_timer()");
sys/net/netmap/netmap_generic.c
214
D("tx_pool allocation failed");
sys/net/netmap/netmap_generic.c
221
D("tx_pool[%d] allocation failed", i);
sys/net/netmap/netmap_generic.c
232
D("netdev_rx_handler_register() failed");
sys/net/netmap/netmap_generic.c
244
D("setup_timer()");
sys/net/netmap/netmap_generic.c
248
D("Error: mod_timer()");
sys/net/netmap/netmap_generic.c
284
D("del_timer()");
sys/net/netmap/netmap_generic.c
326
D("Tx irq (%p) queue %d", m, MBUF_TXQ(m));
sys/net/netmap/netmap_generic.c
363
D("mbuf allocation failed, XXX error");
sys/net/netmap/netmap_generic.c
407
D("This cannot happen");
sys/net/netmap/netmap_generic.c
509
D("mbuf allocation failed");
sys/net/netmap/netmap_generic.c
695
D("XXX invalid reserve/avail %d %d", resvd, ring->avail);
sys/net/netmap/netmap_generic.c
727
D("Released generic NA %p", gna);
sys/net/netmap/netmap_generic.c
735
D("Restored native NA %p", prev_na);
sys/net/netmap/netmap_generic.c
766
D("no memory on attach, give up");
sys/net/netmap/netmap_generic.c
82
#define rtnl_lock() D("rtnl_lock called");
sys/net/netmap/netmap_generic.c
83
#define rtnl_unlock() D("rtnl_lock called");
sys/net/netmap/netmap_kern.h
494
D("invalid kring, cur %d avail %d lease %d lease_idx %d lim %d", k->nr_hwcur, k->nr_hwavail, k->nkr_hwlease,
sys/net/netmap/netmap_kern.h
517
D("invalid request for %d slots", n);
sys/net/netmap/netmap_kern.h
529
D("invalid kring %s, cur %d avail %d lease %d lease_idx %d lim %d",
sys/net/netmap/netmap_kern.h
552
D("invalid kring, cur %d avail %d lease %d lease_idx %d lim %d", k->nr_hwcur, k->nr_hwavail, k->nkr_hwlease,
sys/net/netmap/netmap_kern.h
697
D("getting %p:%s (%d)", __na, NM_IFPNAME(__na->ifp), __na->na_refcount); \
sys/net/netmap/netmap_kern.h
706
D("putting %p:%s (%d)", __na, NM_IFPNAME(__na->ifp), __na->na_refcount); \
sys/net/netmap/netmap_kern.h
99
D(format, ##__VA_ARGS__); \
sys/net/netmap/netmap_mem2.c
1100
D("refcount = %d", nmd->refcount);
sys/net/netmap/netmap_mem2.c
186
D("invalid ofs 0x%x out of 0x%x 0x%x 0x%x", (u_int)o,
sys/net/netmap/netmap_mem2.c
245
D("address %p is not contained inside any cluster (%s)",
sys/net/netmap/netmap_mem2.c
286
D("%s request size %d too large", p->name, len);
sys/net/netmap/netmap_mem2.c
292
D("%s allocator: run out of memory", p->name);
sys/net/netmap/netmap_mem2.c
332
D("invalid index %u, max %u", j, p->objtotal);
sys/net/netmap/netmap_mem2.c
358
D("address %p is not contained inside any cluster (%s)",
sys/net/netmap/netmap_mem2.c
387
D("unable to locate empty packet buffer");
sys/net/netmap/netmap_mem2.c
418
D("Cannot free buf#%d: should be in [2, %d[", i, p->objtotal);
sys/net/netmap/netmap_mem2.c
491
D("unsupported allocation for %d bytes", objsize);
sys/net/netmap/netmap_mem2.c
497
D("XXX aligning object by %d bytes", LINE_ROUND - i);
sys/net/netmap/netmap_mem2.c
501
D("requested objsize %d out of range [%d, %d]",
sys/net/netmap/netmap_mem2.c
506
D("requested objtotal %d out of range [%d, %d]",
sys/net/netmap/netmap_mem2.c
535
D("objsize %d clustsize %d objects %d",
sys/net/netmap/netmap_mem2.c
568
D("Unable to create lookup table (%d bytes) for '%s'", (int)n, p->name);
sys/net/netmap/netmap_mem2.c
576
D("Unable to create bitmap (%d entries) for allocator '%s'", (int)n,
sys/net/netmap/netmap_mem2.c
598
D("Unable to create cluster at %d for '%s' allocator",
sys/net/netmap/netmap_mem2.c
626
D("Pre-allocated %d clusters (%d/%dKB) for '%s'",
sys/net/netmap/netmap_mem2.c
655
D("resetting %p", nmd);
sys/net/netmap/netmap_mem2.c
681
D("Have %d KB for interfaces, %d KB for rings and %d MB for buffers",
sys/net/netmap/netmap_mem2.c
686
D("Free buffers: %d", nmd->pools[NETMAP_BUF_POOL].objfree);
sys/net/netmap/netmap_mem2.c
702
D("deleting %p", nmd);
sys/net/netmap/netmap_mem2.c
704
D("bug: deleting mem allocator with refcount=%d!", nmd->refcount);
sys/net/netmap/netmap_mem2.c
705
D("done deleting %p", nmd);
sys/net/netmap/netmap_mem2.c
768
D("req if %d*%d ring %d*%d buf %d*%d",
sys/net/netmap/netmap_mem2.c
809
D("reconfiguring");
sys/net/netmap/netmap_mem2.c
932
D("Cannot allocate tx_ring");
sys/net/netmap/netmap_mem2.c
949
D("Cannot allocate buffers for tx_ring");
sys/net/netmap/netmap_mem2.c
960
D("Cannot allocate rx_ring");
sys/net/netmap/netmap_mem2.c
978
D("Cannot allocate buffers for rx_ring");
sys/net/netmap/netmap_vale.c
1010
D("truncate incomplete fragment at %d (%d frags)", ft_i, frags);
sys/net/netmap/netmap_vale.c
1104
D("invalid buf length %d", buf_len);
sys/net/netmap/netmap_vale.c
1122
D("src %02x:%02x:%02x:%02x:%02x:%02x on port %d",
sys/net/netmap/netmap_vale.c
1408
D("avail shrink %d -> %d",
sys/net/netmap/netmap_vale.c
1450
D("early break at %d/ %d, avail %d", j, k, kring->nr_hwavail);
sys/net/netmap/netmap_vale.c
1460
D("%s ring %d flags %d", NM_IFPNAME(na->up.ifp), ring_nr, flags);
sys/net/netmap/netmap_vale.c
1495
D("ouch dangerous reset!!!");
sys/net/netmap/netmap_vale.c
1504
D("XXX invalid reserve/avail %d %d", resvd, ring->avail);
sys/net/netmap/netmap_vale.c
1520
D("bad buffer index %d, ignore ?",
sys/net/netmap/netmap_vale.c
1660
D("how strange, interrupt with no packets on %s",
sys/net/netmap/netmap_vale.c
1898
D("%s<->%s txr %d txd %d rxr %d rxd %d", fake->if_xname, real->if_xname,
sys/net/netmap/netmap_vale.c
322
D("invalid bridge name %s", name ? name : NULL);
sys/net/netmap/netmap_vale.c
445
D("detach %d and %d (lim %d)", hw, sw, lim);
sys/net/netmap/netmap_vale.c
468
D("XXX delete failed hw %d sw %d, should panic...", hw, sw);
sys/net/netmap/netmap_vale.c
527
D("no bridges available for '%s'", name);
sys/net/netmap/netmap_vale.c
559
D("bridge full %d, cannot create new port", b->bdg_active_ports);
sys/net/netmap/netmap_vale.c
614
D("error %d", error);
sys/net/netmap/netmap_vale.c
629
D("NIC %s busy, cannot attach to bridge",
sys/net/netmap/netmap_vale.c
765
D("--- error, trying to detach an entry with active mmaps");
sys/net/netmap/netmap_vale.c
771
D("deleting priv");
sys/net/netmap/netmap_vale.c
829
D("---AAAAAAAAARGH-------");
sys/net/netmap/netmap_vale.c
896
D("invalid cmd (nmr->nr_cmd) (0x%x)", cmd);
sys/platform/pc64/x86_64/mp_machdep.c
100
CHECK_WRITE(0x39, (D));
sys/platform/pc64/x86_64/mp_machdep.c
114
#define CHECK_INIT(D)
sys/platform/pc64/x86_64/mp_machdep.c
92
#define CHECK_WRITE(A,D) (outb(CMOS_REG, (A)), outb(CMOS_DATA, (D)))
sys/platform/pc64/x86_64/mp_machdep.c
94
#define CHECK_INIT(D); \
sys/platform/pc64/x86_64/mp_machdep.c
95
CHECK_WRITE(0x34, (D)); \
sys/platform/pc64/x86_64/mp_machdep.c
96
CHECK_WRITE(0x35, (D)); \
sys/platform/pc64/x86_64/mp_machdep.c
97
CHECK_WRITE(0x36, (D)); \
sys/platform/pc64/x86_64/mp_machdep.c
98
CHECK_WRITE(0x37, (D)); \
sys/platform/pc64/x86_64/mp_machdep.c
99
CHECK_WRITE(0x38, (D)); \
sys/sys/md5.h
60
MD5_LONG A,B,C,D;
sys/sys/mount.h
657
#define VFS_ACCOUNT(MP, U, G, D) \
sys/sys/mount.h
658
if ((MP->mnt_op->vfs_account != NULL) && (D != 0)) \
sys/sys/mount.h
659
MP->mnt_op->vfs_account(MP, U, G, D);
tools/tools/ath/athrd/athrd.c
390
D(NO_ENUMRD),
tools/tools/ath/athrd/athrd.c
391
D(NULL1_WORLD), /* For 11b-only countries (no 11a allowed) */
tools/tools/ath/athrd/athrd.c
392
D(NULL1_ETSIB), /* Israel */
tools/tools/ath/athrd/athrd.c
393
D(NULL1_ETSIC),
tools/tools/ath/athrd/athrd.c
394
D(FCC1_FCCA), /* USA */
tools/tools/ath/athrd/athrd.c
395
D(FCC1_WORLD), /* Hong Kong */
tools/tools/ath/athrd/athrd.c
396
D(FCC4_FCCA), /* USA - Public Safety */
tools/tools/ath/athrd/athrd.c
398
D(FCC2_FCCA), /* Canada */
tools/tools/ath/athrd/athrd.c
399
D(FCC2_WORLD), /* Australia & HK */
tools/tools/ath/athrd/athrd.c
400
D(FCC2_ETSIC),
tools/tools/ath/athrd/athrd.c
401
D(FRANCE_RES), /* Legacy France for OEM */
tools/tools/ath/athrd/athrd.c
402
D(FCC3_FCCA),
tools/tools/ath/athrd/athrd.c
403
D(FCC3_WORLD),
tools/tools/ath/athrd/athrd.c
405
D(ETSI1_WORLD),
tools/tools/ath/athrd/athrd.c
406
D(ETSI3_ETSIA), /* France (optional) */
tools/tools/ath/athrd/athrd.c
407
D(ETSI2_WORLD), /* Hungary & others */
tools/tools/ath/athrd/athrd.c
408
D(ETSI3_WORLD), /* France & others */
tools/tools/ath/athrd/athrd.c
409
D(ETSI4_WORLD),
tools/tools/ath/athrd/athrd.c
410
D(ETSI4_ETSIC),
tools/tools/ath/athrd/athrd.c
411
D(ETSI5_WORLD),
tools/tools/ath/athrd/athrd.c
412
D(ETSI6_WORLD), /* Bulgaria */
tools/tools/ath/athrd/athrd.c
413
D(ETSI_RESERVED), /* Reserved (Do not used) */
tools/tools/ath/athrd/athrd.c
415
D(MKK1_MKKA), /* Japan (JP1) */
tools/tools/ath/athrd/athrd.c
416
D(MKK1_MKKB), /* Japan (JP0) */
tools/tools/ath/athrd/athrd.c
417
D(APL4_WORLD), /* Singapore */
tools/tools/ath/athrd/athrd.c
418
D(MKK2_MKKA), /* Japan with 4.9G channels */
tools/tools/ath/athrd/athrd.c
419
D(APL_RESERVED), /* Reserved (Do not used) */
tools/tools/ath/athrd/athrd.c
420
D(APL2_WORLD), /* Korea */
tools/tools/ath/athrd/athrd.c
421
D(APL2_APLC),
tools/tools/ath/athrd/athrd.c
422
D(APL3_WORLD),
tools/tools/ath/athrd/athrd.c
423
D(MKK1_FCCA), /* Japan (JP1-1) */
tools/tools/ath/athrd/athrd.c
424
D(APL2_APLD), /* Korea with 2.3G channels */
tools/tools/ath/athrd/athrd.c
425
D(MKK1_MKKA1), /* Japan (JE1) */
tools/tools/ath/athrd/athrd.c
426
D(MKK1_MKKA2), /* Japan (JE2) */
tools/tools/ath/athrd/athrd.c
427
D(MKK1_MKKC),
tools/tools/ath/athrd/athrd.c
429
D(APL3_FCCA),
tools/tools/ath/athrd/athrd.c
430
D(APL1_WORLD), /* Latin America */
tools/tools/ath/athrd/athrd.c
431
D(APL1_FCCA),
tools/tools/ath/athrd/athrd.c
432
D(APL1_APLA),
tools/tools/ath/athrd/athrd.c
433
D(APL1_ETSIC),
tools/tools/ath/athrd/athrd.c
434
D(APL2_ETSIC), /* Venezuela */
tools/tools/ath/athrd/athrd.c
435
D(APL5_WORLD), /* Chile */
tools/tools/ath/athrd/athrd.c
436
D(APL6_WORLD), /* Singapore */
tools/tools/ath/athrd/athrd.c
437
D(APL7_FCCA), /* Taiwan 5.47 Band */
tools/tools/ath/athrd/athrd.c
438
D(APL8_WORLD), /* Malaysia 5GHz */
tools/tools/ath/athrd/athrd.c
439
D(APL9_WORLD), /* Korea 5GHz */
tools/tools/ath/athrd/athrd.c
441
D(WOR0_WORLD), /* World0 (WO0 SKU) */
tools/tools/ath/athrd/athrd.c
442
D(WOR1_WORLD), /* World1 (WO1 SKU) */
tools/tools/ath/athrd/athrd.c
443
D(WOR2_WORLD), /* World2 (WO2 SKU) */
tools/tools/ath/athrd/athrd.c
444
D(WOR3_WORLD), /* World3 (WO3 SKU) */
tools/tools/ath/athrd/athrd.c
445
D(WOR4_WORLD), /* World4 (WO4 SKU) */
tools/tools/ath/athrd/athrd.c
446
D(WOR5_ETSIC), /* World5 (WO5 SKU) */
tools/tools/ath/athrd/athrd.c
448
D(WOR01_WORLD), /* World0-1 (WW0-1 SKU) */
tools/tools/ath/athrd/athrd.c
449
D(WOR02_WORLD), /* World0-2 (WW0-2 SKU) */
tools/tools/ath/athrd/athrd.c
450
D(EU1_WORLD),
tools/tools/ath/athrd/athrd.c
452
D(WOR9_WORLD), /* World9 (WO9 SKU) */
tools/tools/ath/athrd/athrd.c
453
D(WORA_WORLD), /* WorldA (WOA SKU) */
tools/tools/ath/athrd/athrd.c
455
D(MKK3_MKKB), /* Japan UNI-1 even + MKKB */
tools/tools/ath/athrd/athrd.c
456
D(MKK3_MKKA2), /* Japan UNI-1 even + MKKA2 */
tools/tools/ath/athrd/athrd.c
457
D(MKK3_MKKC), /* Japan UNI-1 even + MKKC */
tools/tools/ath/athrd/athrd.c
459
D(MKK4_MKKB), /* Japan UNI-1 even + UNI-2 + MKKB */
tools/tools/ath/athrd/athrd.c
460
D(MKK4_MKKA2), /* Japan UNI-1 even + UNI-2 + MKKA2 */
tools/tools/ath/athrd/athrd.c
461
D(MKK4_MKKC), /* Japan UNI-1 even + UNI-2 + MKKC */
tools/tools/ath/athrd/athrd.c
463
D(MKK5_MKKB), /* Japan UNI-1 even + UNI-2 + mid-band + MKKB */
tools/tools/ath/athrd/athrd.c
464
D(MKK5_MKKA2), /* Japan UNI-1 even + UNI-2 + mid-band + MKKA2 */
tools/tools/ath/athrd/athrd.c
465
D(MKK5_MKKC), /* Japan UNI-1 even + UNI-2 + mid-band + MKKC */
tools/tools/ath/athrd/athrd.c
467
D(MKK6_MKKB), /* Japan UNI-1 even + UNI-1 odd MKKB */
tools/tools/ath/athrd/athrd.c
468
D(MKK6_MKKA2), /* Japan UNI-1 even + UNI-1 odd + MKKA2 */
tools/tools/ath/athrd/athrd.c
469
D(MKK6_MKKC), /* Japan UNI-1 even + UNI-1 odd + MKKC */
tools/tools/ath/athrd/athrd.c
471
D(MKK7_MKKB), /* Japan UNI-1 even + UNI-1 odd + UNI-2 + MKKB */
tools/tools/ath/athrd/athrd.c
472
D(MKK7_MKKA2), /* Japan UNI-1 even + UNI-1 odd + UNI-2 + MKKA2 */
tools/tools/ath/athrd/athrd.c
473
D(MKK7_MKKC), /* Japan UNI-1 even + UNI-1 odd + UNI-2 + MKKC */
tools/tools/ath/athrd/athrd.c
475
D(MKK8_MKKB), /* Japan UNI-1 even + UNI-1 odd + UNI-2 + mid-band + MKKB */
tools/tools/ath/athrd/athrd.c
476
D(MKK8_MKKA2), /* Japan UNI-1 even + UNI-1 odd + UNI-2 + mid-band + MKKA2 */
tools/tools/ath/athrd/athrd.c
477
D(MKK8_MKKC), /* Japan UNI-1 even + UNI-1 odd + UNI-2 + mid-band + MKKC */
tools/tools/ath/athrd/athrd.c
479
D(MKK3_MKKA), /* Japan UNI-1 even + MKKA */
tools/tools/ath/athrd/athrd.c
480
D(MKK3_MKKA1), /* Japan UNI-1 even + MKKA1 */
tools/tools/ath/athrd/athrd.c
481
D(MKK3_FCCA), /* Japan UNI-1 even + FCCA */
tools/tools/ath/athrd/athrd.c
482
D(MKK4_MKKA), /* Japan UNI-1 even + UNI-2 + MKKA */
tools/tools/ath/athrd/athrd.c
483
D(MKK4_MKKA1), /* Japan UNI-1 even + UNI-2 + MKKA1 */
tools/tools/ath/athrd/athrd.c
484
D(MKK4_FCCA), /* Japan UNI-1 even + UNI-2 + FCCA */
tools/tools/ath/athrd/athrd.c
485
D(MKK9_MKKA), /* Japan UNI-1 even + 4.9GHz */
tools/tools/ath/athrd/athrd.c
486
D(MKK10_MKKA), /* Japan UNI-1 even + UNI-2 + 4.9GHz */
tools/tools/ath/athrd/athrd.c
488
D(APL1), /* LAT & Asia */
tools/tools/ath/athrd/athrd.c
489
D(APL2), /* LAT & Asia */
tools/tools/ath/athrd/athrd.c
490
D(APL3), /* Taiwan */
tools/tools/ath/athrd/athrd.c
491
D(APL4), /* Jordan */
tools/tools/ath/athrd/athrd.c
492
D(APL5), /* Chile */
tools/tools/ath/athrd/athrd.c
493
D(APL6), /* Singapore */
tools/tools/ath/athrd/athrd.c
494
D(APL8), /* Malaysia */
tools/tools/ath/athrd/athrd.c
495
D(APL9), /* Korea (South) ROC 3 */
tools/tools/ath/athrd/athrd.c
497
D(ETSI1), /* Europe & others */
tools/tools/ath/athrd/athrd.c
498
D(ETSI2), /* Europe & others */
tools/tools/ath/athrd/athrd.c
499
D(ETSI3), /* Europe & others */
tools/tools/ath/athrd/athrd.c
500
D(ETSI4), /* Europe & others */
tools/tools/ath/athrd/athrd.c
501
D(ETSI5), /* Europe & others */
tools/tools/ath/athrd/athrd.c
502
D(ETSI6), /* Europe & others */
tools/tools/ath/athrd/athrd.c
503
D(ETSIA), /* France */
tools/tools/ath/athrd/athrd.c
504
D(ETSIB), /* Israel */
tools/tools/ath/athrd/athrd.c
505
D(ETSIC), /* Latin America */
tools/tools/ath/athrd/athrd.c
507
D(FCC1), /* US & others */
tools/tools/ath/athrd/athrd.c
508
D(FCC2),
tools/tools/ath/athrd/athrd.c
509
D(FCC3), /* US w/new middle band & DFS */
tools/tools/ath/athrd/athrd.c
510
D(FCC4), /* US Public Safety */
tools/tools/ath/athrd/athrd.c
511
D(FCCA),
tools/tools/ath/athrd/athrd.c
513
D(APLD), /* South Korea */
tools/tools/ath/athrd/athrd.c
515
D(MKK1), /* Japan (UNI-1 odd)*/
tools/tools/ath/athrd/athrd.c
516
D(MKK2), /* Japan (4.9 GHz + UNI-1 odd) */
tools/tools/ath/athrd/athrd.c
517
D(MKK3), /* Japan (UNI-1 even) */
tools/tools/ath/athrd/athrd.c
518
D(MKK4), /* Japan (UNI-1 even + UNI-2) */
tools/tools/ath/athrd/athrd.c
519
D(MKK5), /* Japan (UNI-1 even + UNI-2 + mid-band) */
tools/tools/ath/athrd/athrd.c
520
D(MKK6), /* Japan (UNI-1 odd + UNI-1 even) */
tools/tools/ath/athrd/athrd.c
521
D(MKK7), /* Japan (UNI-1 odd + UNI-1 even + UNI-2 */
tools/tools/ath/athrd/athrd.c
522
D(MKK8), /* Japan (UNI-1 odd + UNI-1 even + UNI-2 + mid-band) */
tools/tools/ath/athrd/athrd.c
523
D(MKK9), /* Japan (UNI-1 even + 4.9 GHZ) */
tools/tools/ath/athrd/athrd.c
524
D(MKK10), /* Japan (UNI-1 even + UNI-2 + 4.9 GHZ) */
tools/tools/ath/athrd/athrd.c
525
D(MKKA), /* Japan */
tools/tools/ath/athrd/athrd.c
526
D(MKKC),
tools/tools/ath/athrd/athrd.c
528
D(NULL1),
tools/tools/ath/athrd/athrd.c
529
D(WORLD),
tools/tools/ath/athrd/athrd.c
530
D(DEBUG_REG_DMN),
usr.bin/calendar/moon.c
328
double D = lunar_elongation(c);
usr.bin/calendar/moon.c
339
arg->w * D +
usr.bin/calendar/moon.c
438
double D = lunar_elongation(c);
usr.bin/calendar/moon.c
449
arg->w * D +
usr.bin/calendar/moon.c
548
double D = lunar_elongation(c);
usr.bin/calendar/moon.c
559
arg->w * D +
usr.bin/systat/vmmeter.c
132
DRAW_ROW(n, CPU_START + i, 6, "%*u", D(i, v_timer));
usr.bin/systat/vmmeter.c
133
DRAW_ROW(n, CPU_START + i, 8, "%*u", D(i, v_ipi));
usr.bin/systat/vmmeter.c
134
DRAW_ROW(n, CPU_START + i, 8, "%*u", D(i, v_intr));
usr.bin/systat/vmmeter.c
155
if (D(i, v_lock_colls) > 9999999)
usr.bin/systat/vmmeter.c
159
D(i, v_lock_colls));
usr.bin/systat/vmmeter.c
161
if (D(i, v_lock_colls) == 0) {