Searched refs:resul (Results 1 – 1 of 1) sorted by relevance
339 uint64_t resul = carry + lx * ly; in mul() local340 hasCarry = (resul < carry) ? 1 : 0; in mul()341 carry = (hasCarry ? (1ULL << 32) : 0) + hx * ly + (resul >> 32); in mul()345 resul = (carry << 32) | (resul & 0xffffffffULL); in mul()346 dest[i+j] += resul; in mul()348 (carry >> 32) + (dest[i+j] < resul ? 1 : 0) + in mul()