Home
last modified time | relevance | path

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

/tinycrypt-3.7.0/lib/source/
Dsha256.c185 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()
Decc.c630 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()