Home
last modified time | relevance | path

Searched refs:hasCarry (Results 1 – 2 of 2) sorted by relevance

/freebsd-9-stable/contrib/llvm/lib/Support/
DAPInt.cpp305 uint8_t hasCarry = 0; in mul_1() local
308 hasCarry = (dest[i] < carry) ? 1 : 0; in mul_1()
309 carry = hx * ly + (dest[i] >> 32) + (hasCarry ? (1ULL << 32) : 0); in mul_1()
312 hasCarry = (!carry && hasCarry) ? 1 : (!carry ? 2 : 0); in mul_1()
316 carry = (((!carry && hasCarry != 2) || hasCarry == 1) ? (1ULL << 32) : 0) + in mul_1()
338 uint8_t hasCarry = 0; in mul() local
340 hasCarry = (resul < carry) ? 1 : 0; in mul()
341 carry = (hasCarry ? (1ULL << 32) : 0) + hx * ly + (resul >> 32); in mul()
342 hasCarry = (!carry && hasCarry) ? 1 : (!carry ? 2 : 0); in mul()
347 carry = (((!carry && hasCarry != 2) || hasCarry == 1) ? (1ULL << 32) : 0)+ in mul()
/freebsd-9-stable/contrib/llvm/lib/CodeGen/SelectionDAG/
DLegalizeIntegerTypes.cpp1542 bool hasCarry = in ExpandIntRes_ADDSUB() local
1547 if (hasCarry) { in ExpandIntRes_ADDSUB()