Home
last modified time | relevance | path

Searched defs:a (Results 1 – 16 of 16) sorted by relevance

/mcuboot-3.7.0/ext/tinycrypt-sha512/lib/source/
Dsha512.c170 static inline uint64_t ROTR(uint64_t a, uint64_t n) in ROTR()
175 #define Sigma0(a)(ROTR((a), 28) ^ ROTR((a), 34) ^ ROTR((a), 39)) argument
176 #define Sigma1(a)(ROTR((a), 14) ^ ROTR((a), 18) ^ ROTR((a), 41)) argument
177 #define sigma0(a)(ROTR((a), 1) ^ ROTR((a), 8) ^ ((a) >> 7)) argument
178 #define sigma1(a)(ROTR((a), 19) ^ ROTR((a), 61) ^ ((a) >> 6)) argument
180 #define Ch(a, b, c)(((a) & (b)) ^ ((~(a)) & (c))) argument
181 #define Maj(a, b, c)(((a) & (b)) ^ ((a) & (c)) ^ ((b) & (c))) argument
200 uint64_t a, b, c, d, e, f, g, h; in compress() local
/mcuboot-3.7.0/ext/tinycrypt/lib/source/
Dsha256.c157 static inline unsigned int ROTR(unsigned int a, unsigned int n) in ROTR()
162 #define Sigma0(a)(ROTR((a), 2) ^ ROTR((a), 13) ^ ROTR((a), 22)) argument
163 #define Sigma1(a)(ROTR((a), 6) ^ ROTR((a), 11) ^ ROTR((a), 25)) argument
164 #define sigma0(a)(ROTR((a), 7) ^ ROTR((a), 18) ^ ((a) >> 3)) argument
165 #define sigma1(a)(ROTR((a), 17) ^ ROTR((a), 19) ^ ((a) >> 10)) argument
167 #define Ch(a, b, c)(((a) & (b)) ^ ((~(a)) & (c))) argument
168 #define Maj(a, b, c)(((a) & (b)) ^ ((a) & (c)) ^ ((b) & (c))) argument
183 unsigned int a, b, c, d, e, f, g, h; in compress() local
Daes_decrypt.c67 #define mult8(a)(_double_byte(_double_byte(_double_byte(a)))) argument
68 #define mult9(a)(mult8(a)^(a)) argument
69 #define multb(a)(mult8(a)^_double_byte(a)^(a)) argument
70 #define multd(a)(mult8(a)^_double_byte(_double_byte(a))^(a)) argument
71 #define multe(a)(mult8(a)^_double_byte(_double_byte(a))^_double_byte(a)) argument
Daes_encrypt.c62 static inline unsigned int rotword(unsigned int a) in rotword()
67 #define subbyte(a, o)(sbox[((a) >> (o))&0xff] << (o)) argument
68 #define subword(a)(subbyte(a, 24)|subbyte(a, 16)|subbyte(a, 8)|subbyte(a, 0)) argument
122 #define triple(a)(_double_byte(a)^(a)) argument
Dutils.c59 uint8_t _double_byte(uint8_t a) in _double_byte()
64 int _compare(const uint8_t *a, const uint8_t *b, size_t size) in _compare()
Decc_dsa.c187 static bitcount_t smax(bitcount_t a, bitcount_t b) in smax()
Decc.c245 static void muladd(uECC_word_t a, uECC_word_t b, uECC_word_t *r0, in muladd()
411 uECC_word_t a[NUM_ECC_WORDS], b[NUM_ECC_WORDS]; in uECC_vli_modInv() local
/mcuboot-3.7.0/ext/tinycrypt/tests/
Dtest_cbc_mode.c106 struct tc_aes_key_sched_struct a; in test_1_and_2() local
/mcuboot-3.7.0/scripts/
Dassemble.py32 def same_keys(a, b): argument
/mcuboot-3.7.0/ext/tinycrypt/lib/include/tinycrypt/
Decc.h154 #define BYTES_TO_WORDS_8(a, b, c, d, e, f, g, h) 0x##d##c##b##a, 0x##h##g##f##e argument
155 #define BYTES_TO_WORDS_4(a, b, c, d) 0x##d##c##b##a argument
/mcuboot-3.7.0/boot/bootutil/src/
Dencrypted.c48 static inline int bootutil_constant_time_compare(const uint8_t *a, const uint8_t *b, size_t size) in bootutil_constant_time_compare()
53 static int bootutil_constant_time_compare(const uint8_t *a, const uint8_t *b, size_t size) in bootutil_constant_time_compare()
Dbootutil_priv.h322 static inline bool boot_u32_safe_add(uint32_t *dest, uint32_t a, uint32_t b) in boot_u32_safe_add()
341 static inline bool boot_u16_safe_add(uint16_t *dest, uint16_t a, uint16_t b) in boot_u16_safe_add()
/mcuboot-3.7.0/ext/fiat/src/
Dcurve25519.c305 const uint8_t *a = in_a; in CRYPTO_memcmp() local
596 static void slide(signed char *r, const uint8_t *a) { in slide()
634 static void ge_double_scalarmult_vartime(ge_p2 *r, const uint8_t *a, in ge_double_scalarmult_vartime()
705 static inline int64_t int64_lshift21(int64_t a) { in int64_lshift21()
Dcurve25519.h155 static inline uint32_t value_barrier_u32(uint32_t a) { in value_barrier_u32()
/mcuboot-3.7.0/boot/zcbor/include/
Dzcbor_common.h66 #define MIN(a, b) (((a) < (b)) ? (a) : (b)) argument
70 #define MAX(a, b) (((a) < (b)) ? (b) : (a)) argument
/mcuboot-3.7.0/boot/espressif/port/
Desp_mcuboot.c27 # define MIN(a, b) (((a) < (b)) ? (a) : (b)) argument