HomeSort by relevance Sort by last modified time
    Searched refs:hasCarry (Results 1 - 6 of 6) sorted by null

  /external/llvm/lib/Support/
APInt.cpp 303 // hasCarry - A flag to indicate if there is a carry to the next digit.
304 // hasCarry == 0, no carry
305 // hasCarry == 1, has carry
306 // hasCarry == 2, no carry and the calculation result == 0.
307 uint8_t hasCarry = 0;
310 hasCarry = (dest[i] < carry) ? 1 : 0;
311 carry = hx * ly + (dest[i] >> 32) + (hasCarry ? (1ULL << 32) : 0);
314 hasCarry = (!carry && hasCarry) ? 1 : (!carry ? 2 : 0);
318 carry = (((!carry && hasCarry != 2) || hasCarry == 1) ? (1ULL << 32) : 0)
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Support/
APInt.cpp 300 // hasCarry - A flag to indicate if there is a carry to the next digit.
301 // hasCarry == 0, no carry
302 // hasCarry == 1, has carry
303 // hasCarry == 2, no carry and the calculation result == 0.
304 uint8_t hasCarry = 0;
307 hasCarry = (dest[i] < carry) ? 1 : 0;
308 carry = hx * ly + (dest[i] >> 32) + (hasCarry ? (1ULL << 32) : 0);
311 hasCarry = (!carry && hasCarry) ? 1 : (!carry ? 2 : 0);
315 carry = (((!carry && hasCarry != 2) || hasCarry == 1) ? (1ULL << 32) : 0)
    [all...]
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
APInt.cpp 319 // hasCarry - A flag to indicate if there is a carry to the next digit.
320 // hasCarry == 0, no carry
321 // hasCarry == 1, has carry
322 // hasCarry == 2, no carry and the calculation result == 0.
323 uint8_t hasCarry = 0;
326 hasCarry = (dest[i] < carry) ? 1 : 0;
327 carry = hx * ly + (dest[i] >> 32) + (hasCarry ? (1ULL << 32) : 0);
330 hasCarry = (!carry && hasCarry) ? 1 : (!carry ? 2 : 0);
334 carry = (((!carry && hasCarry != 2) || hasCarry == 1) ? (1ULL << 32) : 0)
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeIntegerTypes.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
LegalizeIntegerTypes.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/
LegalizeIntegerTypes.cpp     [all...]

Completed in 957 milliseconds