Home
last modified time | relevance | path

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

/external/llvm/lib/Support/
DAPInt.cpp302 uint8_t hasCarry = 0; in mul_1() local
305 hasCarry = (dest[i] < carry) ? 1 : 0; in mul_1()
306 carry = hx * ly + (dest[i] >> 32) + (hasCarry ? (1ULL << 32) : 0); in mul_1()
309 hasCarry = (!carry && hasCarry) ? 1 : (!carry ? 2 : 0); in mul_1()
313 carry = (((!carry && hasCarry != 2) || hasCarry == 1) ? (1ULL << 32) : 0) + in mul_1()
335 uint8_t hasCarry = 0; in mul() local
337 hasCarry = (resul < carry) ? 1 : 0; in mul()
338 carry = (hasCarry ? (1ULL << 32) : 0) + hx * ly + (resul >> 32); in mul()
339 hasCarry = (!carry && hasCarry) ? 1 : (!carry ? 2 : 0); in mul()
344 carry = (((!carry && hasCarry != 2) || hasCarry == 1) ? (1ULL << 32) : 0)+ in mul()
/external/llvm/lib/CodeGen/SelectionDAG/
DLegalizeIntegerTypes.cpp1458 bool hasCarry = in ExpandIntRes_ADDSUB() local
1463 if (hasCarry) { in ExpandIntRes_ADDSUB()