Home | History | Annotate | Download | only in Support

Lines Matching refs:lx

317     uint64_t lx = x[i] & 0xffffffffULL;
324 dest[i] = carry + lx * ly;
332 carry += (lx * hy) & 0xffffffffULL;
335 (carry >> 32) + ((lx * hy) >> 32) + hx * hy;
348 uint64_t carry = 0, lx = 0, hx = 0;
350 lx = x[j] & 0xffffffffULL;
357 uint64_t resul = carry + lx * ly;
362 carry += (lx * hy) & 0xffffffffULL;
367 ((lx * hy) >> 32) + hx * hy;