Lines Matching refs:ly
292 // Split y into high 32-bit part (hy) and low 32-bit part (ly)
293 uint64_t ly = y & 0xffffffffULL, hy = y >> 32;
306 dest[i] = carry + lx * ly;
309 carry = hx * ly + (dest[i] >> 32) + (hasCarry ? (1ULL << 32) : 0);
329 uint64_t ly = y[i] & 0xffffffffULL, hy = y[i] >> 32;
339 uint64_t resul = carry + lx * ly;
341 carry = (hasCarry ? (1ULL << 32) : 0) + hx * ly + (resul >> 32);