Symbol: ROUND_00_15
crypto/libressl/crypto/sha/sha256.c
202
ROUND_00_15(i,a,b,c,d,e,f,g,h); } while (0)
crypto/libressl/crypto/sha/sha256.c
221
T1 = X[0] = W[0]; ROUND_00_15(0,a,b,c,d,e,f,g,h);
crypto/libressl/crypto/sha/sha256.c
222
T1 = X[1] = W[1]; ROUND_00_15(1,h,a,b,c,d,e,f,g);
crypto/libressl/crypto/sha/sha256.c
223
T1 = X[2] = W[2]; ROUND_00_15(2,g,h,a,b,c,d,e,f);
crypto/libressl/crypto/sha/sha256.c
224
T1 = X[3] = W[3]; ROUND_00_15(3,f,g,h,a,b,c,d,e);
crypto/libressl/crypto/sha/sha256.c
225
T1 = X[4] = W[4]; ROUND_00_15(4,e,f,g,h,a,b,c,d);
crypto/libressl/crypto/sha/sha256.c
226
T1 = X[5] = W[5]; ROUND_00_15(5,d,e,f,g,h,a,b,c);
crypto/libressl/crypto/sha/sha256.c
227
T1 = X[6] = W[6]; ROUND_00_15(6,c,d,e,f,g,h,a,b);
crypto/libressl/crypto/sha/sha256.c
228
T1 = X[7] = W[7]; ROUND_00_15(7,b,c,d,e,f,g,h,a);
crypto/libressl/crypto/sha/sha256.c
229
T1 = X[8] = W[8]; ROUND_00_15(8,a,b,c,d,e,f,g,h);
crypto/libressl/crypto/sha/sha256.c
230
T1 = X[9] = W[9]; ROUND_00_15(9,h,a,b,c,d,e,f,g);
crypto/libressl/crypto/sha/sha256.c
231
T1 = X[10] = W[10]; ROUND_00_15(10,g,h,a,b,c,d,e,f);
crypto/libressl/crypto/sha/sha256.c
232
T1 = X[11] = W[11]; ROUND_00_15(11,f,g,h,a,b,c,d,e);
crypto/libressl/crypto/sha/sha256.c
233
T1 = X[12] = W[12]; ROUND_00_15(12,e,f,g,h,a,b,c,d);
crypto/libressl/crypto/sha/sha256.c
234
T1 = X[13] = W[13]; ROUND_00_15(13,d,e,f,g,h,a,b,c);
crypto/libressl/crypto/sha/sha256.c
235
T1 = X[14] = W[14]; ROUND_00_15(14,c,d,e,f,g,h,a,b);
crypto/libressl/crypto/sha/sha256.c
236
T1 = X[15] = W[15]; ROUND_00_15(15,b,c,d,e,f,g,h,a);
crypto/libressl/crypto/sha/sha256.c
244
HOST_c2l(data,l); T1 = X[0] = l; ROUND_00_15(0,a,b,c,d,e,f,g,h);
crypto/libressl/crypto/sha/sha256.c
245
HOST_c2l(data,l); T1 = X[1] = l; ROUND_00_15(1,h,a,b,c,d,e,f,g);
crypto/libressl/crypto/sha/sha256.c
246
HOST_c2l(data,l); T1 = X[2] = l; ROUND_00_15(2,g,h,a,b,c,d,e,f);
crypto/libressl/crypto/sha/sha256.c
247
HOST_c2l(data,l); T1 = X[3] = l; ROUND_00_15(3,f,g,h,a,b,c,d,e);
crypto/libressl/crypto/sha/sha256.c
248
HOST_c2l(data,l); T1 = X[4] = l; ROUND_00_15(4,e,f,g,h,a,b,c,d);
crypto/libressl/crypto/sha/sha256.c
249
HOST_c2l(data,l); T1 = X[5] = l; ROUND_00_15(5,d,e,f,g,h,a,b,c);
crypto/libressl/crypto/sha/sha256.c
250
HOST_c2l(data,l); T1 = X[6] = l; ROUND_00_15(6,c,d,e,f,g,h,a,b);
crypto/libressl/crypto/sha/sha256.c
251
HOST_c2l(data,l); T1 = X[7] = l; ROUND_00_15(7,b,c,d,e,f,g,h,a);
crypto/libressl/crypto/sha/sha256.c
252
HOST_c2l(data,l); T1 = X[8] = l; ROUND_00_15(8,a,b,c,d,e,f,g,h);
crypto/libressl/crypto/sha/sha256.c
253
HOST_c2l(data,l); T1 = X[9] = l; ROUND_00_15(9,h,a,b,c,d,e,f,g);
crypto/libressl/crypto/sha/sha256.c
254
HOST_c2l(data,l); T1 = X[10] = l; ROUND_00_15(10,g,h,a,b,c,d,e,f);
crypto/libressl/crypto/sha/sha256.c
255
HOST_c2l(data,l); T1 = X[11] = l; ROUND_00_15(11,f,g,h,a,b,c,d,e);
crypto/libressl/crypto/sha/sha256.c
256
HOST_c2l(data,l); T1 = X[12] = l; ROUND_00_15(12,e,f,g,h,a,b,c,d);
crypto/libressl/crypto/sha/sha256.c
257
HOST_c2l(data,l); T1 = X[13] = l; ROUND_00_15(13,d,e,f,g,h,a,b,c);
crypto/libressl/crypto/sha/sha256.c
258
HOST_c2l(data,l); T1 = X[14] = l; ROUND_00_15(14,c,d,e,f,g,h,a,b);
crypto/libressl/crypto/sha/sha256.c
259
HOST_c2l(data,l); T1 = X[15] = l; ROUND_00_15(15,b,c,d,e,f,g,h,a);
crypto/libressl/crypto/sha/sha512.c
465
ROUND_00_15(i+j,a,b,c,d,e,f,g,h); } while (0)
crypto/libressl/crypto/sha/sha512.c
480
T1 = X[0] = W[0]; ROUND_00_15(0,a,b,c,d,e,f,g,h);
crypto/libressl/crypto/sha/sha512.c
481
T1 = X[1] = W[1]; ROUND_00_15(1,h,a,b,c,d,e,f,g);
crypto/libressl/crypto/sha/sha512.c
482
T1 = X[2] = W[2]; ROUND_00_15(2,g,h,a,b,c,d,e,f);
crypto/libressl/crypto/sha/sha512.c
483
T1 = X[3] = W[3]; ROUND_00_15(3,f,g,h,a,b,c,d,e);
crypto/libressl/crypto/sha/sha512.c
484
T1 = X[4] = W[4]; ROUND_00_15(4,e,f,g,h,a,b,c,d);
crypto/libressl/crypto/sha/sha512.c
485
T1 = X[5] = W[5]; ROUND_00_15(5,d,e,f,g,h,a,b,c);
crypto/libressl/crypto/sha/sha512.c
486
T1 = X[6] = W[6]; ROUND_00_15(6,c,d,e,f,g,h,a,b);
crypto/libressl/crypto/sha/sha512.c
487
T1 = X[7] = W[7]; ROUND_00_15(7,b,c,d,e,f,g,h,a);
crypto/libressl/crypto/sha/sha512.c
488
T1 = X[8] = W[8]; ROUND_00_15(8,a,b,c,d,e,f,g,h);
crypto/libressl/crypto/sha/sha512.c
489
T1 = X[9] = W[9]; ROUND_00_15(9,h,a,b,c,d,e,f,g);
crypto/libressl/crypto/sha/sha512.c
490
T1 = X[10] = W[10]; ROUND_00_15(10,g,h,a,b,c,d,e,f);
crypto/libressl/crypto/sha/sha512.c
491
T1 = X[11] = W[11]; ROUND_00_15(11,f,g,h,a,b,c,d,e);
crypto/libressl/crypto/sha/sha512.c
492
T1 = X[12] = W[12]; ROUND_00_15(12,e,f,g,h,a,b,c,d);
crypto/libressl/crypto/sha/sha512.c
493
T1 = X[13] = W[13]; ROUND_00_15(13,d,e,f,g,h,a,b,c);
crypto/libressl/crypto/sha/sha512.c
494
T1 = X[14] = W[14]; ROUND_00_15(14,c,d,e,f,g,h,a,b);
crypto/libressl/crypto/sha/sha512.c
495
T1 = X[15] = W[15]; ROUND_00_15(15,b,c,d,e,f,g,h,a);
crypto/libressl/crypto/sha/sha512.c
497
T1 = X[0] = PULL64(W[0]); ROUND_00_15(0,a,b,c,d,e,f,g,h);
crypto/libressl/crypto/sha/sha512.c
498
T1 = X[1] = PULL64(W[1]); ROUND_00_15(1,h,a,b,c,d,e,f,g);
crypto/libressl/crypto/sha/sha512.c
499
T1 = X[2] = PULL64(W[2]); ROUND_00_15(2,g,h,a,b,c,d,e,f);
crypto/libressl/crypto/sha/sha512.c
500
T1 = X[3] = PULL64(W[3]); ROUND_00_15(3,f,g,h,a,b,c,d,e);
crypto/libressl/crypto/sha/sha512.c
501
T1 = X[4] = PULL64(W[4]); ROUND_00_15(4,e,f,g,h,a,b,c,d);
crypto/libressl/crypto/sha/sha512.c
502
T1 = X[5] = PULL64(W[5]); ROUND_00_15(5,d,e,f,g,h,a,b,c);
crypto/libressl/crypto/sha/sha512.c
503
T1 = X[6] = PULL64(W[6]); ROUND_00_15(6,c,d,e,f,g,h,a,b);
crypto/libressl/crypto/sha/sha512.c
504
T1 = X[7] = PULL64(W[7]); ROUND_00_15(7,b,c,d,e,f,g,h,a);
crypto/libressl/crypto/sha/sha512.c
505
T1 = X[8] = PULL64(W[8]); ROUND_00_15(8,a,b,c,d,e,f,g,h);
crypto/libressl/crypto/sha/sha512.c
506
T1 = X[9] = PULL64(W[9]); ROUND_00_15(9,h,a,b,c,d,e,f,g);
crypto/libressl/crypto/sha/sha512.c
507
T1 = X[10] = PULL64(W[10]); ROUND_00_15(10,g,h,a,b,c,d,e,f);
crypto/libressl/crypto/sha/sha512.c
508
T1 = X[11] = PULL64(W[11]); ROUND_00_15(11,f,g,h,a,b,c,d,e);
crypto/libressl/crypto/sha/sha512.c
509
T1 = X[12] = PULL64(W[12]); ROUND_00_15(12,e,f,g,h,a,b,c,d);
crypto/libressl/crypto/sha/sha512.c
510
T1 = X[13] = PULL64(W[13]); ROUND_00_15(13,d,e,f,g,h,a,b,c);
crypto/libressl/crypto/sha/sha512.c
511
T1 = X[14] = PULL64(W[14]); ROUND_00_15(14,c,d,e,f,g,h,a,b);
crypto/libressl/crypto/sha/sha512.c
512
T1 = X[15] = PULL64(W[15]); ROUND_00_15(15,b,c,d,e,f,g,h,a);