Searched refs:hasCarry (Results 1 – 2 of 2) sorted by relevance
306 uint8_t hasCarry = 0; in mul_1() local309 hasCarry = (dest[i] < carry) ? 1 : 0; in mul_1()310 carry = hx * ly + (dest[i] >> 32) + (hasCarry ? (1ULL << 32) : 0); in mul_1()313 hasCarry = (!carry && hasCarry) ? 1 : (!carry ? 2 : 0); in mul_1()317 carry = (((!carry && hasCarry != 2) || hasCarry == 1) ? (1ULL << 32) : 0) + in mul_1()339 uint8_t hasCarry = 0; in mul() local341 hasCarry = (resul < carry) ? 1 : 0; in mul()342 carry = (hasCarry ? (1ULL << 32) : 0) + hx * ly + (resul >> 32); in mul()343 hasCarry = (!carry && hasCarry) ? 1 : (!carry ? 2 : 0); in mul()348 carry = (((!carry && hasCarry != 2) || hasCarry == 1) ? (1ULL << 32) : 0)+ in mul()
1623 bool hasCarry = in ExpandIntRes_ADDSUB() local1628 if (hasCarry) { in ExpandIntRes_ADDSUB()