/openbmc/u-boot/lib/libavb/ |
H A D | avb_sha256.c | 14 #define ROTR(x, n) ((x >> n) | (x << ((sizeof(x) << 3) - n))) macro 19 #define SHA256_F1(x) (ROTR(x, 2) ^ ROTR(x, 13) ^ ROTR(x, 22)) 20 #define SHA256_F2(x) (ROTR(x, 6) ^ ROTR(x, 11) ^ ROTR(x, 25)) 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))
|
H A D | avb_sha512.c | 14 #define ROTR(x, n) ((x >> n) | (x << ((sizeof(x) << 3) - n))) macro 19 #define SHA512_F1(x) (ROTR(x, 28) ^ ROTR(x, 34) ^ ROTR(x, 39)) 20 #define SHA512_F2(x) (ROTR(x, 14) ^ ROTR(x, 18) ^ ROTR(x, 41)) 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))
|
/openbmc/u-boot/lib/ |
H A D | sha256.c | 82 #define ROTR(x,n) (SHR(x,n) | (x << (32 - n))) in sha256_process() macro 84 #define S0(x) (ROTR(x, 7) ^ ROTR(x,18) ^ SHR(x, 3)) in sha256_process() 85 #define S1(x) (ROTR(x,17) ^ ROTR(x,19) ^ SHR(x,10)) in sha256_process() 87 #define S2(x) (ROTR(x, 2) ^ ROTR(x,13) ^ ROTR(x,22)) in sha256_process() 88 #define S3(x) (ROTR(x, 6) ^ ROTR(x,11) ^ ROTR(x,25)) in sha256_process()
|
/openbmc/linux/arch/mips/crypto/ |
H A D | chacha-core.S | 59 #define ROTR(n) rotr n, 24 macro 68 #define ROTR(n) macro 376 ROTR(SAVED_X)
|
/openbmc/linux/Documentation/translations/zh_CN/arch/loongarch/ |
H A D | introduction.rst | 215 SLL.W SRL.W SRA.W ROTR.W SLLI.W SRLI.W SRAI.W ROTRI.W 216 SLL.D SRL.D SRA.D ROTR.D SLLI.D SRLI.D SRAI.D ROTRI.D
|
/openbmc/qemu/target/rx/ |
H A D | insns.decode | 501 # ROTR #imm, rd 503 # ROTR #imm, rd
|
H A D | translate.c | 1448 enum {ROTR = 0, ROTL = 1}; enumerator 1461 case ROTR: in rx_rot() 1491 rx_rot(ROT_IMM, ROTR, a->rd, a->imm); in trans_ROTR_ir() 1498 rx_rot(ROT_REG, ROTR, a->rd, a->rs); in trans_ROTR_rr()
|
/openbmc/linux/Documentation/arch/loongarch/ |
H A D | introduction.rst | 248 SLL.W SRL.W SRA.W ROTR.W SLLI.W SRLI.W SRAI.W ROTRI.W 249 SLL.D SRL.D SRA.D ROTR.D SLLI.D SRLI.D SRAI.D ROTRI.D
|
/openbmc/qemu/target/mips/tcg/ |
H A D | micromips_translate.c.inc | 158 ROTR = 0x3, 1652 case ROTR:
|
/openbmc/qemu/disas/ |
H A D | nanomips.c | 12196 static char *ROTR(uint64 instruction, Dis_info *info) in ROTR() function 18699 0xfc00f1e0, 0x8000c0c0, &ROTR , 0,
|