Searched refs:hasCarry (Results 1 – 6 of 6) sorted by relevance
304 uint8_t hasCarry = 0; in mul_1() local307 hasCarry = (dest[i] < carry) ? 1 : 0; in mul_1()308 carry = hx * ly + (dest[i] >> 32) + (hasCarry ? (1ULL << 32) : 0); in mul_1()311 hasCarry = (!carry && hasCarry) ? 1 : (!carry ? 2 : 0); in mul_1()315 carry = (((!carry && hasCarry != 2) || hasCarry == 1) ? (1ULL << 32) : 0) + in mul_1()337 uint8_t hasCarry = 0; in mul() local339 hasCarry = (resul < carry) ? 1 : 0; in mul()340 carry = (hasCarry ? (1ULL << 32) : 0) + hx * ly + (resul >> 32); in mul()341 hasCarry = (!carry && hasCarry) ? 1 : (!carry ? 2 : 0); in mul()346 carry = (((!carry && hasCarry != 2) || hasCarry == 1) ? (1ULL << 32) : 0)+ in mul()
307 uint8_t hasCarry = 0; in mul_1() local310 hasCarry = (dest[i] < carry) ? 1 : 0; in mul_1()311 carry = hx * ly + (dest[i] >> 32) + (hasCarry ? (1ULL << 32) : 0); in mul_1()314 hasCarry = (!carry && hasCarry) ? 1 : (!carry ? 2 : 0); in mul_1()318 carry = (((!carry && hasCarry != 2) || hasCarry == 1) ? (1ULL << 32) : 0) + in mul_1()340 uint8_t hasCarry = 0; in mul() local342 hasCarry = (resul < carry) ? 1 : 0; in mul()343 carry = (hasCarry ? (1ULL << 32) : 0) + hx * ly + (resul >> 32); in mul()344 hasCarry = (!carry && hasCarry) ? 1 : (!carry ? 2 : 0); in mul()349 carry = (((!carry && hasCarry != 2) || hasCarry == 1) ? (1ULL << 32) : 0)+ in mul()
323 uint8_t hasCarry = 0; in mul_1() local326 hasCarry = (dest[i] < carry) ? 1 : 0; in mul_1()327 carry = hx * ly + (dest[i] >> 32) + (hasCarry ? (1ULL << 32) : 0); in mul_1()330 hasCarry = (!carry && hasCarry) ? 1 : (!carry ? 2 : 0); in mul_1()334 carry = (((!carry && hasCarry != 2) || hasCarry == 1) ? (1ULL << 32) : 0) + in mul_1()356 uint8_t hasCarry = 0; in mul() local358 hasCarry = (resul < carry) ? 1 : 0; in mul()359 carry = (hasCarry ? (1ULL << 32) : 0) + hx * ly + (resul >> 32); in mul()360 hasCarry = (!carry && hasCarry) ? 1 : (!carry ? 2 : 0); in mul()365 carry = (((!carry && hasCarry != 2) || hasCarry == 1) ? (1ULL << 32) : 0)+ in mul()
1517 bool hasCarry = in ExpandIntRes_ADDSUB() local1522 if (hasCarry) { in ExpandIntRes_ADDSUB()
1741 bool hasCarry = in ExpandIntRes_ADDSUB() local1746 if (hasCarry) { in ExpandIntRes_ADDSUB()
1833 bool hasCarry = in ExpandIntRes_ADDSUB() local1838 if (hasCarry) { in ExpandIntRes_ADDSUB()