Lines Matching refs:n0

219     n0: N0,  field
266 let n0 = { in from_boxed_limbs() localVariable
287 n0: n0.clone(), in from_boxed_limbs()
297 n0, in from_boxed_limbs()
346 n0: self.n0.clone(), in as_partial()
354 n0: N0, field
414 limbs_mont_mul(&mut limbs, &one, &m.limbs, &m.n0); in decode_once()
476 limbs_mont_mul(&mut b.limbs, &a.limbs, &m.limbs, &m.n0); in elem_mul_()
523 limbs_from_mont_in_place(&mut r.limbs, tmp, &m.limbs, &m.n0); in elem_reduced()
534 limbs_mont_square(&mut a.limbs, &m.limbs, &m.n0); in elem_squared()
876 limbs_mont_product(dst, src1, src2, &m.limbs, &m.n0); in elem_exp_consttime()
979 fn gather_square(table: &[Limb], state: &mut [Limb], n0: &N0, i: Window, num_limbs: usize) { in elem_exp_consttime()
984 limbs_mont_square(acc, m, n0); in elem_exp_consttime()
987 fn gather_mul_base(table: &[Limb], state: &mut [Limb], n0: &N0, i: Window, num_limbs: usize) { in elem_exp_consttime()
994 n0: &N0, in elem_exp_consttime()
1005 n0, in elem_exp_consttime()
1012 fn power(table: &[Limb], state: &mut [Limb], n0: &N0, i: Window, num_limbs: usize) { in elem_exp_consttime()
1019 n0: &N0, in elem_exp_consttime()
1030 n0, in elem_exp_consttime()
1041 limbs_mont_mul(acc, &m.oneRR.0.limbs, &m.limbs, &m.n0); in elem_exp_consttime()
1052 gather_square(table, state, &m.n0, i / 2, num_limbs); in elem_exp_consttime()
1054 gather_mul_base(table, state, &m.n0, i - 1, num_limbs) in elem_exp_consttime()
1066 power(table, state, &m.n0, window, num_limbs); in elem_exp_consttime()
1077 n0: &N0, in elem_exp_consttime()
1087 &m.n0, in elem_exp_consttime()
1192 fn from(n0: u64) -> Self { in from()
1195 Self([n0, 0]) in from()
1200 Self([n0 as Limb, (n0 >> LIMB_BITS) as Limb]) in from()
1206 fn limbs_mont_mul(r: &mut [Limb], a: &[Limb], m: &[Limb], n0: &N0) { in limbs_mont_mul()
1222 n0, in limbs_mont_mul()
1237 limbs_from_mont_in_place(r, tmp, m, n0); in limbs_mont_mul()
1241 fn limbs_from_mont_in_place(r: &mut [Limb], tmp: &mut [Limb], m: &[Limb], n0: &N0) { in limbs_from_mont_in_place()
1250 n0: &N0, in limbs_from_mont_in_place()
1261 &n0, in limbs_from_mont_in_place()
1293 fn limbs_mont_product(r: &mut [Limb], a: &[Limb], b: &[Limb], m: &[Limb], n0: &N0) { in limbs_mont_product()
1310 n0, in limbs_mont_product()
1325 limbs_from_mont_in_place(r, tmp, m, n0) in limbs_mont_product()
1330 fn limbs_mont_square(r: &mut [Limb], m: &[Limb], n0: &N0) { in limbs_mont_square()
1344 n0, in limbs_mont_square()
1359 limbs_from_mont_in_place(r, tmp, m, n0) in limbs_mont_square()
1376 n0: &N0, in GFp_bn_mul_mont()