Home | History | Annotate | Download | only in Support

Lines Matching refs:resul

339       uint64_t resul = carry + lx * ly;
340 hasCarry = (resul < carry) ? 1 : 0;
341 carry = (hasCarry ? (1ULL << 32) : 0) + hx * ly + (resul >> 32);
345 resul = (carry << 32) | (resul & 0xffffffffULL);
346 dest[i+j] += resul;
348 (carry >> 32) + (dest[i+j] < resul ? 1 : 0) +