| /freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/ |
| HD | ExecutionEngineBindings.cpp | 111 if (ExecutionEngine *EE = builder.create()){ in LLVMCreateExecutionEngineForModule() local 112 *OutEE = wrap(EE); in LLVMCreateExecutionEngineForModule() 216 void LLVMDisposeExecutionEngine(LLVMExecutionEngineRef EE) { in LLVMDisposeExecutionEngine() argument 217 delete unwrap(EE); in LLVMDisposeExecutionEngine() 220 void LLVMRunStaticConstructors(LLVMExecutionEngineRef EE) { in LLVMRunStaticConstructors() argument 221 unwrap(EE)->finalizeObject(); in LLVMRunStaticConstructors() 222 unwrap(EE)->runStaticConstructorsDestructors(false); in LLVMRunStaticConstructors() 225 void LLVMRunStaticDestructors(LLVMExecutionEngineRef EE) { in LLVMRunStaticDestructors() argument 226 unwrap(EE)->finalizeObject(); in LLVMRunStaticDestructors() 227 unwrap(EE)->runStaticConstructorsDestructors(true); in LLVMRunStaticDestructors() [all …]
|
| HD | ExecutionEngine.cpp | 331 void *reset(LLVMContext &C, ExecutionEngine *EE, 335 void *ArgvArray::reset(LLVMContext &C, ExecutionEngine *EE, in reset() argument 339 unsigned PtrSize = EE->getDataLayout().getPointerSize(); in reset() 355 EE->StoreValueToMemory(PTOGV(Dest.get()), in reset() 361 EE->StoreValueToMemory(PTOGV(nullptr), in reset() 414 static bool isTargetNullPtr(ExecutionEngine *EE, void *Loc) { in isTargetNullPtr() argument 415 unsigned PtrSize = EE->getDataLayout().getPointerSize(); in isTargetNullPtr() 536 ExecutionEngine *EE = nullptr; in create() local 538 EE = ExecutionEngine::MCJITCtor(std::move(M), ErrorStr, std::move(MemMgr), in create() 541 if (EE) { in create() [all …]
|
| /freebsd-13-stable/contrib/llvm-project/llvm/include/llvm-c/ |
| HD | ExecutionEngine.h | 112 void LLVMDisposeExecutionEngine(LLVMExecutionEngineRef EE); 114 void LLVMRunStaticConstructors(LLVMExecutionEngineRef EE); 116 void LLVMRunStaticDestructors(LLVMExecutionEngineRef EE); 118 int LLVMRunFunctionAsMain(LLVMExecutionEngineRef EE, LLVMValueRef F, 122 LLVMGenericValueRef LLVMRunFunction(LLVMExecutionEngineRef EE, LLVMValueRef F, 126 void LLVMFreeMachineCodeForFunction(LLVMExecutionEngineRef EE, LLVMValueRef F); 128 void LLVMAddModule(LLVMExecutionEngineRef EE, LLVMModuleRef M); 130 LLVMBool LLVMRemoveModule(LLVMExecutionEngineRef EE, LLVMModuleRef M, 133 LLVMBool LLVMFindFunction(LLVMExecutionEngineRef EE, const char *Name, 136 void *LLVMRecompileAndRelinkFunction(LLVMExecutionEngineRef EE, [all …]
|
| /freebsd-13-stable/contrib/llvm-project/llvm/lib/ProfileData/ |
| HD | SymbolRemappingReader.cpp | 60 using EE = ItaniumManglingCanonicalizer::EquivalenceError; in read() typedef 62 case EE::Success: in read() 65 case EE::ManglingAlreadyUsed: in read() 70 case EE::InvalidFirstMangling: in read() 74 case EE::InvalidSecondMangling: in read()
|
| /freebsd-13-stable/contrib/bearssl/test/x509/ |
| HD | alltests.txt | 6 ; In SSL/TLS order, the EE comes first. The root may or may not be included 124 ; EE certificate as trust anchor (direct trust only). 129 type = EE 175 ; Direct trust of EE. 382 ; Hash function support: signature on EE uses SHA-1. 393 ; Hash function support: signature on EE uses SHA-224. 404 ; Hash function support: signature on EE uses SHA-384. 415 ; Hash function support: signature on EE uses SHA-512. 426 ; Hash function support: signature on EE uses MD5. This is rejected by 437 ; EE certificate has trailing garbage (an extra byte), which should be [all …]
|
| /freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Support/ |
| HD | GraphWriter.h | 85 child_iterator EE = GTraits::child_end(Node); in getEdgeSourceLabels() local 91 for (unsigned i = 0; EI != EE && i != 64; ++EI, ++i) { in getEdgeSourceLabels() 109 if (EI != EE && hasEdgeSourceLabels) { in getEdgeSourceLabels() 191 child_iterator EE = GTraits::child_end(Node); in writeNode() local 192 for (; EI != EE && ColSpan != 64; ++EI, ++ColSpan) in writeNode() 197 if (EI != EE) in writeNode() 279 child_iterator EE = GTraits::child_end(Node); in writeNode() local 280 for (unsigned i = 0; EI != EE && i != 64; ++EI, ++i) in writeNode() 283 for (; EI != EE; ++EI) in writeNode()
|
| /freebsd-13-stable/contrib/llvm-project/llvm/tools/lli/ |
| HD | lli.cpp | 374 static void addCygMingExtraModule(ExecutionEngine &EE, LLVMContext &Context, in addCygMingExtraModule() argument 399 EE.addModule(std::move(M)); in addCygMingExtraModule() 523 std::unique_ptr<ExecutionEngine> EE(builder.create()); in main() local 524 if (!EE) { in main() 536 EE->setObjectCache(CacheManager.get()); in main() 549 EE->addModule(std::move(XMod)); in main() 561 EE->addObjectFile(std::move(O)); in main() 585 EE->addArchive(std::move(OB)); in main() 591 addCygMingExtraModule(*EE, Context, Mod->getTargetTriple()); in main() 596 EE->RegisterJITEventListener( in main() [all …]
|
| /freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/X86/ |
| HD | X86PartialReduction.cpp | 354 static Value *matchAddReduction(const ExtractElementInst &EE, in matchAddReduction() argument 358 auto *Index = dyn_cast<ConstantInt>(EE.getIndexOperand()); in matchAddReduction() 362 const auto *BO = dyn_cast<BinaryOperator>(EE.getVectorOperand()); in matchAddReduction() 365 if (EE.getParent() != BO->getParent()) in matchAddReduction() 379 if (EE.getParent() != BO->getParent()) in matchAddReduction() 516 auto *EE = dyn_cast<ExtractElementInst>(&I); in runOnFunction() local 517 if (!EE) in runOnFunction() 523 Value *Root = matchAddReduction(*EE, ReduceInOneBB); in runOnFunction()
|
| /freebsd-13-stable/secure/caroot/blacklisted/ |
| HD | EE_Certification_Centre_Root_CA.pem | 2 ## EE Certification Centre Root CA 19 …Issuer: C = EE, O = AS Sertifitseerimiskeskus, CN = EE Certification Centre Root CA, emailAddress … 23 …Subject: C = EE, O = AS Sertifitseerimiskeskus, CN = EE Certification Centre Root CA, emailAddress…
|
| /freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/XCore/ |
| HD | XCoreFrameToArgsOffsetElim.cpp | 52 for (MachineBasicBlock::iterator MBBI = MBB.begin(), EE = MBB.end(); in runOnMachineFunction() local 53 MBBI != EE; ++MBBI) { in runOnMachineFunction()
|
| /freebsd-13-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| HD | SimpleConstraintManager.h | 24 ExprEngine *EE; variable 29 : EE(exprengine), SVB(SB) {} in SimpleConstraintManager()
|
| /freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/MSP430/ |
| HD | MSP430BranchSelector.cpp | 120 for (auto MI = MBB->begin(), EE = MBB->end(); MI != EE; ++MI) { in expandBranches() local 146 if (MI->getOpcode() == MSP430::JCC && std::next(MI) != EE) { in expandBranches()
|
| /freebsd-13-stable/usr.bin/mkimg/tests/ |
| HD | img-1x1-512-gpt.raw.hex | 13 00000250 04 00 00 00 80 00 00 00 45 45 ea fb 00 00 00 00 |........EE......| 45 00420850 04 00 00 00 80 00 00 00 45 45 ea fb 00 00 00 00 |........EE......|
|
| HD | img-63x255-512-gpt.raw.hex | 13 00000250 04 00 00 00 80 00 00 00 45 45 ea fb 00 00 00 00 |........EE......| 45 00420850 04 00 00 00 80 00 00 00 45 45 ea fb 00 00 00 00 |........EE......|
|
| HD | img-1x1-512-gpt.vhdf.hex | 13 00000250 04 00 00 00 80 00 00 00 45 45 ea fb 00 00 00 00 |........EE......| 45 004ffe50 04 00 00 00 80 00 00 00 45 45 ea fb 00 00 00 00 |........EE......|
|
| HD | img-63x255-512-gpt.vhdf.hex | 13 00000250 04 00 00 00 80 00 00 00 45 45 ea fb 00 00 00 00 |........EE......| 45 007ffe50 04 00 00 00 80 00 00 00 45 45 ea fb 00 00 00 00 |........EE......|
|
| HD | img-1x1-512-gpt.qcow2.hex | 66 00050250 04 00 00 00 80 00 00 00 45 45 ea fb 00 00 00 00 |........EE......| 98 0046fe50 04 00 00 00 80 00 00 00 45 45 ea fb 00 00 00 00 |........EE......|
|
| HD | img-63x255-512-gpt.qcow2.hex | 66 00050250 04 00 00 00 80 00 00 00 45 45 ea fb 00 00 00 00 |........EE......| 98 0046fe50 04 00 00 00 80 00 00 00 45 45 ea fb 00 00 00 00 |........EE......|
|
| HD | img-1x1-512-gpt.vhdx.hex | 64 00400250 04 00 00 00 80 00 00 00 45 45 ea fb 00 00 00 00 |........EE......| 96 013ffe50 04 00 00 00 80 00 00 00 45 45 ea fb 00 00 00 00 |........EE......|
|
| HD | img-63x255-512-gpt.vhdx.hex | 64 00400250 04 00 00 00 80 00 00 00 45 45 ea fb 00 00 00 00 |........EE......| 96 013ffe50 04 00 00 00 80 00 00 00 45 45 ea fb 00 00 00 00 |........EE......|
|
| HD | img-1x1-512-gpt.vhd.hex | 29 00000c50 04 00 00 00 80 00 00 00 45 45 ea fb 00 00 00 00 |........EE......| 69 00427450 04 00 00 00 80 00 00 00 45 45 ea fb 00 00 00 00 |........EE......|
|
| HD | img-63x255-512-gpt.vhd.hex | 29 00000c50 04 00 00 00 80 00 00 00 45 45 ea fb 00 00 00 00 |........EE......| 73 007d9050 04 00 00 00 80 00 00 00 45 45 ea fb 00 00 00 00 |........EE......|
|
| /freebsd-13-stable/contrib/bearssl/src/x509/ |
| HD | x509_minimal.t0 | 74 * -- For the EE certificate only: the Common Name, if any, is matched 80 * -- If this is the EE certificate, then the hash is ignored 96 * -- If this is the EE certificate, then the key type is compared 108 * -- Basic Constraints: for all certificates except EE, must be 112 * -- Key Usage: for the EE, if present, must allow signatures 114 * For non-EE, if present, must have the "certificate sign" bit. 116 * -- Subject Alt Name: for the EE, dNSName names are matched 117 * against the server name. Ignored for non-EE. 474 \ Push true (-1) if no server name is expected in the EE certificate. 634 \ Read a DN for the EE. The normalized DN hash is computed and stored in the [all …]
|
| /freebsd-13-stable/crypto/openssl/doc/man3/ |
| HD | SSL_CTX_dane_enable.pod | 97 0 if an EE TLSA record directly matched the leaf certificate, or a positive 147 DANE-EE(3) TLSA records. 155 DANE-EE(3) TLSA records, and can be disabled in applications where it is safe 213 * For many applications it is safe to skip DANE-EE(3) namechecks. Do not 231 * Opportunistic DANE TLS clients support only DANE-TA(2) or DANE-EE(3). 233 * and PKIX-EE(1), as unusable. 238 case 1: /* PKIX-EE(1) */ 241 case 3: /* DANE-EE(3) */ 311 depth ? "matched TA certificate" : "matched EE certificate", 336 with usages PKIX-TA(0) and PKIX-EE(1) as "unusable", and should not include
|
| /freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
| HD | SimpleConstraintManager.cpp | 48 if (EE) in assume() 49 return EE->processAssume(State, Cond, Assumption); in assume()
|