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

/macosx-10.9.5/llvmCore-3425.0.33/lib/Support/
H A DAPInt.cpp301 // hasCarry - A flag to indicate if there is a carry to the next digit.
302 // hasCarry == 0, no carry
303 // hasCarry == 1, has carry
304 // hasCarry == 2, no carry and the calculation result == 0.
305 uint8_t hasCarry = 0; local
308 hasCarry = (dest[i] < carry) ? 1 : 0;
309 carry = hx * ly + (dest[i] >> 32) + (hasCarry ? (1ULL << 32) : 0);
312 hasCarry = (!carry && hasCarry) ? 1 : (!carry ? 2 : 0);
316 carry = (((!carry && hasCarry !
338 uint8_t hasCarry = 0; local
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/lib/CodeGen/SelectionDAG/
H A DLegalizeIntegerTypes.cpp1536 bool hasCarry = local
1541 if (hasCarry) {

Completed in 191 milliseconds