Searched defs:Cmp (Results 1 - 25 of 48) sorted by relevance

12

/external/libcxx/test/containers/associative/multimap/multimap.cons/
H A Dinitializer_list_compare.pass.cpp25 typedef test_compare<std::less<int> > Cmp; typedef
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; typedef
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));
H A Dinitializer_list_compare_alloc.pass.cpp26 typedef test_compare<std::less<int> > Cmp; typedef
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; typedef
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/
H A Dinitializer_list_compare.pass.cpp23 typedef test_compare<std::less<int> > Cmp; typedef
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));
H A Dinitializer_list_compare_alloc.pass.cpp24 typedef test_compare<std::less<int> > Cmp; typedef
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/
H A Dinitializer_list_compare.pass.cpp23 typedef test_compare<std::less<int> > Cmp; typedef
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));
H A Dinitializer_list_compare_alloc.pass.cpp26 typedef test_compare<std::less<int> > Cmp; typedef
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; typedef
47 typedef std::set<int, Cmp, A> C;
/external/chromium_org/ash/accelerators/
H A Daccelerator_table_unittest.cc15 struct Cmp { struct in namespace:ash::__anon1848
30 std::set<AcceleratorData, Cmp> acclerators;
/external/chromium_org/chrome/browser/ui/views/
H A Daccelerator_table_unittest.cc20 struct Cmp { struct in namespace:chrome::__anon5192
33 std::set<AcceleratorMapping, Cmp> acclerators;
48 std::set<AcceleratorMapping, Cmp> acclerators;
/external/llvm/lib/Transforms/Scalar/
H A DLowerAtomic.cpp27 Value *Cmp = CXI->getCompareOperand(); local
31 Value *Equal = Builder.CreateICmpEQ(Orig, Cmp);
/external/llvm/lib/Transforms/Instrumentation/
H A DBoundsChecking.cpp65 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) { argument
101 ConstantInt *C = dyn_cast_or_null<ConstantInt>(Cmp);
107 Cmp = nullptr; // unconditional branch
116 if (Cmp)
117 BranchInst::Create(getTrapBB(), Cont, Cmp, OldBB); local
/external/chromium_org/third_party/skia/src/core/
H A DSkFloat.cpp251 int SkFloat::Cmp(int32_t packed_a, int32_t packed_b) function in class:SkFloat
/external/llvm/lib/CodeGen/
H A DStackProtector.cpp460 Value *Cmp = B.CreateICmpEQ(LI1, LI2); local
461 B.CreateCondBr(Cmp, NewBB, FailBB);
/external/skia/src/core/
H A DSkFloat.cpp251 int SkFloat::Cmp(int32_t packed_a, int32_t packed_b) function in class:SkFloat
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineShifts.cpp756 Value *Cmp = Builder->CreateICmpEQ(II->getArgOperand(0), RHS); local
757 return new ZExtInst(Cmp, II->getType());
H A DInstCombineMulDivRem.cpp757 Value *Cmp = Builder->CreateICmpULT( local
759 return SelectInst::Create(Cmp, Op1, ConstantInt::get(I.getType(), 0));
1253 Value *Cmp = Builder->CreateICmpNE(Op1, Op0); local
1254 Value *Ext = Builder->CreateZExt(Cmp, I.getType());
/external/clang/lib/CodeGen/
H A DCGAtomic.cpp194 // Cmp holds the result of the compare-exchange operation: true on success,
197 llvm::Value *Cmp = CGF.Builder.CreateExtractValue(Pair, 1); local
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()));
/external/vixl/src/a64/
H A Dmacro-assembler-a64.cc526 void MacroAssembler::Cmp(const Register& rn, const Operand& operand) { function in class:vixl::MacroAssembler
/external/chromium_org/v8/src/arm64/
H A Dmacro-assembler-arm64-inl.h208 void MacroAssembler::Cmp(const Register& rn, const Operand& operand) { function in class:v8::internal::MacroAssembler
1466 Cmp(scratch, FIRST_NONCALLABLE_SPEC_OBJECT_TYPE);
1636 Cmp(lhs, rhs);
/external/clang/lib/Basic/
H A DSourceManager.cpp1238 __m128i Cmp = _mm_or_si128(_mm_cmpeq_epi8(Chunk, CRs), local
1240 unsigned Mask = _mm_movemask_epi8(Cmp);
/external/llvm/lib/Analysis/
H A DInstructionSimplify.cpp81 CmpInst *Cmp = dyn_cast<CmpInst>(V); local
82 if (!Cmp)
84 CmpInst::Predicate CPred = Cmp->getPredicate();
85 Value *CLHS = Cmp->getOperand(0), *CRHS = Cmp->getOperand(1);
1642 CmpInst *Cmp = dyn_cast<CmpInst>(SI->getCondition());
1643 if (!Cmp)
1645 Value *CmpLHS = Cmp->getOperand(0), *CmpRHS = Cmp->getOperand(1);
1646 if (Pred == Cmp
[all...]
/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp2972 Value *Ptr, *Cmp, *New; local
2975 cast<PointerType>(Ptr->getType())->getElementType(), Cmp) ||
2992 I = new AtomicCmpXchgInst(Ptr, Cmp, New, SuccessOrdering, FailureOrdering,
/external/llvm/lib/Target/Hexagon/
H A DHexagonHardwareLoops.cpp110 static Kind getSwappedComparison(Kind Cmp) { argument
111 assert ((!((Cmp & L) && (Cmp & G))) && "Malformed comparison operator");
112 if ((Cmp & L) || (Cmp & G))
113 return (Kind)(Cmp ^ (L|G));
114 return Cmp;
151 Comparison::Kind Cmp) const;
521 Comparison::Kind Cmp; local
542 Cmp
[all...]
/external/llvm/lib/Transforms/Utils/
H A DSimplifyLibCalls.cpp955 Value *Cmp = B.CreateICmp(Old->getPredicate(), StrNCmp, variable
958 LCS->replaceAllUsesWith(Old, Cmp);
1035 int Cmp = memcmp(LHSStr.data(), RHSStr.data(), Len); variable
1036 if (Cmp < 0)
1038 else if (Cmp > 0)
/external/valgrind/main/VEX/priv/
H A Dhost_mips_defs.h451 } Cmp; member in union:__anon31937::__anon31938
/external/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTIL.h266 // template <class C> typename C::CType compare(CType* E, C& Cmp) {
408 template <class C> typename C::CType compare(Variable* E, C& Cmp) { argument
409 return Cmp.compareVariableRefs(this, E);
481 template <class C> typename C::CType compare(Future* E, C& Cmp) { argument
483 return Cmp.comparePointers(this, E);
484 return Cmp.compare(Result, E->Result);
575 template <class C> typename C::CType compare(Undefined* E, C& Cmp) { argument
576 return Cmp.comparePointers(Cstmt, E->Cstmt);
596 template <class C> typename C::CType compare(Wildcard* E, C& Cmp) { argument
597 return Cmp
629 compare(Literal* E, C& Cmp) argument
730 compare(LiteralPtr* E, C& Cmp) argument
772 compare(Function* E, C& Cmp) argument
827 compare(SFunction* E, C& Cmp) argument
862 compare(Code* E, C& Cmp) argument
897 compare(Field* E, C& Cmp) argument
933 compare(Apply* E, C& Cmp) argument
971 compare(SApply* E, C& Cmp) argument
1017 compare(Project* E, C& Cmp) argument
1051 compare(Call* E, C& Cmp) argument
1085 compare(Alloc* E, C& Cmp) argument
1114 compare(Load* E, C& Cmp) argument
1145 compare(Store* E, C& Cmp) argument
1181 compare(ArrayIndex* E, C& Cmp) argument
1218 compare(ArrayAdd* E, C& Cmp) argument
1254 compare(UnaryOp* E, C& Cmp) argument
1298 compare(BinaryOp* E, C& Cmp) argument
1336 compare(Cast* E, C& Cmp) argument
1389 compare(Phi *E, C &Cmp) argument
1506 compare(BasicBlock *E, C &Cmp) argument
1593 compare(SCFG *E, C &Cmp) argument
1626 compare(Goto *E, C &Cmp) argument
1671 compare(Branch *E, C &Cmp) argument
1701 compare(Identifier* E, C& Cmp) argument
1740 compare(IfThenElse* E, C& Cmp) argument
1787 compare(Let* E, C& Cmp) argument
[all...]

Completed in 662 milliseconds

12