HomeSort by relevance Sort by last modified time
    Searched refs:Cmp (Results 1 - 25 of 45) sorted by null

1 2

  /external/skia/src/core/
SkPtrRecorder.cpp 14 int SkPtrSet::Cmp(const Pair& a, const Pair& b) {
27 int index = SkTSearch<Pair>(fList.begin(), count, pair, sizeof(pair), &Cmp);
43 int index = SkTSearch<Pair>(fList.begin(), count, pair, sizeof(pair), &Cmp);
SkFP.h 76 #define SkFPLT(a, b) (SkFloat::Cmp(a, b) < 0)
77 #define SkFPLE(a, b) (SkFloat::Cmp(a, b) <= 0)
78 #define SkFPGT(a, b) (SkFloat::Cmp(a, b) > 0)
79 #define SkFPGE(a, b) (SkFloat::Cmp(a, b) >= 0)
SkFloat.h 65 friend bool operator<(const SkFloat& a, const SkFloat& b) { return Cmp(a.fPacked, b.fPacked) < 0; }
66 friend bool operator<=(const SkFloat& a, const SkFloat& b) { return Cmp(a.fPacked, b.fPacked) <= 0; }
67 friend bool operator>(const SkFloat& a, const SkFloat& b) { return Cmp(a.fPacked, b.fPacked) > 0; }
68 friend bool operator>=(const SkFloat& a, const SkFloat& b) { return Cmp(a.fPacked, b.fPacked) >= 0; }
113 static int Cmp(int32_t, int32_t);
SkFloat.cpp 264 int SkFloat::Cmp(int32_t packed_a, int32_t packed_b)
  /external/skia/include/core/
SkPtrRecorder.h 75 // we store the ptrs in sorted-order (using Cmp) so that we can efficiently
81 static int Cmp(const Pair& a, const Pair& b);
  /external/llvm/lib/Support/
Statistic.cpp 86 int Cmp = std::strcmp(LHS->getName(), RHS->getName());
87 if (Cmp != 0) return Cmp < 0;
  /external/clang/utils/TableGen/
OptParserEmitter.cpp 46 if (int Cmp = StrCmpOptionName(A->getValueAsString("Name").c_str(),
48 return Cmp;
  /external/llvm/lib/CodeGen/
StackProtector.cpp 207 // %3 = cmp i1 %1, %2
235 ICmpInst *Cmp = new ICmpInst(*BB, CmpInst::ICMP_EQ, LI1, LI2, "");
236 BranchInst::Create(NewBB, FailBB, Cmp, BB);
  /external/llvm/lib/Transforms/Scalar/
LowerAtomic.cpp 26 Value *Cmp = CXI->getCompareOperand();
30 Value *Equal = Builder.CreateICmpEQ(Orig, Cmp);
JumpThreading.cpp 466 if (CmpInst *Cmp = dyn_cast<CmpInst>(I)) {
468 PHINode *PN = dyn_cast<PHINode>(Cmp->getOperand(0));
475 Value *RHS = Cmp->getOperand(1)->DoPHITranslation(BB, PredBB);
477 Value *Res = SimplifyCmpInst(Cmp->getPredicate(), LHS, RHS, TD);
483 ResT = LVI->getPredicateOnEdge(Cmp->getPredicate(), LHS,
500 if (isa<Constant>(Cmp->getOperand(1)) && Cmp->getType()->isIntegerTy()) {
501 if (!isa<Instruction>(Cmp->getOperand(0)) ||
502 cast<Instruction>(Cmp->getOperand(0))->getParent() != BB) {
503 Constant *RHSCst = cast<Constant>(Cmp->getOperand(1))
    [all...]
GVN.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
OSAtomicChecker.cpp 171 DefinedOrUnknownSVal Cmp =
174 const ProgramState *stateEqual = stateLoad->assume(Cmp, true);
215 if (const ProgramState *stateNotEqual = stateLoad->assume(Cmp, false)) {
  /external/llvm/include/llvm/Support/
PatternMatch.h 716 ICmpInst *Cmp = dyn_cast<ICmpInst>(SI->getCondition());
717 if (!Cmp)
723 Value *LHS = Cmp->getOperand(0);
724 Value *RHS = Cmp->getOperand(1);
729 Cmp->getPredicate() : Cmp->getSwappedPredicate();
  /external/v8/src/x64/
stub-cache-x64.cc 156 __ Cmp(entity_name, masm->isolate()->factory()->undefined_value());
162 __ Cmp(entity_name, Handle<String>(name));
764 __ Cmp(FieldOperand(receiver_reg, HeapObject::kMapOffset),
    [all...]
macro-assembler-x64.cc 700 Cmp(Operand(rsi, 0), FACTORY->the_hole_value());
969 Cmp(dst, src);
973 void MacroAssembler::Cmp(Register dst, Smi* src) {
1010 void MacroAssembler::Cmp(const Operand& dst, Smi* src) {
    [all...]
lithium-codegen-x64.cc     [all...]
macro-assembler-x64.h 338 // otherwise use Cmp.
676 void Cmp(Register dst, Handle<Object> source);
677 void Cmp(const Operand& dst, Handle<Object> source);
678 void Cmp(Register dst, Smi* src);
679 void Cmp(const Operand& dst, Smi* src);
759 // The flag results are similar to integer cmp, but requires unsigned
    [all...]
  /external/valgrind/main/VEX/priv/
host_ppc_defs.c 771 i->Pin.Cmp.syned = syned;
772 i->Pin.Cmp.sz32 = sz32;
773 i->Pin.Cmp.crfD = crfD;
774 i->Pin.Cmp.srcL = srcL;
775 i->Pin.Cmp.srcR = srcR;
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineSelect.cpp 454 if (ConstantInt *Cmp = dyn_cast<ConstantInt>(CmpRHS)) {
456 if (Pred == ICmpInst::ICMP_SGT && Cmp->isAllOnesValue()) {
459 } else if (Pred == ICmpInst::ICMP_SLT && Cmp->isNullValue()) {
    [all...]
InstCombineShifts.cpp 691 Value *Cmp = Builder->CreateICmpEQ(II->getArgOperand(0), RHS);
692 return new ZExtInst(Cmp, II->getType());
  /external/llvm/lib/Target/PowerPC/
PPCISelLowering.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMISelLowering.cpp     [all...]
ARMISelLowering.h 54 CMP, // ARM compare instructions.
492 SDValue duplicateCmp(SDValue Cmp, SelectionDAG &DAG) const;
  /external/llvm/lib/Analysis/
InstructionSimplify.cpp 420 // Now that we have "cmp select(Cond, TV, FV), RHS", analyse it.
421 // Does "cmp TV, RHS" simplify?
424 // It does! Does "cmp FV, RHS" simplify?
    [all...]
  /external/llvm/lib/VMCore/
Instructions.cpp     [all...]

Completed in 612 milliseconds

1 2