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

/linux-4.1.27/lib/mpi/
H A Dgeneric_mpih-mul2.c38 mpi_limb_t prod_high, prod_low; mpihelp_addmul_1() local
49 umul_ppmm(prod_high, prod_low, s1_ptr[j], s2_limb); mpihelp_addmul_1()
51 prod_low += cy_limb; mpihelp_addmul_1()
52 cy_limb = (prod_low < cy_limb ? 1 : 0) + prod_high; mpihelp_addmul_1()
55 prod_low = x + prod_low; mpihelp_addmul_1()
56 cy_limb += prod_low < x ? 1 : 0; mpihelp_addmul_1()
57 res_ptr[j] = prod_low; mpihelp_addmul_1()
H A Dgeneric_mpih-mul3.c38 mpi_limb_t prod_high, prod_low; mpihelp_submul_1() local
49 umul_ppmm(prod_high, prod_low, s1_ptr[j], s2_limb); mpihelp_submul_1()
51 prod_low += cy_limb; mpihelp_submul_1()
52 cy_limb = (prod_low < cy_limb ? 1 : 0) + prod_high; mpihelp_submul_1()
55 prod_low = x - prod_low; mpihelp_submul_1()
56 cy_limb += prod_low > x ? 1 : 0; mpihelp_submul_1()
57 res_ptr[j] = prod_low; mpihelp_submul_1()
H A Dgeneric_mpih-mul1.c38 mpi_limb_t prod_high, prod_low; mpihelp_mul_1() local
50 umul_ppmm(prod_high, prod_low, s1_ptr[j], s2_limb); mpihelp_mul_1()
51 prod_low += cy_limb; mpihelp_mul_1()
52 cy_limb = (prod_low < cy_limb ? 1 : 0) + prod_high; mpihelp_mul_1()
53 res_ptr[j] = prod_low; mpihelp_mul_1()

Completed in 37 milliseconds