Searched refs:SHFR (Results 1 – 8 of 8) sorted by relevance
/external/vboot_reference/firmware/2lib/ |
D | 2sha256.c | 42 #define SHFR(x, n) (x >> n) macro 50 #define SHA256_F3(x) (ROTR(x, 7) ^ ROTR(x, 18) ^ SHFR(x, 3)) 51 #define SHA256_F4(x) (ROTR(x, 17) ^ ROTR(x, 19) ^ SHFR(x, 10))
|
D | 2sha512.c | 42 #define SHFR(x, n) (x >> n) macro 50 #define SHA512_F3(x) (ROTR(x, 1) ^ ROTR(x, 8) ^ SHFR(x, 7)) 51 #define SHA512_F4(x) (ROTR(x, 19) ^ ROTR(x, 61) ^ SHFR(x, 6))
|
/external/avb/libavb/ |
D | avb_sha256.c | 40 #define SHFR(x, n) (x >> n) macro 48 #define SHA256_F3(x) (ROTR(x, 7) ^ ROTR(x, 18) ^ SHFR(x, 3)) 49 #define SHA256_F4(x) (ROTR(x, 17) ^ ROTR(x, 19) ^ SHFR(x, 10))
|
D | avb_sha512.c | 40 #define SHFR(x, n) (x >> n) macro 48 #define SHA512_F3(x) (ROTR(x, 1) ^ ROTR(x, 8) ^ SHFR(x, 7)) 49 #define SHA512_F4(x) (ROTR(x, 19) ^ ROTR(x, 61) ^ SHFR(x, 6))
|
/external/u-boot/lib/libavb/ |
D | avb_sha512.c | 13 #define SHFR(x, n) (x >> n) macro 21 #define SHA512_F3(x) (ROTR(x, 1) ^ ROTR(x, 8) ^ SHFR(x, 7)) 22 #define SHA512_F4(x) (ROTR(x, 19) ^ ROTR(x, 61) ^ SHFR(x, 6))
|
D | avb_sha256.c | 13 #define SHFR(x, n) (x >> n) macro 21 #define SHA256_F3(x) (ROTR(x, 7) ^ ROTR(x, 18) ^ SHFR(x, 3)) 22 #define SHA256_F4(x) (ROTR(x, 17) ^ ROTR(x, 19) ^ SHFR(x, 10))
|
/external/vboot_reference/firmware/lib/cryptolib/ |
D | sha256.c | 43 #define SHFR(x, n) (x >> n) macro 51 #define SHA256_F3(x) (ROTR(x, 7) ^ ROTR(x, 18) ^ SHFR(x, 3)) 52 #define SHA256_F4(x) (ROTR(x, 17) ^ ROTR(x, 19) ^ SHFR(x, 10))
|
D | sha512.c | 43 #define SHFR(x, n) (x >> n) macro 51 #define SHA512_F3(x) (ROTR(x, 1) ^ ROTR(x, 8) ^ SHFR(x, 7)) 52 #define SHA512_F4(x) (ROTR(x, 19) ^ ROTR(x, 61) ^ SHFR(x, 6))
|