Home
last modified time | relevance | path

Searched refs:prod_low (Results 1 – 3 of 3) sorted by relevance

/stdlib/
A Dsubmul_1.c34 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 Daddmul_1.c34 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 Dmul_1.c32 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