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

1 2 3

  /external/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));
  /external/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));
  /external/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 26 typedef test_compare<std::less<int> > Cmp;
28 typedef std::set<int, Cmp, A> C;
30 C m({1, 2, 3, 4, 5, 6}, Cmp(10), A(4));
40 assert(m.key_comp() == Cmp(10));
45 typedef test_compare<std::less<int> > Cmp;
47 typedef std::set<int, Cmp, A> C;
  /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 26 typedef test_compare<std::less<int> > Cmp;
28 typedef std::set<int, Cmp, A> C;
30 C m({1, 2, 3, 4, 5, 6}, Cmp(10), A(4));
40 assert(m.key_comp() == Cmp(10));
45 typedef test_compare<std::less<int> > Cmp;
47 typedef std::set<int, Cmp, A> C;
  /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/Transforms/Scalar/
LowerAtomic.cpp 27 Value *Cmp = CXI->getCompareOperand();
31 Value *Equal = Builder.CreateICmpEQ(Orig, Cmp);
  /external/llvm/lib/Transforms/Instrumentation/
BoundsChecking.cpp 65 void emitBranchToTrap(Value *Cmp = nullptr);
98 /// If Cmp is non-null, perform a jump only if its value evaluates to true.
99 void BoundsChecking::emitBranchToTrap(Value *Cmp) {
101 ConstantInt *C = dyn_cast_or_null<ConstantInt>(Cmp);
107 Cmp = nullptr; // unconditional branch
116 if (Cmp)
117 BranchInst::Create(getTrapBB(), Cont, Cmp, OldBB);
  /external/chromium_org/third_party/skia/src/core/
SkFloat.cpp 251 int SkFloat::Cmp(int32_t packed_a, int32_t packed_b)
  /external/llvm/lib/CodeGen/
StackProtector.cpp 425 // %3 = cmp i1 %1, %2
460 Value *Cmp = B.CreateICmpEQ(LI1, LI2);
461 B.CreateCondBr(Cmp, NewBB, FailBB);
  /external/skia/src/core/
SkFloat.cpp 251 int SkFloat::Cmp(int32_t packed_a, int32_t packed_b)
  /external/llvm/lib/Transforms/InstCombine/
InstCombineShifts.cpp 756 Value *Cmp = Builder->CreateICmpEQ(II->getArgOperand(0), RHS);
757 return new ZExtInst(Cmp, II->getType());
    [all...]
  /external/vixl/src/a64/
macro-assembler-a64.cc 526 void MacroAssembler::Cmp(const Register& rn, const Operand& operand) {
    [all...]
  /external/clang/lib/CodeGen/
CGAtomic.cpp 194 // Cmp holds the result of the compare-exchange operation: true on success,
197 llvm::Value *Cmp = CGF.Builder.CreateExtractValue(Pair, 1);
211 CGF.Builder.CreateCondBr(Cmp, ContinueBB, StoreExpectedBB);
221 // Update the memory at Dest with Cmp's value.
222 CGF.EmitStoreOfScalar(Cmp, CGF.MakeAddrLValue(Dest, E->getType()));
    [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);
376 // Now that we have "cmp select(Cond, TV, FV), RHS", analyse it.
377 // Does "cmp TV, RHS" simplify?
384 // It didn't simplify. However if "cmp TV, RHS" is equal to the select
391 // Does "cmp FV, RHS" simplify?
398 // It didn't simplify. However if "cmp FV, RHS" is equal to the selec
    [all...]

Completed in 344 milliseconds

1 2 3