Home
last modified time | relevance | path

Searched refs:E2 (Results 1 – 25 of 138) sorted by relevance

123456

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DASTStructuralEquivalence.cpp173 bool IsStmtEquivalent(const AddrLabelExpr *E1, const AddrLabelExpr *E2) { in IsStmtEquivalent() argument
174 return IsStructurallyEquivalent(Context, E1->getLabel(), E2->getLabel()); in IsStmtEquivalent()
177 bool IsStmtEquivalent(const AtomicExpr *E1, const AtomicExpr *E2) { in IsStmtEquivalent() argument
178 return E1->getOp() == E2->getOp(); in IsStmtEquivalent()
181 bool IsStmtEquivalent(const BinaryOperator *E1, const BinaryOperator *E2) { in IsStmtEquivalent() argument
182 return E1->getOpcode() == E2->getOpcode(); in IsStmtEquivalent()
185 bool IsStmtEquivalent(const CallExpr *E1, const CallExpr *E2) { in IsStmtEquivalent() argument
188 Decl *Callee2 = const_cast<Decl *>(E2->getCalleeDecl()); in IsStmtEquivalent()
203 const CharacterLiteral *E2) { in IsStmtEquivalent() argument
204 return E1->getValue() == E2->getValue() && E1->getKind() == E2->getKind(); in IsStmtEquivalent()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyCommon.h65 inline bool equals(const til::SExpr *E1, const til::SExpr *E2) { in equals() argument
66 return til::EqualsComparator::compareExprs(E1, E2); in equals()
69 inline bool matches(const til::SExpr *E1, const til::SExpr *E2) { in matches() argument
74 return isa<til::Wildcard>(E2); in matches()
75 if (isa<til::Wildcard>(E2)) in matches()
78 return til::MatchComparator::compareExprs(E1, E2); in matches()
81 inline bool partiallyMatches(const til::SExpr *E1, const til::SExpr *E2) { in partiallyMatches() argument
85 const auto *PE2 = dyn_cast_or_null<til::Project>(E2); in partiallyMatches()
H A DThreadSafetyTraverse.h315 bool compareByCase(const SExpr *E1, const SExpr* E2) { in compareByCase() argument
319 return cast<X>(E1)->compare(cast<X>(E2), *self()); in compareByCase()
341 bool compare(const SExpr *E1, const SExpr* E2) { in compare() argument
342 if (E1->opcode() != E2->opcode()) in compare()
344 return compareByCase(E1, E2); in compare()
355 static bool compareExprs(const SExpr *E1, const SExpr* E2) { in compareExprs() argument
357 return Eq.compare(E1, E2); in compareExprs()
375 bool compare(const SExpr *E1, const SExpr *E2) { in compare() argument
377 if (E1->opcode() == COP_Wildcard || E2->opcode() == COP_Wildcard) in compare()
380 if (E1->opcode() != E2->opcode()) in compare()
[all …]
/freebsd/crypto/openssl/test/ct/
H A Dtls1.sct10 E5:E2:3E:06:02:21:00:E4:ED:C0:DB:3A:C5:72:B1:E2:
/freebsd/usr.bin/bintrans/tests/
H A Dtextqpenc6 =E2=80=94=E2=80=89Antoine de Saint-Exup=C3=A9ry, Citadelle (1948)
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DError.h406 static Error join(Error E1, Error E2) { in join() argument
408 return E2; in join()
409 if (!E2) in join()
413 if (E2.isA<ErrorList>()) { in join()
414 auto E2Payload = E2.takePayload(); in join()
419 E1List.Payloads.push_back(E2.takePayload()); in join()
423 if (E2.isA<ErrorList>()) { in join()
424 auto &E2List = static_cast<ErrorList &>(*E2.getPtr()); in join()
426 return E2; in join()
429 new ErrorList(E1.takePayload(), E2.takePayload()))); in join()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/MCA/Stages/
H A DInstructionTables.cpp53 for (unsigned I2 = 0, E2 = SubUnit.NumUnits; I2 < E2; ++I2) { in execute() local
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DCOFFPlatform.cpp430 if (auto E2 = setupJITDylib(PlatformJD)) { in COFFPlatform() local
431 Err = std::move(E2); in COFFPlatform()
436 if (auto E2 = this->LoadDynLibrary(PlatformJD, Lib)) { in COFFPlatform() local
437 Err = std::move(E2); in COFFPlatform()
442 if (auto E2 = VCRuntimeBootstrap->initializeStaticVCRuntime(PlatformJD)) { in COFFPlatform() local
443 Err = std::move(E2); in COFFPlatform()
448 if (auto E2 = associateRuntimeSupportFunctions(PlatformJD)) { in COFFPlatform() local
449 Err = std::move(E2); in COFFPlatform()
456 if (auto E2 = bootstrapCOFFRuntime(PlatformJD)) { in COFFPlatform() local
457 Err = std::move(E2); in COFFPlatform()
[all...]
H A DELFNixPlatform.cpp275 if (auto E2 = setupJITDylib(PlatformJD)) { in ELFNixPlatform()
276 Err = std::move(E2); in ELFNixPlatform()
284 if (auto E2 = associateRuntimeSupportFunctions(PlatformJD)) { in associateRuntimeSupportFunctions()
285 Err = std::move(E2); in associateRuntimeSupportFunctions()
292 if (auto E2 = bootstrapELFNixRuntime(PlatformJD)) { in associateRuntimeSupportFunctions()
293 Err = std::move(E2); in associateRuntimeSupportFunctions()
261 if (auto E2 = setupJITDylib(PlatformJD)) { ELFNixPlatform() local
270 if (auto E2 = associateRuntimeSupportFunctions(PlatformJD)) { ELFNixPlatform() local
278 if (auto E2 = bootstrapELFNixRuntime(PlatformJD)) { ELFNixPlatform() local
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFUnitIndex.cpp288 llvm::sort(OffsetLookup, [&](Entry *E1, Entry *E2) { in getFromOffset() argument
290 E2->Contributions[InfoColumn].getOffset(); in getFromOffset()
293 auto I = partition_point(OffsetLookup, [&](Entry *E2) { in getFromOffset() argument
294 return E2->Contributions[InfoColumn].getOffset() <= Offset; in getFromOffset()
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/FlowSensitive/
H A DDataflowAnalysis.h98 const TypeErasedLattice &E2) final { in joinTypeErased() argument
101 const Lattice &L2 = llvm::any_cast<const Lattice &>(E2.Value); in joinTypeErased()
114 const TypeErasedLattice &E2) final { in isEqualTypeErased() argument
116 const Lattice &L2 = llvm::any_cast<const Lattice &>(E2.Value); in isEqualTypeErased()
/freebsd/contrib/one-true-awk/testdir/
H A Dt.strnum1 BEGIN { print 1E2 "", 12e-2 "", e12 "", 1.23456789 "" }
/freebsd/secure/caroot/trusted/
H A DGlobalSign_Root_CA_-_R6.pem71 AE:6C:05:A3:93:13:E2:A2:E7:E2:D7:1C:D6:C7:F0:7F:C8:67:53:A0
73 AE:6C:05:A3:93:13:E2:A2:E7:E2:D7:1C:D6:C7:F0:7F:C8:67:53:A0
H A DDigiCert_Global_Root_CA.pem54 03:DE:50:35:56:D1:4C:BB:66:F0:A3:E2:1B:1B:C3:97:B2:3D:D1:55
56 03:DE:50:35:56:D1:4C:BB:66:F0:A3:E2:1B:1B:C3:97:B2:3D:D1:55
/freebsd/crypto/openssl/test/certs/
H A DembeddedSCTs1.sct10 E8:9C:59:67:02:21:00:98:25:83:EB:D6:E2:DE:04:C7:
H A DrootCA.pem39 85:56:89:35:E2:9F:00:1A:E1:86:03:0B:4B:AF:76:12:6B:33:6D:FD
41 keyid:85:56:89:35:E2:9F:00:1A:E1:86:03:0B:4B:AF:76:12:6B:33:6D:FD
/freebsd/sys/contrib/device-tree/src/arm/st/
H A Dstm32mp157c-dhcom-pdk2.dts6 * DHCM-STM32MP157C-C065-R102-F0819-SPI-E2-CAN2-SDR104-RTC-WBT-T-DSI-I-01D2
H A Dstm32mp153c-dhcom-drc02.dts6 * DHCM-STM32MP153C-C065-R102-F0819-SPI-E2-CAN2-RTC-I-01D2
/freebsd/secure/caroot/untrusted/
H A DGeoTrust_Primary_Certification_Authority.pem71 SHA1 Fingerprint=32:3C:11:8E:1B:F7:B8:B6:52:54:E2:E2:10:0D:D6:02:90:37:F0:96
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DJITLinkGeneric.cpp275 Alloc->abandon([S = std::move(Self), E1 = std::move(Err)](Error E2) mutable { in prune()
276 S->Ctx->notifyFailed(joinErrors(std::move(E1), std::move(E2))); in prune()
261 __anonf070d25f0402(Error E2) abandonAllocAndBailOut() argument
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DIfConversion.cpp834 MachineBasicBlock::reverse_iterator E2 = MBB2->rbegin(); in verifySameBranchInstructions() local
835 while (E1 != B1 && E2 != B2) { in verifySameBranchInstructions()
837 skipDebugInstructionsForward(E2, B2, false); in verifySameBranchInstructions()
838 if (E1 == B1 && E2 == B2) in verifySameBranchInstructions()
842 assert(!E2->isBranch() && "Branch mis-match, one block is empty."); in verifySameBranchInstructions()
845 if (E2 == B2) { in verifySameBranchInstructions()
850 if (E1->isBranch() || E2->isBranch()) in verifySameBranchInstructions()
851 assert(E1->isIdenticalTo(*E2) && in verifySameBranchInstructions()
856 ++E2; in verifySameBranchInstructions()
/freebsd/contrib/opencsd/decoder/source/ptm/
H A Dtrc_pkt_proc_ptm.cpp944 uint8_t E2 = m_currPacketData[m_numAddrBytes+1]; in pktBranchAddr() local
945 m_curr_packet.UpdateHyp((E2 >> 5) & 0x1); in pktBranchAddr()
946 ENum |= ((uint16_t)(E2 & 0x1F) << 4); in pktBranchAddr()
/freebsd/sys/contrib/device-tree/Bindings/display/
H A Drenesas,du.txt20 - "renesas,du-r8a7794" for R8A7794 (R-Car E2) compatible DU
88 R8A7794 (R-Car E2) DPAD 0 DPAD 1 - -
/freebsd/sys/contrib/device-tree/src/arm/nxp/imx/
H A Dimx6ull-dhcom-picoitx.dts6 * DHCM-iMX6ULL-C080-R051-F0409-SPI-E2-CAN2-SD-RTC-ADC-I-01D2
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmtAsm.cpp101 const Expr *E2 = E->IgnoreParenNoopCasts(S.Context); in CheckAsmLValue() local
102 if (E != E2 && E2->isLValue()) { in CheckAsmLValue()
103 emitAndFixInvalidAsmCastLValue(E2, E, S); in CheckAsmLValue()

123456