Lines Matching full:t2
34 uint32_t *t1, *t2, *base; in br_i31_modpow_opt() local
46 t2 = tmp + mwlen; in br_i31_modpow_opt()
70 * then t2 is set to x; otherwise, t2[0] is left untouched, and in br_i31_modpow_opt()
71 * t2[k] is set to x^k (for k >= 1). in br_i31_modpow_opt()
74 memcpy(t2, x, mlen); in br_i31_modpow_opt()
76 memcpy(t2 + mwlen, x, mlen); in br_i31_modpow_opt()
77 base = t2 + mwlen; in br_i31_modpow_opt()
128 * Window lookup: we want to set t2 to the window in br_i31_modpow_opt()
130 * the window length is 1 bit only, then t2 is in br_i31_modpow_opt()
134 br_i31_zero(t2, m[0]); in br_i31_modpow_opt()
135 base = t2 + mwlen; in br_i31_modpow_opt()
141 t2[v] |= mask & base[v]; in br_i31_modpow_opt()
151 br_i31_montymul(t1, x, t2, m, m0i); in br_i31_modpow_opt()