Home
last modified time | relevance | path

Searched refs:MUL (Results 1 – 2 of 2) sorted by relevance

/optee_os-3.20.0/core/lib/libtomcrypt/src/ciphers/
A Didea.c40 #define MUL(a,b) { \ macro
58 MUL(y, LOW16(y)); in s_mul_inv()
59 MUL(y, x); in s_mul_inv()
112 MUL(x0, m_key[i*6+0]); in s_process_block()
115 MUL(x3, m_key[i*6+3]); in s_process_block()
117 MUL(t0, m_key[i*6+4]); in s_process_block()
119 MUL(t1, m_key[i*6+5]); in s_process_block()
128 MUL(x0, m_key[LTC_IDEA_ROUNDS*6+0]); in s_process_block()
131 MUL(x3, m_key[LTC_IDEA_ROUNDS*6+3]); in s_process_block()
/optee_os-3.20.0/lib/libmbedtls/mbedtls/library/
A Daes.c372 #define MUL(x,y) ( ( (x) && (y) ) ? pow[(log[(x)]+log[(y)]) % 255] : 0 ) macro
443 RT0[i] = ( (uint32_t) MUL( 0x0E, x ) ) ^ in aes_gen_tables()
444 ( (uint32_t) MUL( 0x09, x ) << 8 ) ^ in aes_gen_tables()
445 ( (uint32_t) MUL( 0x0D, x ) << 16 ) ^ in aes_gen_tables()
446 ( (uint32_t) MUL( 0x0B, x ) << 24 ); in aes_gen_tables()

Completed in 6 milliseconds