Symbol: GETU32
crypto/libressl/crypto/aes/aes_core.c
1231
rk[0] = GETU32(userKey);
crypto/libressl/crypto/aes/aes_core.c
1232
rk[1] = GETU32(userKey + 4);
crypto/libressl/crypto/aes/aes_core.c
1233
rk[2] = GETU32(userKey + 8);
crypto/libressl/crypto/aes/aes_core.c
1234
rk[3] = GETU32(userKey + 12);
crypto/libressl/crypto/aes/aes_core.c
1253
rk[4] = GETU32(userKey + 16);
crypto/libressl/crypto/aes/aes_core.c
1254
rk[5] = GETU32(userKey + 20);
crypto/libressl/crypto/aes/aes_core.c
1275
rk[6] = GETU32(userKey + 24);
crypto/libressl/crypto/aes/aes_core.c
1276
rk[7] = GETU32(userKey + 28);
crypto/libressl/crypto/aes/aes_core.c
648
rk[0] = GETU32(userKey);
crypto/libressl/crypto/aes/aes_core.c
649
rk[1] = GETU32(userKey + 4);
crypto/libressl/crypto/aes/aes_core.c
650
rk[2] = GETU32(userKey + 8);
crypto/libressl/crypto/aes/aes_core.c
651
rk[3] = GETU32(userKey + 12);
crypto/libressl/crypto/aes/aes_core.c
670
rk[4] = GETU32(userKey + 16);
crypto/libressl/crypto/aes/aes_core.c
671
rk[5] = GETU32(userKey + 20);
crypto/libressl/crypto/aes/aes_core.c
692
rk[6] = GETU32(userKey + 24);
crypto/libressl/crypto/aes/aes_core.c
693
rk[7] = GETU32(userKey + 28);
crypto/libressl/crypto/aes/aes_core.c
803
s0 = GETU32(in ) ^ rk[0];
crypto/libressl/crypto/aes/aes_core.c
804
s1 = GETU32(in + 4) ^ rk[1];
crypto/libressl/crypto/aes/aes_core.c
805
s2 = GETU32(in + 8) ^ rk[2];
crypto/libressl/crypto/aes/aes_core.c
806
s3 = GETU32(in + 12) ^ rk[3];
crypto/libressl/crypto/aes/aes_core.c
993
s0 = GETU32(in) ^ rk[0];
crypto/libressl/crypto/aes/aes_core.c
994
s1 = GETU32(in + 4) ^ rk[1];
crypto/libressl/crypto/aes/aes_core.c
995
s2 = GETU32(in + 8) ^ rk[2];
crypto/libressl/crypto/aes/aes_core.c
996
s3 = GETU32(in + 12) ^ rk[3];
crypto/libressl/crypto/camellia/camellia.c
113
#if !defined(GETU32) && !defined(PUTU32)
crypto/libressl/crypto/camellia/camellia.c
351
k[0] = s0 = GETU32(rawKey);
crypto/libressl/crypto/camellia/camellia.c
352
k[1] = s1 = GETU32(rawKey + 4);
crypto/libressl/crypto/camellia/camellia.c
353
k[2] = s2 = GETU32(rawKey + 8);
crypto/libressl/crypto/camellia/camellia.c
354
k[3] = s3 = GETU32(rawKey + 12);
crypto/libressl/crypto/camellia/camellia.c
357
k[8] = s0 = GETU32(rawKey + 16);
crypto/libressl/crypto/camellia/camellia.c
358
k[9] = s1 = GETU32(rawKey + 20);
crypto/libressl/crypto/camellia/camellia.c
363
k[10] = s2 = GETU32(rawKey + 24);
crypto/libressl/crypto/camellia/camellia.c
364
k[11] = s3 = GETU32(rawKey + 28);
crypto/libressl/crypto/camellia/camellia.c
471
s0 = GETU32(plaintext) ^ k[0];
crypto/libressl/crypto/camellia/camellia.c
472
s1 = GETU32(plaintext + 4) ^ k[1];
crypto/libressl/crypto/camellia/camellia.c
473
s2 = GETU32(plaintext + 8) ^ k[2];
crypto/libressl/crypto/camellia/camellia.c
474
s3 = GETU32(plaintext + 12) ^ k[3];
crypto/libressl/crypto/camellia/camellia.c
523
s0 = GETU32(ciphertext) ^ k[0];
crypto/libressl/crypto/camellia/camellia.c
524
s1 = GETU32(ciphertext+4) ^ k[1];
crypto/libressl/crypto/camellia/camellia.c
525
s2 = GETU32(ciphertext+8) ^ k[2];
crypto/libressl/crypto/camellia/camellia.c
526
s3 = GETU32(ciphertext+12) ^ k[3];
crypto/libressl/crypto/modes/ctr128.c
207
ctr32 = GETU32(ivec+12);
crypto/libressl/crypto/modes/gcm128.c
1101
ctr = GETU32(ctx->Yi.c+12);
crypto/libressl/crypto/modes/gcm128.c
1289
ctr = GETU32(ctx->Yi.c+12);
crypto/libressl/crypto/modes/gcm128.c
1407
ctr = GETU32(ctx->Yi.c+12);
crypto/libressl/crypto/modes/gcm128.c
1524
alen = (u64)GETU32(p) <<32|GETU32(p+4);
crypto/libressl/crypto/modes/gcm128.c
1525
clen = (u64)GETU32(p+8)<<32|GETU32(p+12);
crypto/libressl/crypto/modes/gcm128.c
596
X = (long)((u64)GETU32(p)<<32|GETU32(p+4));
crypto/libressl/crypto/modes/gcm128.c
600
X = (long)GETU32(p);
crypto/libressl/crypto/modes/gcm128.c
698
hi = (u64)GETU32(p) <<32|GETU32(p+4);
crypto/libressl/crypto/modes/gcm128.c
699
lo = (u64)GETU32(p+8)<<32|GETU32(p+12);
crypto/libressl/crypto/modes/gcm128.c
810
ctr = GETU32(ctx->Yi.c+12);
crypto/libressl/crypto/modes/gcm128.c
919
ctr = GETU32(ctx->Yi.c+12);
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];
sys/crypto/camellia/camellia.c
1278
tmp[0] = GETU32(plaintext);
sys/crypto/camellia/camellia.c
1279
tmp[1] = GETU32(plaintext + 4);
sys/crypto/camellia/camellia.c
1280
tmp[2] = GETU32(plaintext + 8);
sys/crypto/camellia/camellia.c
1281
tmp[3] = GETU32(plaintext + 12);
sys/crypto/camellia/camellia.c
1310
tmp[0] = GETU32(ciphertext);
sys/crypto/camellia/camellia.c
1311
tmp[1] = GETU32(ciphertext + 4);
sys/crypto/camellia/camellia.c
1312
tmp[2] = GETU32(ciphertext + 8);
sys/crypto/camellia/camellia.c
1313
tmp[3] = GETU32(ciphertext + 12);
sys/crypto/camellia/camellia.c
451
kll = GETU32(key );
sys/crypto/camellia/camellia.c
452
klr = GETU32(key + 4);
sys/crypto/camellia/camellia.c
453
krl = GETU32(key + 8);
sys/crypto/camellia/camellia.c
454
krr = GETU32(key + 12);
sys/crypto/camellia/camellia.c
660
kll = GETU32(key );
sys/crypto/camellia/camellia.c
661
klr = GETU32(key + 4);
sys/crypto/camellia/camellia.c
662
krl = GETU32(key + 8);
sys/crypto/camellia/camellia.c
663
krr = GETU32(key + 12);
sys/crypto/camellia/camellia.c
664
krll = GETU32(key + 16);
sys/crypto/camellia/camellia.c
665
krlr = GETU32(key + 20);
sys/crypto/camellia/camellia.c
666
krrl = GETU32(key + 24);
sys/crypto/camellia/camellia.c
667
krrr = GETU32(key + 28);
sys/crypto/rijndael/rijndael-alg-fst.c
1053
s0 = GETU32(ct ) ^ rk[0];
sys/crypto/rijndael/rijndael-alg-fst.c
1054
s1 = GETU32(ct + 4) ^ rk[1];
sys/crypto/rijndael/rijndael-alg-fst.c
1055
s2 = GETU32(ct + 8) ^ rk[2];
sys/crypto/rijndael/rijndael-alg-fst.c
1056
s3 = GETU32(ct + 12) ^ rk[3];
sys/crypto/rijndael/rijndael-alg-fst.c
740
rk[0] = GETU32(cipherKey );
sys/crypto/rijndael/rijndael-alg-fst.c
741
rk[1] = GETU32(cipherKey + 4);
sys/crypto/rijndael/rijndael-alg-fst.c
742
rk[2] = GETU32(cipherKey + 8);
sys/crypto/rijndael/rijndael-alg-fst.c
743
rk[3] = GETU32(cipherKey + 12);
sys/crypto/rijndael/rijndael-alg-fst.c
762
rk[4] = GETU32(cipherKey + 16);
sys/crypto/rijndael/rijndael-alg-fst.c
763
rk[5] = GETU32(cipherKey + 20);
sys/crypto/rijndael/rijndael-alg-fst.c
784
rk[6] = GETU32(cipherKey + 24);
sys/crypto/rijndael/rijndael-alg-fst.c
785
rk[7] = GETU32(cipherKey + 28);
sys/crypto/rijndael/rijndael-alg-fst.c
872
s0 = GETU32(pt ) ^ rk[0];
sys/crypto/rijndael/rijndael-alg-fst.c
873
s1 = GETU32(pt + 4) ^ rk[1];
sys/crypto/rijndael/rijndael-alg-fst.c
874
s2 = GETU32(pt + 8) ^ rk[2];
sys/crypto/rijndael/rijndael-alg-fst.c
875
s3 = GETU32(pt + 12) ^ rk[3];