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

/external/llvm/lib/Support/
H A DAPInt.cpp302 // hasCarry - A flag to indicate if there is a carry to the next digit.
303 // hasCarry == 0, no carry
304 // hasCarry == 1, has carry
305 // hasCarry == 2, no carry and the calculation result == 0.
306 uint8_t hasCarry = 0; local
309 hasCarry = (dest[i] < carry) ? 1 : 0;
310 carry = hx * ly + (dest[i] >> 32) + (hasCarry ? (1ULL << 32) : 0);
313 hasCarry = (!carry && hasCarry) ? 1 : (!carry ? 2 : 0);
317 carry = (((!carry && hasCarry !
339 uint8_t hasCarry = 0; local
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeIntegerTypes.cpp1591 bool hasCarry = local
1596 if (hasCarry) {

Completed in 280 milliseconds