Home
last modified time | relevance | path

Searched refs:s1 (Results 1 – 5 of 5) sorted by relevance

/mcuboot-3.7.0/ext/tinycrypt/lib/source/
Dsha256.c184 unsigned int s0, s1; in compress() local
205 s1 = work_space[(i+14)&0x0f]; in compress()
206 s1 = sigma1(s1); in compress()
208 t1 = work_space[i&0xf] += s0 + s1 + work_space[(i+9)&0xf]; in compress()
/mcuboot-3.7.0/ext/tinycrypt-sha512/lib/source/
Dsha512.c201 uint64_t s0, s1; in compress() local
222 s1 = work_space[(i+14)&0x0f]; in compress()
223 s1 = sigma1(s1); in compress()
225 t1 = work_space[i&0xf] += s0 + s1 + work_space[(i+9)&0xf]; in compress()
/mcuboot-3.7.0/boot/bootutil/src/
Dbootutil_misc.c67 fih_ret boot_fih_memequal(const void *s1, const void *s2, size_t n) in boot_fih_memequal() argument
69 return memcmp(s1, s2, n); in boot_fih_memequal()
72 fih_ret boot_fih_memequal(const void *s1, const void *s2, size_t n) in boot_fih_memequal() argument
75 uint8_t *s1_p = (uint8_t*) s1; in boot_fih_memequal()
Dbootutil_priv.h265 fih_ret boot_fih_memequal(const void *s1, const void *s2, size_t n);
/mcuboot-3.7.0/ext/fiat/src/
Dcurve25519.c721 int64_t s1 = 2097151 & (load_4(s + 2) >> 5); in x25519_sc_reduce() local
877 s1 += s13 * 666643; in x25519_sc_reduce()
886 s1 += s12 * 470296; in x25519_sc_reduce()
894 s1 += carry0; in x25519_sc_reduce()
912 carry1 = (s1 + (1 << 20)) >> 21; in x25519_sc_reduce()
914 s1 -= int64_lshift21(carry1); in x25519_sc_reduce()
932 s1 += s12 * 470296; in x25519_sc_reduce()
940 s1 += carry0; in x25519_sc_reduce()
942 carry1 = s1 >> 21; in x25519_sc_reduce()
944 s1 -= int64_lshift21(carry1); in x25519_sc_reduce()
[all …]