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

1 2

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/multimap/multimap.cons/
initializer_list_compare.pass.cpp 25 typedef test_compare<std::less<int> > Cmp;
26 typedef std::multimap<int, double, Cmp> C;
40 Cmp(4)
54 assert(m.key_comp() == Cmp(4));
58 typedef test_compare<std::less<int> > Cmp;
59 typedef std::multimap<int, double, Cmp, min_allocator<std::pair<const int, double>>> C;
73 Cmp(4)
87 assert(m.key_comp() == Cmp(4));
initializer_list_compare_alloc.pass.cpp 26 typedef test_compare<std::less<int> > Cmp;
28 typedef std::multimap<int, double, Cmp, A> C;
42 Cmp(4), A(5)
56 assert(m.key_comp() == Cmp(4));
62 typedef test_compare<std::less<int> > Cmp;
64 typedef std::multimap<int, double, Cmp, A> C;
78 Cmp(4), A()
92 assert(m.key_comp() == Cmp(4));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/multiset/multiset.cons/
initializer_list_compare.pass.cpp 23 typedef test_compare<std::less<int> > Cmp;
24 typedef std::multiset<int, Cmp> C;
26 C m({1, 2, 3, 4, 5, 6}, Cmp(10));
36 assert(m.key_comp() == Cmp(10));
initializer_list_compare_alloc.pass.cpp 24 typedef test_compare<std::less<int> > Cmp;
26 typedef std::multiset<int, Cmp, A> C;
28 C m({1, 2, 3, 4, 5, 6}, Cmp(10), A(4));
38 assert(m.key_comp() == Cmp(10));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/set/set.cons/
initializer_list_compare.pass.cpp 23 typedef test_compare<std::less<int> > Cmp;
24 typedef std::set<int, Cmp> C;
26 C m({1, 2, 3, 4, 5, 6}, Cmp(10));
36 assert(m.key_comp() == Cmp(10));
initializer_list_compare_alloc.pass.cpp 24 typedef test_compare<std::less<int> > Cmp;
26 typedef std::set<int, Cmp, A> C;
28 C m({1, 2, 3, 4, 5, 6}, Cmp(10), A(4));
38 assert(m.key_comp() == Cmp(10));
  /external/chromium_org/chrome/browser/ui/views/
accelerator_table_unittest.cc 20 struct Cmp {
33 std::set<AcceleratorMapping, Cmp> acclerators;
48 std::set<AcceleratorMapping, Cmp> acclerators;
  /external/chromium_org/ash/accelerators/
accelerator_table_unittest.cc 15 struct Cmp {
30 std::set<AcceleratorData, Cmp> acclerators;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_compare.py 21 class Cmp:
26 return '<Cmp %s>' % self.arg
29 return cmp(self.arg, other)
32 set1 = [2, 2.0, 2L, 2+0j, Coerce(2), Cmp(2.0)]
51 self.assertEqual(cmp(a, b), cmp(id(a), id(b)),
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_compare.py 21 class Cmp:
26 return '<Cmp %s>' % self.arg
29 return cmp(self.arg, other)
32 set1 = [2, 2.0, 2L, 2+0j, Coerce(2), Cmp(2.0)]
51 self.assertEqual(cmp(a, b), cmp(id(a), id(b)),
  /external/llvm/lib/Support/
Statistic.cpp 91 int Cmp = std::strcmp(LHS->getName(), RHS->getName());
92 if (Cmp != 0) return Cmp < 0;
  /external/llvm/lib/Transforms/Scalar/
LowerAtomic.cpp 26 Value *Cmp = CXI->getCompareOperand();
30 Value *Equal = Builder.CreateICmpEQ(Orig, Cmp);
CodeGenPrepare.cpp 55 STATISTIC(NumCmpUses, "Number of uses of Cmp expressions replaced with uses of "
547 /// InsertedCmp - Only insert a cmp in each block once.
563 // Figure out which BB this cmp is used in.
566 // If this user is in the same block as the cmp, don't change the cmp.
569 // If we have already inserted a cmp into this block, use it.
581 // Replace a use of the cmp with a use of the new cmp.
586 // If we removed all uses, nuke the cmp.
    [all...]
  /external/llvm/unittests/IR/
PatternMatch.cpp 32 static void m_OrdFMin_expect_match_and_delete(Value *Cmp, Value *Select,
39 delete Cmp;
42 static void m_OrdFMin_expect_nomatch_and_delete(Value *Cmp, Value *Select,
47 delete Cmp;
50 static void m_OrdFMax_expect_match_and_delete(Value *Cmp, Value *Select,
57 delete Cmp;
60 static void m_OrdFMax_expect_nomatch_and_delete(Value *Cmp, Value *Select,
65 delete Cmp;
79 Value *Cmp = Builder.CreateFCmpOLT(L, R);
80 Value *Select = Builder.CreateSelect(Cmp, L, R)
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
BoundsChecking.cpp 64 void emitBranchToTrap(Value *Cmp = 0);
100 /// If Cmp is non-null, perform a jump only if its value evaluates to true.
101 void BoundsChecking::emitBranchToTrap(Value *Cmp) {
103 ConstantInt *C = dyn_cast_or_null<ConstantInt>(Cmp);
109 Cmp = 0; // unconditional branch
118 if (Cmp)
119 BranchInst::Create(getTrapBB(), Cont, Cmp, OldBB);
  /external/chromium_org/third_party/skia/src/core/
SkFloat.cpp 257 int SkFloat::Cmp(int32_t packed_a, int32_t packed_b)
  /external/llvm/lib/CodeGen/
StackProtector.cpp 343 // %3 = cmp i1 %1, %2
371 ICmpInst *Cmp = new ICmpInst(*BB, CmpInst::ICMP_EQ, LI1, LI2, "");
372 BranchInst::Create(NewBB, FailBB, Cmp, BB);
  /external/llvm/lib/Transforms/InstCombine/
InstCombineShifts.cpp 739 Value *Cmp = Builder->CreateICmpEQ(II->getArgOperand(0), RHS);
740 return new ZExtInst(Cmp, II->getType());
InstCombineMulDivRem.cpp     [all...]
  /external/skia/src/core/
SkFloat.cpp 257 int SkFloat::Cmp(int32_t packed_a, int32_t packed_b)
  /external/clang/lib/CodeGen/
CGAtomic.cpp 211 llvm::Value *Cmp = CGF.Builder.CreateICmpEQ(CXI, LoadVal1);
212 CGF.EmitStoreOfScalar(Cmp, CGF.MakeAddrLValue(Dest, E->getType()));
    [all...]
MicrosoftCXXABI.cpp     [all...]
  /external/harfbuzz_ng/src/
hb-open-type-private.hh 564 static inline int cmp (const IntType<Type,Size> *a, const IntType<Type,Size> *b) { return b->cmp (*a); } function in struct:OT::IntType
565 inline int cmp (IntType<Type,Size> va) const { Type a = va; Type b = v; return a < b ? -1 : a == b ? 0 : +1; } function in struct:OT::IntType
566 inline int cmp (Type a) const { Type b = v; return a < b ? -1 : a == b ? 0 : +1; } function in struct:OT::IntType
957 if (this->array[i].cmp (x) == 0)
961 struct Cmp {
962 static int cmp (const SearchType *a, const Type *b) { return b->cmp (*a); } function in struct:OT::SortedArrayOf::Cmp
964 const Type *p = (const Type *) bsearch (&x, this->array, this->len, sizeof (this->array[0]), (hb_compare_func_t) Cmp::cmp);
    [all...]
  /external/llvm/lib/Analysis/
InstructionSimplify.cpp 81 CmpInst *Cmp = dyn_cast<CmpInst>(V);
82 if (!Cmp)
84 CmpInst::Predicate CPred = Cmp->getPredicate();
85 Value *CLHS = Cmp->getOperand(0), *CRHS = Cmp->getOperand(1);
448 // Now that we have "cmp select(Cond, TV, FV), RHS", analyse it.
449 // Does "cmp TV, RHS" simplify?
456 // It didn't simplify. However if "cmp TV, RHS" is equal to the select
463 // Does "cmp FV, RHS" simplify?
470 // It didn't simplify. However if "cmp FV, RHS" is equal to the selec
    [all...]
  /external/clang/lib/Basic/
SourceManager.cpp     [all...]

Completed in 747 milliseconds

1 2