Home
last modified time | relevance | path

Searched refs:u (Results 1 – 10 of 10) sorted by relevance

/mcuboot-latest/ext/fiat/src/
Dcurve25519.c419 fe u; in x25519_ge_frombytes_vartime() local
430 fe_carry(&u, &v); in x25519_ge_frombytes_vartime()
437 fe_mul_ttt(&h->X, &h->X, &u); // x = uv^7 in x25519_ge_frombytes_vartime()
441 fe_mul_ttt(&h->X, &h->X, &u); // x = uv^3(uv^7)^((q-5)/8) in x25519_ge_frombytes_vartime()
445 fe_sub(&check, &vxx, &u); in x25519_ge_frombytes_vartime()
447 fe_add(&check, &vxx, &u); in x25519_ge_frombytes_vartime()
640 ge_p3 u; in ge_double_scalarmult_vartime() local
651 x25519_ge_p1p1_to_p3(&u, &t); in ge_double_scalarmult_vartime()
652 x25519_ge_p3_to_cached(&Ai[1], &u); in ge_double_scalarmult_vartime()
654 x25519_ge_p1p1_to_p3(&u, &t); in ge_double_scalarmult_vartime()
[all …]
/mcuboot-latest/boot/cypress/libs/retarget_io_pdl/
Dcy_retarget_io_pdl.c203 uint8_t frac_bits = 0u; in cy_retarget_io_pdl_setbaud()
214 result = (cy_rslt_t) Cy_SysClk_PeriphSetDivider(CY_SYSCLK_DIV_16_BIT, 0u, divider); in cy_retarget_io_pdl_setbaud()
219 result = Cy_SysClk_PeriphEnableDivider(CY_SYSCLK_DIV_16_BIT, 0u); in cy_retarget_io_pdl_setbaud()
/mcuboot-latest/boot/cypress/platforms/retarget_io_pdl/
Dcy_retarget_io_pdl.c203 uint8_t frac_bits = 0u; in cy_retarget_io_pdl_setbaud()
214 result = (cy_rslt_t) Cy_SysClk_PeriphSetDivider(CY_SYSCLK_DIV_16_BIT, 0u, divider); in cy_retarget_io_pdl_setbaud()
219 result = Cy_SysClk_PeriphEnableDivider(CY_SYSCLK_DIV_16_BIT, 0u); in cy_retarget_io_pdl_setbaud()
/mcuboot-latest/ext/tinycrypt/lib/source/
Decc.c412 uECC_word_t u[NUM_ECC_WORDS], v[NUM_ECC_WORDS]; in uECC_vli_modInv() local
422 uECC_vli_clear(u, num_words); in uECC_vli_modInv()
423 u[0] = 1; in uECC_vli_modInv()
428 vli_modInv_update(u, mod, num_words); in uECC_vli_modInv()
435 if (uECC_vli_cmp_unsafe(u, v, num_words) < 0) { in uECC_vli_modInv()
436 uECC_vli_add(u, u, mod, num_words); in uECC_vli_modInv()
438 uECC_vli_sub(u, u, v, num_words); in uECC_vli_modInv()
439 vli_modInv_update(u, mod, num_words); in uECC_vli_modInv()
443 if (uECC_vli_cmp_unsafe(v, u, num_words) < 0) { in uECC_vli_modInv()
446 uECC_vli_sub(v, v, u, num_words); in uECC_vli_modInv()
[all …]
/mcuboot-latest/
Droot-rsa-3072.pem24 fzCn0bbtOHOE3BztGP7eWRODN+2u/V9xk6v7y4R7NOLzE7+1/SupaYWW5uQo9Z1v
/mcuboot-latest/boot/cypress/platforms/PSOC_062_2M/CM0P/GCC_ARM/
Dcy8c6xxa_cm0plus.ld49 * EXTERN multiple times. This command has the same effect as the -u command-line
/mcuboot-latest/boot/cypress/BlinkyApp/linker/
DBlinkyApp_template.ld53 * EXTERN multiple times. This command has the same effect as the -u command-line
/mcuboot-latest/boot/cypress/MCUBootApp/
DMCUBootApp.ld49 * EXTERN multiple times. This command has the same effect as the -u command-line
/mcuboot-latest/boot/cypress/platforms/PSOC_062_2M/CM4/GCC_ARM/
Dcy8c6xxa_cm4_dual.ld52 * EXTERN multiple times. This command has the same effect as the -u command-line
/mcuboot-latest/sim/src/
Dimage.rs285 if deps.upgrades.iter().any(|u| *u == UpgradeInfo::Held) { in make_image()