Home | History | Annotate | Download | only in Support

Lines Matching defs:hy

291   // Split y into high 32-bit part (hy)  and low 32-bit part (ly)
292 uint64_t ly = y & 0xffffffffULL, hy = y >> 32;
313 carry += (lx * hy) & 0xffffffffULL;
316 (carry >> 32) + ((lx * hy) >> 32) + hx * hy;
328 uint64_t ly = y[i] & 0xffffffffULL, hy = y[i] >> 32;
343 carry += (lx * hy) & 0xffffffffULL;
348 ((lx * hy) >> 32) + hx * hy;