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

  /frameworks/av/media/libstagefright/codecs/amrnb/common/include/
basicop_malloc.h 87 extern Flag Carry;
  /external/llvm/lib/Target/Mips/
Mips16ISelDAGToDAG.cpp 270 SDNode *Carry = CurDAG->getMachineNode(Sltu_op, DL, VT, Ops, 2);
273 SDValue(Carry,0), RHS);
MipsSEISelDAGToDAG.cpp 214 SDNode *Carry = CurDAG->getMachineNode(Mips::SLTu, DL, VT, Ops, 2);
216 SDValue(Carry, 0), RHS);
  /external/llvm/lib/Transforms/Utils/
IntegerDivision.cpp 245 // ; %carry_1 = phi i32 [ 0, %preheader ], [ %carry, %do-while ]
256 // ; %carry = and i32 %tmp10, 1
274 Value *Carry = Builder.CreateAnd(Tmp10, One);
282 // ; %carry_2 = phi i32 [ 0, %bb1 ], [ %carry, %do-while ]
301 // ; %carry_1 = phi i32 [ 0, %preheader ], [ %carry, %do-while ]
303 Carry_1->addIncoming(Carry, DoWhile);
313 // ; %carry_2 = phi i32 [ 0, %bb1 ], [ %carry, %do-while ]
315 Carry_2->addIncoming(Carry, DoWhile);
  /external/llvm/lib/Target/XCore/
XCoreISelLowering.cpp 746 SDValue Carry(Lo.getNode(), 1);
749 LHSH, RHSH, Carry);
    [all...]
  /external/llvm/lib/Support/
APInt.cpp 180 /// 1 is returned if there is a carry out, otherwise 0 is returned.
181 /// @returns the carry of the addition.
186 y = 1; // Carry one to next digit.
188 y = 0; // No need to carry so exit early
235 /// @returns the carry out from the addition
239 bool carry = false; local
242 dest[i] = x[i] + y[i] + carry;
243 carry = dest[i] < limit || (carry && dest[i] == limit);
245 return carry;
294 uint64_t carry = 0; local
330 uint64_t carry = 0, lx = 0, hx = 0; local
    [all...]
  /external/clang/lib/CodeGen/
CGBuiltin.cpp 179 /// \arg Carry The carry returned by the llvm.*.with.overflow.*.
184 llvm::Value *&Carry) {
192 Carry = CGF.Builder.CreateExtractValue(Tmp, 1);
    [all...]
  /external/qemu-pc-bios/bochs/bios/
rombios.c     [all...]

Completed in 180 milliseconds