Searched refs:res_ptr (Results 1 – 7 of 7) sorted by relevance
/stdlib/ |
A D | submul_1.c | 29 mpn_submul_1 (register mp_ptr res_ptr, register mp_srcptr s1_ptr, in mpn_submul_1() argument 42 res_ptr -= j; in mpn_submul_1() 53 x = res_ptr[j]; in mpn_submul_1() 56 res_ptr[j] = prod_low; in mpn_submul_1()
|
A D | addmul_1.c | 29 mpn_addmul_1 (register mp_ptr res_ptr, register mp_srcptr s1_ptr, in mpn_addmul_1() argument 42 res_ptr -= j; in mpn_addmul_1() 53 x = res_ptr[j]; in mpn_addmul_1() 56 res_ptr[j] = prod_low; in mpn_addmul_1()
|
A D | mul_1.c | 27 mpn_mul_1 (register mp_ptr res_ptr, register mp_srcptr s1_ptr, in mpn_mul_1() argument 40 res_ptr -= j; in mpn_mul_1() 50 res_ptr[j] = prod_low; in mpn_mul_1()
|
A D | sub_n.c | 25 mpn_sub_n (mp_ptr res_ptr, mp_srcptr s1_ptr, mp_srcptr s2_ptr, mp_size_t size) in mpn_sub_n() argument 37 res_ptr -= j; in mpn_sub_n() 48 res_ptr[j] = y; in mpn_sub_n()
|
A D | add_n.c | 25 mpn_add_n (mp_ptr res_ptr, mp_srcptr s1_ptr, mp_srcptr s2_ptr, mp_size_t size) in mpn_add_n() argument 37 res_ptr -= j; in mpn_add_n() 48 res_ptr[j] = y; in mpn_add_n()
|
A D | dbl2mpn.c | 26 __mpn_extract_double (mp_ptr res_ptr, mp_size_t size, in __mpn_extract_double() argument
|
A D | gmp.h | 438 register mp_ptr res_ptr; in mpn_add_1() 448 *res_ptr++ = s2_limb; 454 *res_ptr++ = x; 463 if (res_ptr != s1_ptr) 467 res_ptr[i] = s1_ptr[i]; 481 register mp_ptr res_ptr; in mpn_add() 509 register mp_ptr res_ptr; in mpn_sub_1() 519 *res_ptr++ = s2_limb; 525 *res_ptr++ = x - 1; 534 if (res_ptr != s1_ptr) [all …]
|
Completed in 12 milliseconds