Searched refs:prod_low (Results 1 – 3 of 3) sorted by relevance
/stdlib/ |
A D | submul_1.c | 34 register mp_limb_t prod_high, prod_low; in mpn_submul_1() local 48 umul_ppmm (prod_high, prod_low, s1_ptr[j], s2_limb); in mpn_submul_1() 50 prod_low += cy_limb; in mpn_submul_1() 51 cy_limb = (prod_low < cy_limb) + prod_high; in mpn_submul_1() 54 prod_low = x - prod_low; in mpn_submul_1() 55 cy_limb += (prod_low > x); in mpn_submul_1() 56 res_ptr[j] = prod_low; in mpn_submul_1()
|
A D | addmul_1.c | 34 register mp_limb_t prod_high, prod_low; in mpn_addmul_1() local 48 umul_ppmm (prod_high, prod_low, s1_ptr[j], s2_limb); in mpn_addmul_1() 50 prod_low += cy_limb; in mpn_addmul_1() 51 cy_limb = (prod_low < cy_limb) + prod_high; in mpn_addmul_1() 54 prod_low = x + prod_low; in mpn_addmul_1() 55 cy_limb += (prod_low < x); in mpn_addmul_1() 56 res_ptr[j] = prod_low; in mpn_addmul_1()
|
A D | mul_1.c | 32 register mp_limb_t prod_high, prod_low; in mpn_mul_1() local 45 umul_ppmm (prod_high, prod_low, s1_ptr[j], s2_limb); in mpn_mul_1() 47 prod_low += cy_limb; in mpn_mul_1() 48 cy_limb = (prod_low < cy_limb) + prod_high; in mpn_mul_1() 50 res_ptr[j] = prod_low; in mpn_mul_1()
|
Completed in 6 milliseconds