HomeSort by relevance Sort by last modified time
    Searched defs:Carry (Results 1 - 18 of 18) sorted by null

  /external/swiftshader/third_party/subzero/src/
IceMangling.cpp 82 bool Carry = true;
86 if (Carry) {
87 Carry = false;
94 Carry = true;
  /device/linaro/bootloader/edk2/OptionRomPkg/Bus/Usb/UsbNetworking/Ax88772b/
Ax88772.c 36 INT32 Carry;
54 Carry = (( Crc >> 31 ) & 1 ) ^ ( Data & 1 );
56 if ( 0 != Carry ) {
  /device/linaro/bootloader/edk2/OptionRomPkg/Bus/Usb/UsbNetworking/Ax88772/
Ax88772.c 36 INT32 Carry;
58 Carry = (( Crc >> 31 ) & 1 ) ^ ( Data & 1 );
60 if ( 0 != Carry ) {
    [all...]
  /external/llvm/lib/Target/Mips/
Mips16ISelDAGToDAG.cpp 220 SDNode *Carry = CurDAG->getMachineNode(Sltu_op, DL, VT, Ops);
223 CurDAG->getMachineNode(Addu_op, DL, VT, SDValue(Carry, 0), RHS);
MipsSEISelDAGToDAG.cpp 259 SDNode *Carry = CurDAG->getMachineNode(SLTuOp, DL, VT, Ops);
265 Carry = CurDAG->getMachineNode(Mips::SUBREG_TO_REG, DL, VT,
267 SDValue(Carry, 0),
274 SDNode *AddCarry = Carry;
277 AddCarry = CurDAG->getMachineNode(ADDuOp, DL, VT, SDValue(Carry, 0), RHS);
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/Mips/
MipsISelDAGToDAG.cpp 232 SDNode *Carry = CurDAG->getMachineNode(Mips::SLTu, dl, VT, Ops, 2);
234 SDValue(Carry,0), RHS);
  /external/llvm/lib/Transforms/Utils/
IntegerDivision.cpp 288 // ; %carry_1 = phi i32 [ 0, %preheader ], [ %carry, %do-while ]
299 // ; %carry = and i32 %tmp10, 1
317 Value *Carry = Builder.CreateAnd(Tmp10, One);
325 // ; %carry_2 = phi i32 [ 0, %bb1 ], [ %carry, %do-while ]
344 // ; %carry_1 = phi i32 [ 0, %preheader ], [ %carry, %do-while ]
346 Carry_1->addIncoming(Carry, DoWhile);
356 // ; %carry_2 = phi i32 [ 0, %bb1 ], [ %carry, %do-while ]
358 Carry_2->addIncoming(Carry, DoWhile);
  /external/llvm/lib/Support/
APInt.cpp 182 /// 1 is returned if there is a carry out, otherwise 0 is returned.
183 /// @returns the carry of the addition.
188 y = 1; // Carry one to next digit.
190 y = 0; // No need to carry so exit early
237 /// @returns the carry out from the addition
241 bool carry = false; local
244 dest[i] = x[i] + y[i] + carry;
245 carry = dest[i] < limit || (carry && dest[i] == limit);
247 return carry;
296 uint64_t carry = 0; local
332 uint64_t carry = 0, lx = 0, hx = 0; local
1235 uint64_t carry = 0; local
    [all...]
  /external/llvm/lib/Target/Lanai/
LanaiISelLowering.cpp     [all...]
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
APInt.cpp 182 /// 1 is returned if there is a carry out, otherwise 0 is returned.
183 /// @returns the carry of the addition.
188 y = 1; // Carry one to next digit.
190 y = 0; // No need to carry so exit early
237 /// @returns the carry out from the addition
241 bool carry = false; local
244 dest[i] = x[i] + y[i] + carry;
245 carry = dest[i] < limit || (carry && dest[i] == limit);
247 return carry;
312 uint64_t carry = 0; local
348 uint64_t carry = 0, lx = 0, hx = 0; local
1209 uint64_t carry = 0; local
    [all...]
  /external/llvm/lib/Target/ARM/
ARMFrameLowering.cpp     [all...]
ARMISelLowering.cpp     [all...]
  /external/llvm/lib/Target/XCore/
XCoreISelLowering.cpp 750 SDValue Carry(Lo.getNode(), 1);
753 LHSH, RHSH, Carry);
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/XCore/
XCoreISelLowering.cpp 733 SDValue Carry = DAG.getNode(Opcode, dl, DAG.getVTList(MVT::i32, MVT::i32),
735 SDValue Lo(Carry.getNode(), 1);
738 LHSH, RHSH, Carry);
    [all...]
  /external/llvm/lib/Target/Sparc/
SparcISelLowering.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeIntegerTypes.cpp     [all...]
DAGCombiner.cpp     [all...]
  /external/clang/lib/CodeGen/
CGBuiltin.cpp 318 /// \arg Carry The carry returned by the llvm.*.with.overflow.*.
323 llvm::Value *&Carry) {
331 Carry = CGF.Builder.CreateExtractValue(Tmp, 1);
    [all...]

Completed in 1542 milliseconds