Searched refs:E2 (Results 1 - 25 of 26) sorted by relevance

12

/freebsd-11-stable/contrib/llvm-project/llvm/lib/MCA/Stages/
H A DInstructionTables.cpp54 for (unsigned I2 = 0, E2 = SubUnit.NumUnits; I2 < E2; ++I2) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DUndefBranchChecker.cpp42 if (const Expr *E2 = FindExpr(ExI))
43 return E2;
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyCommon.h63 inline bool equals(const til::SExpr *E1, const til::SExpr *E2) { argument
64 return til::EqualsComparator::compareExprs(E1, E2);
67 inline bool matches(const til::SExpr *E1, const til::SExpr *E2) { argument
72 return isa<til::Wildcard>(E2);
73 if (isa<til::Wildcard>(E2))
76 return til::MatchComparator::compareExprs(E1, E2);
79 inline bool partiallyMatches(const til::SExpr *E1, const til::SExpr *E2) { argument
83 const auto *PE2 = dyn_cast_or_null<til::Project>(E2);
H A DThreadSafetyTraverse.h315 bool compareByCase(const SExpr *E1, const SExpr* E2) { argument
319 return cast<X>(E1)->compare(cast<X>(E2), *self());
341 bool compare(const SExpr *E1, const SExpr* E2) { argument
342 if (E1->opcode() != E2->opcode())
344 return compareByCase(E1, E2);
355 static bool compareExprs(const SExpr *E1, const SExpr* E2) { argument
357 return Eq.compare(E1, E2);
375 bool compare(const SExpr *E1, const SExpr *E2) { argument
377 if (E1->opcode() == COP_Wildcard || E2->opcode() == COP_Wildcard)
380 if (E1->opcode() != E2
393 compareExprs(const SExpr *E1, const SExpr* E2) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFUnitIndex.cpp170 llvm::sort(OffsetLookup, [&](Entry *E1, Entry *E2) {
172 E2->Contributions[InfoColumn].Offset;
175 auto I = partition_point(OffsetLookup, [&](Entry *E2) {
176 return E2->Contributions[InfoColumn].Offset <= Offset;
H A DDWARFVerifier.cpp64 auto I2 = RHS.Ranges.begin(), E2 = RHS.Ranges.end(); local
65 if (I2 == E2)
72 if (++I2 == E2)
88 auto I2 = RHS.Ranges.begin(), E2 = RHS.Ranges.end(); local
89 while (I1 != E1 && I2 != E2) {
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DError.h391 static Error join(Error E1, Error E2) { argument
393 return E2;
394 if (!E2)
398 if (E2.isA<ErrorList>()) {
399 auto E2Payload = E2.takePayload();
404 E1List.Payloads.push_back(E2.takePayload());
408 if (E2.isA<ErrorList>()) {
409 auto &E2List = static_cast<ErrorList &>(*E2.getPtr());
411 return E2;
414 new ErrorList(E1.takePayload(), E2
423 joinErrors(Error E1, Error E2) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DASTStructuralEquivalence.cpp160 const Expr *E1, const Expr *E2) {
161 if (!E1 || !E2)
162 return E1 == E2;
165 auto *DE2 = dyn_cast<DependentScopeDeclRefExpr>(E2);
174 auto *CastE2 = dyn_cast<ImplicitCastExpr>(E2);
258 E1 = OS1->end(), E2 = OS2->end(); local
259 for (; I1 != E1 && I2 != E2; ++I1, ++I2)
262 return I1 == E1 && I2 == E2;
159 IsStructurallyEquivalent(StructuralEquivalenceContext &Context, const Expr *E1, const Expr *E2) argument
H A DExpr.cpp3985 bool Expr::isSameComparisonOperand(const Expr* E1, const Expr* E2) { argument
3987 E2 = E2->IgnoreParens();
3989 if (E1->getStmtClass() != E2->getStmtClass())
4001 const auto *DRE2 = cast<DeclRefExpr>(E2);
4009 const auto *ICE2 = dyn_cast<ImplicitCastExpr>(E2);
4015 E2 = ICE2->getSubExpr()->IgnoreParens();
4025 const auto *DRE2 = dyn_cast<DeclRefExpr>(E2);
4030 const auto *Ivar2 = dyn_cast<ObjCIvarRefExpr>(E2);
4037 const auto *Array2 = dyn_cast<ArraySubscriptExpr>(E2);
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DX86RecognizableInstr.h61 MAP(E2, 98) \
H A DCodeGenRegisters.cpp952 for (auto I2 = I.base(), E2 = RegClasses.end(); I2 != E2; ++I2) {
2318 for (auto I2 = RegClasses.begin(), E2 = std::next(FirstNewRC); I2 != E2;
2320 inferMatchingSuperRegClass(&*I2, E2);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmtAsm.cpp99 const Expr *E2 = E->IgnoreParenNoopCasts(S.Context); local
100 if (E != E2 && E2->isLValue()) {
101 emitAndFixInvalidAsmCastLValue(E2, E, S);
H A DSemaExprCXX.cpp5593 // can be converted to match an operand expression E2 of type T2 is defined
5595 // -- If E2 is an lvalue: E1 can be converted to match E2 if E1 can be
5599 // -- If E2 is an xvalue: E1 can be converted to match E2 if E1 can be
5619 // -- If E2 is an rvalue, or if the conversion above cannot be done:
5620 // -- if E1 and E2 have class type, and the underlying class types are
5630 // E1 can be converted to match E2 if the class of T2 is the
5650 // -- Otherwise: E1 can be converted to match E2 if E1 can be
5651 // implicitly converted to the type that expression E2 woul
[all...]
H A DSemaChecking.cpp9992 static bool referToTheSameDecl(const Expr *E1, const Expr *E2) { argument
9994 if (const DeclRefExpr *D2 = dyn_cast_or_null<DeclRefExpr>(E2))
12921 // The expression E1[E2] is identical (by definition) to *((E1)+(E2)). The
12922 // expression E1 is sequenced before the expression E2.
12935 // Abbreviating pm-expression.*cast-expression as E1.*E2, [...]
12936 // the expression E1 is sequenced before the expression E2.
12949 // The expression E1 is sequenced before the expression E2.
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/RPC/
H A DRPCSerialization.h466 if (auto E2 = deserializeSeq(C, Msg))
467 return E2;
502 if (auto E2 = deserializeSeq(C, Err))
503 return E2;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DIfConversion.cpp844 MachineBasicBlock::reverse_iterator E2 = MBB2->rbegin(); local
845 while (E1 != B1 && E2 != B2) {
847 skipDebugInstructionsForward(E2, B2);
848 if (E1 == B1 && E2 == B2)
852 assert(!E2->isBranch() && "Branch mis-match, one block is empty.");
855 if (E2 == B2) {
860 if (E1->isBranch() || E2->isBranch())
861 assert(E1->isIdenticalTo(*E2) &&
866 ++E2;
H A DRegAllocPBQP.cpp282 SlotIndex E2 = getEndPoint(I2); local
284 if (E1 < E2)
287 if (E1 > E2)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ProfileData/
H A DGCOV.cpp400 llvm::stable_sort(DstEdges, [](const GCOVEdge *E1, const GCOVEdge *E2) {
401 return E1->Dst.Number < E2->Dst.Number;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DValueMapper.cpp983 auto *E2 = cast<Constant>(mapValue(S->getOperand(1))); local
985 NewV = ConstantStruct::get(cast<StructType>(EltTy), E1, E2, Null);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/
H A DCFG.cpp144 static bool areExprTypesCompatible(const Expr *E1, const Expr *E2) { argument
147 if (isa<DeclRefExpr>(E1) != isa<DeclRefExpr>(E2))
156 assert(isa<DeclRefExpr>(E1) && isa<DeclRefExpr>(E2));
158 auto *Decl2 = cast<DeclRefExpr>(E2)->getDecl();
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriter.cpp3944 auto CompareByTypeID = [](const ElementTy &E1, const ElementTy &E2) -> bool {
3945 return E1.first < E2.first;
3976 auto CompareByDeclID = [](const ElementTy &E1, const ElementTy &E2) -> bool {
3977 return E1.first < E2.first;
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h10848 QualType FindCompositePointerType(SourceLocation Loc, Expr *&E1, Expr *&E2,
10851 ExprResult &E1, ExprResult &E2,
10853 Expr *E1Tmp = E1.get(), *E2Tmp = E2.get();
10857 E2 = E2Tmp;
10850 FindCompositePointerType(SourceLocation Loc, ExprResult &E1, ExprResult &E2, bool ConvertArgs = true) argument
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DExpr.h936 /// are not modified between E1 and E2 or the result my be invalid.
937 static bool isSameComparisonOperand(const Expr* E1, const Expr* E2);
/freebsd-11-stable/sys/contrib/ngatm/netnatm/msg/
H A Duni_ie.c2793 MKT(UNI_AAL1_CBR_8448, 8448(E2)),
/freebsd-11-stable/contrib/amd/doc/
H A Dtexinfo.tex9310 \DeclareUnicodeCharacter{00E2}{\^a}
9466 \DeclareUnicodeCharacter{01E2}{\={\AE}}

Completed in 708 milliseconds

12