Lines Matching refs:rotl
88 static ossl_inline uint32_t rotl(uint32_t a, uint8_t n)
121 return t ^ rotl(t, 2) ^ rotl(t, 10) ^ rotl(t, 18) ^ rotl(t, 24);
127 rotl(SM4_SBOX_T[(uint8_t)(X >> 16)], 24) ^
128 rotl(SM4_SBOX_T[(uint8_t)(X >> 8)], 16) ^
129 rotl(SM4_SBOX_T[(uint8_t)X], 8);
171 t = t ^ rotl(t, 13) ^ rotl(t, 23);