Lines Matching defs:th
82 mp_limb_t z, z2l, z2h, tl, th;
90 umul_ppmm (th, tl, z2l, d);
91 z = (z << 17) - (th << 1);
97 th = z2l * (d >> 32); /* th < 2^64 */
98 z = (z << 17) - (th >> 31); /* z < 2^32 */
101 umul_ppmm (th, tl, z2l, d);
102 z = (z << 33) - (th << 1);
106 umul_ppmm (th, tl, z2h, d);
109 th += tl < xh;
110 th = (th << 2) | (tl >> GMP_LIMB_BITS - 2);
112 sub_ddmmss (zh, zl, z << 2, 0, th, tl);