Searched refs:t1 (Results 1 – 4 of 4) sorted by relevance
/mcuboot-latest/ext/fiat/src/ |
D | curve25519.c | 242 fe t1; in fe_loose_invert() local 248 fe_sq_tt(&t1, &t0); in fe_loose_invert() 250 fe_sq_tt(&t1, &t1); in fe_loose_invert() 252 fe_mul_tlt(&t1, z, &t1); in fe_loose_invert() 253 fe_mul_ttt(&t0, &t0, &t1); in fe_loose_invert() 255 fe_mul_ttt(&t1, &t1, &t2); in fe_loose_invert() 256 fe_sq_tt(&t2, &t1); in fe_loose_invert() 260 fe_mul_ttt(&t1, &t2, &t1); in fe_loose_invert() 261 fe_sq_tt(&t2, &t1); in fe_loose_invert() 265 fe_mul_ttt(&t2, &t2, &t1); in fe_loose_invert() [all …]
|
/mcuboot-latest/ext/tinycrypt/lib/source/ |
D | sha256.c | 185 unsigned int t1, t2; in compress() local 195 t1 = work_space[i] = n; in compress() 196 t1 += h + Sigma1(e) + Ch(e, f, g) + k256[i]; in compress() 198 h = g; g = f; f = e; e = d + t1; in compress() 199 d = c; c = b; b = a; a = t1 + t2; in compress() 208 t1 = work_space[i&0xf] += s0 + s1 + work_space[(i+9)&0xf]; in compress() 209 t1 += h + Sigma1(e) + Ch(e, f, g) + k256[i]; in compress() 211 h = g; g = f; f = e; e = d + t1; in compress() 212 d = c; c = b; b = a; a = t1 + t2; in compress()
|
D | ecc.c | 630 uECC_word_t t1[NUM_ECC_WORDS]; in apply_z() local 632 uECC_vli_modSquare_fast(t1, Z, curve); /* z^2 */ in apply_z() 633 uECC_vli_modMult_fast(X1, X1, t1, curve); /* x1 * z^2 */ in apply_z() 634 uECC_vli_modMult_fast(t1, t1, Z, curve); /* z^3 */ in apply_z() 635 uECC_vli_modMult_fast(Y1, Y1, t1, curve); /* y1 * z^3 */ in apply_z()
|
/mcuboot-latest/ext/tinycrypt-sha512/lib/source/ |
D | sha512.c | 202 uint64_t t1, t2; in compress() local 212 t1 = work_space[i] = n; in compress() 213 t1 += h + Sigma1(e) + Ch(e, f, g) + k512[i]; in compress() 215 h = g; g = f; f = e; e = d + t1; in compress() 216 d = c; c = b; b = a; a = t1 + t2; in compress() 225 t1 = work_space[i&0xf] += s0 + s1 + work_space[(i+9)&0xf]; in compress() 226 t1 += h + Sigma1(e) + Ch(e, f, g) + k512[i]; in compress() 228 h = g; g = f; f = e; e = d + t1; in compress() 229 d = c; c = b; b = a; a = t1 + t2; in compress()
|