Symbol: GETU32
crypto/krb5/src/lib/crypto/builtin/camellia/camellia.c
1425
tmp[0] = GETU32(plaintext);
crypto/krb5/src/lib/crypto/builtin/camellia/camellia.c
1426
tmp[1] = GETU32(plaintext + 4);
crypto/krb5/src/lib/crypto/builtin/camellia/camellia.c
1427
tmp[2] = GETU32(plaintext + 8);
crypto/krb5/src/lib/crypto/builtin/camellia/camellia.c
1428
tmp[3] = GETU32(plaintext + 12);
crypto/krb5/src/lib/crypto/builtin/camellia/camellia.c
1457
tmp[0] = GETU32(ciphertext);
crypto/krb5/src/lib/crypto/builtin/camellia/camellia.c
1458
tmp[1] = GETU32(ciphertext + 4);
crypto/krb5/src/lib/crypto/builtin/camellia/camellia.c
1459
tmp[2] = GETU32(ciphertext + 8);
crypto/krb5/src/lib/crypto/builtin/camellia/camellia.c
1460
tmp[3] = GETU32(ciphertext + 12);
crypto/krb5/src/lib/crypto/builtin/camellia/camellia.c
466
kll = GETU32(key );
crypto/krb5/src/lib/crypto/builtin/camellia/camellia.c
467
klr = GETU32(key + 4);
crypto/krb5/src/lib/crypto/builtin/camellia/camellia.c
468
krl = GETU32(key + 8);
crypto/krb5/src/lib/crypto/builtin/camellia/camellia.c
469
krr = GETU32(key + 12);
crypto/krb5/src/lib/crypto/builtin/camellia/camellia.c
681
kll = GETU32(key );
crypto/krb5/src/lib/crypto/builtin/camellia/camellia.c
682
klr = GETU32(key + 4);
crypto/krb5/src/lib/crypto/builtin/camellia/camellia.c
683
krl = GETU32(key + 8);
crypto/krb5/src/lib/crypto/builtin/camellia/camellia.c
684
krr = GETU32(key + 12);
crypto/krb5/src/lib/crypto/builtin/camellia/camellia.c
685
krll = GETU32(key + 16);
crypto/krb5/src/lib/crypto/builtin/camellia/camellia.c
686
krlr = GETU32(key + 20);
crypto/krb5/src/lib/crypto/builtin/camellia/camellia.c
687
krrl = GETU32(key + 24);
crypto/krb5/src/lib/crypto/builtin/camellia/camellia.c
688
krrr = GETU32(key + 28);
crypto/openssh/rijndael.c
635
rk[0] = GETU32(cipherKey );
crypto/openssh/rijndael.c
636
rk[1] = GETU32(cipherKey + 4);
crypto/openssh/rijndael.c
637
rk[2] = GETU32(cipherKey + 8);
crypto/openssh/rijndael.c
638
rk[3] = GETU32(cipherKey + 12);
crypto/openssh/rijndael.c
657
rk[4] = GETU32(cipherKey + 16);
crypto/openssh/rijndael.c
658
rk[5] = GETU32(cipherKey + 20);
crypto/openssh/rijndael.c
679
rk[6] = GETU32(cipherKey + 24);
crypto/openssh/rijndael.c
680
rk[7] = GETU32(cipherKey + 28);
crypto/openssh/rijndael.c
774
s0 = GETU32(pt ) ^ rk[0];
crypto/openssh/rijndael.c
775
s1 = GETU32(pt + 4) ^ rk[1];
crypto/openssh/rijndael.c
776
s2 = GETU32(pt + 8) ^ rk[2];
crypto/openssh/rijndael.c
777
s3 = GETU32(pt + 12) ^ rk[3];
crypto/openssh/rijndael.c
959
s0 = GETU32(ct ) ^ rk[0];
crypto/openssh/rijndael.c
960
s1 = GETU32(ct + 4) ^ rk[1];
crypto/openssh/rijndael.c
961
s2 = GETU32(ct + 8) ^ rk[2];
crypto/openssh/rijndael.c
962
s3 = GETU32(ct + 12) ^ rk[3];
crypto/openssl/crypto/aes/aes_core.c
3067
rk[0] = GETU32(userKey);
crypto/openssl/crypto/aes/aes_core.c
3068
rk[1] = GETU32(userKey + 4);
crypto/openssl/crypto/aes/aes_core.c
3069
rk[2] = GETU32(userKey + 8);
crypto/openssl/crypto/aes/aes_core.c
3070
rk[3] = GETU32(userKey + 12);
crypto/openssl/crypto/aes/aes_core.c
3084
rk[4] = GETU32(userKey + 16);
crypto/openssl/crypto/aes/aes_core.c
3085
rk[5] = GETU32(userKey + 20);
crypto/openssl/crypto/aes/aes_core.c
3101
rk[6] = GETU32(userKey + 24);
crypto/openssl/crypto/aes/aes_core.c
3102
rk[7] = GETU32(userKey + 28);
crypto/openssl/crypto/aes/aes_core.c
3190
s0 = GETU32(in) ^ rk[0];
crypto/openssl/crypto/aes/aes_core.c
3191
s1 = GETU32(in + 4) ^ rk[1];
crypto/openssl/crypto/aes/aes_core.c
3192
s2 = GETU32(in + 8) ^ rk[2];
crypto/openssl/crypto/aes/aes_core.c
3193
s3 = GETU32(in + 12) ^ rk[3];
crypto/openssl/crypto/aes/aes_core.c
3322
s0 = GETU32(in) ^ rk[0];
crypto/openssl/crypto/aes/aes_core.c
3323
s1 = GETU32(in + 4) ^ rk[1];
crypto/openssl/crypto/aes/aes_core.c
3324
s2 = GETU32(in + 8) ^ rk[2];
crypto/openssl/crypto/aes/aes_core.c
3325
s3 = GETU32(in + 12) ^ rk[3];
crypto/openssl/crypto/aes/aes_core.c
3506
rk[0] = GETU32(userKey);
crypto/openssl/crypto/aes/aes_core.c
3507
rk[1] = GETU32(userKey + 4);
crypto/openssl/crypto/aes/aes_core.c
3508
rk[2] = GETU32(userKey + 8);
crypto/openssl/crypto/aes/aes_core.c
3509
rk[3] = GETU32(userKey + 12);
crypto/openssl/crypto/aes/aes_core.c
3523
rk[4] = GETU32(userKey + 16);
crypto/openssl/crypto/aes/aes_core.c
3524
rk[5] = GETU32(userKey + 20);
crypto/openssl/crypto/aes/aes_core.c
3540
rk[6] = GETU32(userKey + 24);
crypto/openssl/crypto/aes/aes_core.c
3541
rk[7] = GETU32(userKey + 28);
crypto/openssl/crypto/aes/aes_x86core.c
501
rk[0] = GETU32(userKey);
crypto/openssl/crypto/aes/aes_x86core.c
502
rk[1] = GETU32(userKey + 4);
crypto/openssl/crypto/aes/aes_x86core.c
503
rk[2] = GETU32(userKey + 8);
crypto/openssl/crypto/aes/aes_x86core.c
504
rk[3] = GETU32(userKey + 12);
crypto/openssl/crypto/aes/aes_x86core.c
518
rk[4] = GETU32(userKey + 16);
crypto/openssl/crypto/aes/aes_x86core.c
519
rk[5] = GETU32(userKey + 20);
crypto/openssl/crypto/aes/aes_x86core.c
535
rk[6] = GETU32(userKey + 24);
crypto/openssl/crypto/aes/aes_x86core.c
536
rk[7] = GETU32(userKey + 28);
crypto/openssl/crypto/aes/aes_x86core.c
645
s0 = GETU32(in) ^ rk[0];
crypto/openssl/crypto/aes/aes_x86core.c
646
s1 = GETU32(in + 4) ^ rk[1];
crypto/openssl/crypto/aes/aes_x86core.c
647
s2 = GETU32(in + 8) ^ rk[2];
crypto/openssl/crypto/aes/aes_x86core.c
648
s3 = GETU32(in + 12) ^ rk[3];
crypto/openssl/crypto/aes/aes_x86core.c
762
s0 = GETU32(in) ^ rk[0];
crypto/openssl/crypto/aes/aes_x86core.c
763
s1 = GETU32(in + 4) ^ rk[1];
crypto/openssl/crypto/aes/aes_x86core.c
764
s2 = GETU32(in + 8) ^ rk[2];
crypto/openssl/crypto/aes/aes_x86core.c
765
s3 = GETU32(in + 12) ^ rk[3];
crypto/openssl/crypto/camellia/camellia.c
292
k[0] = s0 = GETU32(rawKey);
crypto/openssl/crypto/camellia/camellia.c
293
k[1] = s1 = GETU32(rawKey + 4);
crypto/openssl/crypto/camellia/camellia.c
294
k[2] = s2 = GETU32(rawKey + 8);
crypto/openssl/crypto/camellia/camellia.c
295
k[3] = s3 = GETU32(rawKey + 12);
crypto/openssl/crypto/camellia/camellia.c
298
k[8] = s0 = GETU32(rawKey + 16);
crypto/openssl/crypto/camellia/camellia.c
299
k[9] = s1 = GETU32(rawKey + 20);
crypto/openssl/crypto/camellia/camellia.c
304
k[10] = s2 = GETU32(rawKey + 24);
crypto/openssl/crypto/camellia/camellia.c
305
k[11] = s3 = GETU32(rawKey + 28);
crypto/openssl/crypto/camellia/camellia.c
412
s0 = GETU32(plaintext) ^ k[0];
crypto/openssl/crypto/camellia/camellia.c
413
s1 = GETU32(plaintext + 4) ^ k[1];
crypto/openssl/crypto/camellia/camellia.c
414
s2 = GETU32(plaintext + 8) ^ k[2];
crypto/openssl/crypto/camellia/camellia.c
415
s3 = GETU32(plaintext + 12) ^ k[3];
crypto/openssl/crypto/camellia/camellia.c
465
s0 = GETU32(ciphertext) ^ k[0];
crypto/openssl/crypto/camellia/camellia.c
466
s1 = GETU32(ciphertext + 4) ^ k[1];
crypto/openssl/crypto/camellia/camellia.c
467
s2 = GETU32(ciphertext + 8) ^ k[2];
crypto/openssl/crypto/camellia/camellia.c
468
s3 = GETU32(ciphertext + 12) ^ k[3];
crypto/openssl/crypto/modes/ctr128.c
166
ctr32 = GETU32(ivec + 12);
crypto/openssl/crypto/modes/gcm128.c
1035
ctr = GETU32(ctx->Yi.c + 12);
crypto/openssl/crypto/modes/gcm128.c
1270
ctr = GETU32(ctx->Yi.c + 12);
crypto/openssl/crypto/modes/gcm128.c
1424
ctr = GETU32(ctx->Yi.c + 12);
crypto/openssl/crypto/modes/gcm128.c
1581
alen = (u64)GETU32(p) << 32 | GETU32(p + 4);
crypto/openssl/crypto/modes/gcm128.c
1582
clen = (u64)GETU32(p + 8) << 32 | GETU32(p + 12);
crypto/openssl/crypto/modes/gcm128.c
618
hi = (u64)GETU32(p) << 32 | GETU32(p + 4);
crypto/openssl/crypto/modes/gcm128.c
619
lo = (u64)GETU32(p + 8) << 32 | GETU32(p + 12);
crypto/openssl/crypto/modes/gcm128.c
691
ctr = GETU32(ctx->Xi.c + 12);
crypto/openssl/crypto/modes/gcm128.c
810
ctr = GETU32(ctx->Yi.c + 12);
crypto/openssl/crypto/modes/xts128gb.c
138
hi = (u64)GETU32(p) << 32 | GETU32(p + 4);
crypto/openssl/crypto/modes/xts128gb.c
139
lo = (u64)GETU32(p + 8) << 32 | GETU32(p + 12);
crypto/openssl/crypto/modes/xts128gb.c
152
hi = (u64)GETU32(p) << 32 | GETU32(p + 4);
crypto/openssl/crypto/modes/xts128gb.c
153
lo = (u64)GETU32(p + 8) << 32 | GETU32(p + 12);
crypto/openssl/crypto/modes/xts128gb.c
80
hi = (u64)GETU32(p) << 32 | GETU32(p + 4);
crypto/openssl/crypto/modes/xts128gb.c
81
lo = (u64)GETU32(p + 8) << 32 | GETU32(p + 12);
crypto/openssl/crypto/modes/xts128gb.c
94
hi = (u64)GETU32(p) << 32 | GETU32(p + 4);
crypto/openssl/crypto/modes/xts128gb.c
95
lo = (u64)GETU32(p + 8) << 32 | GETU32(p + 12);
crypto/openssl/providers/implementations/rands/drbg_ctr.c
442
ctr32 = GETU32(ctr->V + 12) + blocks;
sys/crypto/camellia/camellia.c
1275
tmp[0] = GETU32(plaintext);
sys/crypto/camellia/camellia.c
1276
tmp[1] = GETU32(plaintext + 4);
sys/crypto/camellia/camellia.c
1277
tmp[2] = GETU32(plaintext + 8);
sys/crypto/camellia/camellia.c
1278
tmp[3] = GETU32(plaintext + 12);
sys/crypto/camellia/camellia.c
1307
tmp[0] = GETU32(ciphertext);
sys/crypto/camellia/camellia.c
1308
tmp[1] = GETU32(ciphertext + 4);
sys/crypto/camellia/camellia.c
1309
tmp[2] = GETU32(ciphertext + 8);
sys/crypto/camellia/camellia.c
1310
tmp[3] = GETU32(ciphertext + 12);
sys/crypto/camellia/camellia.c
448
kll = GETU32(key );
sys/crypto/camellia/camellia.c
449
klr = GETU32(key + 4);
sys/crypto/camellia/camellia.c
450
krl = GETU32(key + 8);
sys/crypto/camellia/camellia.c
451
krr = GETU32(key + 12);
sys/crypto/camellia/camellia.c
657
kll = GETU32(key );
sys/crypto/camellia/camellia.c
658
klr = GETU32(key + 4);
sys/crypto/camellia/camellia.c
659
krl = GETU32(key + 8);
sys/crypto/camellia/camellia.c
660
krr = GETU32(key + 12);
sys/crypto/camellia/camellia.c
661
krll = GETU32(key + 16);
sys/crypto/camellia/camellia.c
662
krlr = GETU32(key + 20);
sys/crypto/camellia/camellia.c
663
krrl = GETU32(key + 24);
sys/crypto/camellia/camellia.c
664
krrr = GETU32(key + 28);
sys/crypto/rijndael/rijndael-alg-fst.c
1052
s0 = GETU32(ct ) ^ rk[0];
sys/crypto/rijndael/rijndael-alg-fst.c
1053
s1 = GETU32(ct + 4) ^ rk[1];
sys/crypto/rijndael/rijndael-alg-fst.c
1054
s2 = GETU32(ct + 8) ^ rk[2];
sys/crypto/rijndael/rijndael-alg-fst.c
1055
s3 = GETU32(ct + 12) ^ rk[3];
sys/crypto/rijndael/rijndael-alg-fst.c
739
rk[0] = GETU32(cipherKey );
sys/crypto/rijndael/rijndael-alg-fst.c
740
rk[1] = GETU32(cipherKey + 4);
sys/crypto/rijndael/rijndael-alg-fst.c
741
rk[2] = GETU32(cipherKey + 8);
sys/crypto/rijndael/rijndael-alg-fst.c
742
rk[3] = GETU32(cipherKey + 12);
sys/crypto/rijndael/rijndael-alg-fst.c
761
rk[4] = GETU32(cipherKey + 16);
sys/crypto/rijndael/rijndael-alg-fst.c
762
rk[5] = GETU32(cipherKey + 20);
sys/crypto/rijndael/rijndael-alg-fst.c
783
rk[6] = GETU32(cipherKey + 24);
sys/crypto/rijndael/rijndael-alg-fst.c
784
rk[7] = GETU32(cipherKey + 28);
sys/crypto/rijndael/rijndael-alg-fst.c
871
s0 = GETU32(pt ) ^ rk[0];
sys/crypto/rijndael/rijndael-alg-fst.c
872
s1 = GETU32(pt + 4) ^ rk[1];
sys/crypto/rijndael/rijndael-alg-fst.c
873
s2 = GETU32(pt + 8) ^ rk[2];
sys/crypto/rijndael/rijndael-alg-fst.c
874
s3 = GETU32(pt + 12) ^ rk[3];