Searched refs:elem_sub (Results 1 – 7 of 7) sorted by relevance
/external/rust/crates/ring/crypto/fipsmodule/ec/ |
D | ecp_nistz384.inl | 56 elem_sub(Zsqr, in_x, Zsqr); 69 elem_sub(res_x, res_x, tmp0); 70 elem_sub(S, S, res_x); 73 elem_sub(res_y, S, res_y); 111 elem_sub(R, S2, S1); /* R = S2 - S1 */ 115 elem_sub(H, U2, U1); /* H = U2 - U1 */ 138 elem_sub(res_x, Rsqr, Hsqr); 139 elem_sub(res_x, res_x, Hcub); 141 elem_sub(res_y, U2, res_x); 145 elem_sub(res_y, res_y, S2);
|
D | ecp_nistz256.c | 103 static inline void elem_sub(Limb r[P256_LIMBS], const Limb a[P256_LIMBS], in elem_sub() function 142 elem_sub(R, S2, S1); /* R = S2 - S1 */ in GFp_nistz256_point_add() 146 elem_sub(H, U2, U1); /* H = U2 - U1 */ in GFp_nistz256_point_add() 169 elem_sub(res_x, Rsqr, Hsqr); in GFp_nistz256_point_add() 170 elem_sub(res_x, res_x, Hcub); in GFp_nistz256_point_add() 172 elem_sub(res_y, U2, res_x); in GFp_nistz256_point_add() 176 elem_sub(res_y, res_y, S2); in GFp_nistz256_point_add()
|
D | gfp_p384.c | 86 static inline void elem_sub(Elem r, const Elem a, const Elem b) { in elem_sub() function 186 elem_sub(r, a, b); in GFp_p384_elem_sub()
|
/external/libxml2/fuzz/ |
D | html.dict | 78 elem_sub="<sub></sub>"
|
/external/rust/crates/ring/src/ec/suite_b/ |
D | ops.rs | 521 elem_sub: unsafe extern "C" fn(r: *mut Limb, a: *const Limb, b: *const Limb), in elem_sub_test() 533 elem_sub( in elem_sub_test() 543 elem_sub( in elem_sub_test()
|
/external/rust/crates/ring/src/rsa/ |
D | signing.rs | 570 let m_1_minus_m_2 = bigint::elem_sub(m_1, &m_2, p); in sign()
|
/external/rust/crates/ring/src/arithmetic/ |
D | bigint.rs | 575 pub fn elem_sub<M, E>(mut a: Elem<M, E>, b: &Elem<M, E>, m: &Modulus<M>) -> Elem<M, E> { in elem_sub() function 802 let p_minus_2 = elem_sub(p.zero(), &two, p); in for_flt()
|