Home
last modified time | relevance | path

Searched refs:ROTL8 (Results 1 - 1 of 1) sorted by relevance

/third_party/mbedtls/library/
H A Daes.c369 #define ROTL8(x) (((x) << 8) & 0xFFFFFFFF) | ((x) >> 24) macro
436 FT1[i] = ROTL8(FT0[i]); in aes_gen_tables()
437 FT2[i] = ROTL8(FT1[i]); in aes_gen_tables()
438 FT3[i] = ROTL8(FT2[i]); in aes_gen_tables()
450 RT1[i] = ROTL8(RT0[i]); in aes_gen_tables()
451 RT2[i] = ROTL8(RT1[i]); in aes_gen_tables()
452 RT3[i] = ROTL8(RT2[i]); in aes_gen_tables()
458 #undef ROTL8 macro
464 #define ROTL8(x) ((uint32_t) ((x) << 8) + (uint32_t) ((x) >> 24)) macro
469 #define AES_RT1(idx) ROTL8(RT
[all...]

Completed in 2 milliseconds