| /src/contrib/llvm-project/llvm/lib/ExecutionEngine/ |
| H A D | 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 …]
|
| H A D | 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 …]
|
| /src/contrib/llvm-project/llvm/include/llvm-c/ |
| H A D | 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 …]
|
| /src/contrib/llvm-project/llvm/lib/ProfileData/ |
| H A D | 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()
|
| /src/contrib/bearssl/test/x509/ |
| H A D | 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 …]
|
| /src/crypto/krb5/src/lib/crypto/builtin/sha2/ |
| H A D | sha256.c | 124 uint32_t AA, BB, CC, DD, EE, FF, GG, HH; in calc() local 132 EE = E; in calc() 146 T1 = HH + Sigma1(EE) + Ch(EE, FF, GG) + constant_256[i] + data[i]; in calc() 151 FF = EE; in calc() 152 EE = DD + T1; in calc() 163 E += EE; in calc()
|
| H A D | sha512.c | 132 uint64_t AA, BB, CC, DD, EE, FF, GG, HH; in calc() local 140 EE = E; in calc() 154 T1 = HH + Sigma1(EE) + Ch(EE, FF, GG) + constant_512[i] + data[i]; in calc() 159 FF = EE; in calc() 160 EE = DD + T1; in calc() 171 E += EE; in calc()
|
| /src/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | 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()
|
| /src/contrib/llvm-project/llvm/tools/lli/ |
| H A D | 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 …]
|
| /src/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | 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()
|
| /src/share/misc/ |
| H A D | Makefile | 20 FILESGROUPS+= EE 21 EE= init.ee macro
|
| /src/secure/caroot/untrusted/ |
| H A D | 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…
|
| /src/contrib/llvm-project/llvm/lib/Target/XCore/ |
| H A D | XCoreFrameToArgsOffsetElim.cpp | 52 for (MachineBasicBlock::iterator MBBI = MBB.begin(), EE = MBB.end(); in runOnMachineFunction() local 53 MBBI != EE; ++MBBI) { in runOnMachineFunction()
|
| /src/crypto/krb5/src/lib/crypto/builtin/aes/ |
| H A D | kresults.expected | 5 00 11 22 33 44 55 66 77 88 99 AA BB CC DD EE FF 43 D3 7F 6D 39 57 32 A6 C5 A4 49 F4 4B C6 EE 0A E0 54 B5 76 2B EE F3 A1 04 A1 E0 3F FE CA 17 7B 4C 91 69 D9 A9 50 DA 1D FC EE 71 DA 94 1D 9A B5 03 3E BE 112 D3 7F 6D 39 57 32 A6 C5 A4 49 F4 4B C6 EE 0A E0 138 D9 A9 50 DA 1D FC EE 71 DA 94 1D 9A B5 03 3E BE 185 D3 7F 6D 39 57 32 A6 C5 A4 49 F4 4B C6 EE 0A E0 213 D9 A9 50 DA 1D FC EE 71 DA 94 1D 9A B5 03 3E BE
|
| /src/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| H A D | SimpleConstraintManager.h | 24 ExprEngine *EE; variable 29 : EE(exprengine), SVB(SB) {} in SimpleConstraintManager()
|
| /src/contrib/llvm-project/llvm/lib/Target/MSP430/ |
| H A D | 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()
|
| /src/contrib/bearssl/src/x509/ |
| H A D | 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 …]
|
| /src/crypto/openssl/doc/man3/ |
| H A D | 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) */ 313 mdpth ? "matched the TA" : "matched the EE", mdpth); 339 with usages PKIX-TA(0) and PKIX-EE(1) as "unusable", and should not include
|
| H A D | SSL_check_chain.pod | 29 B<CERT_PKEY_SIGN>: the EE key can be used for signing. 31 B<CERT_PKEY_EE_SIGNATURE>: the signature algorithm of the EE certificate is
|
| /src/crypto/openssl/test/certs/ |
| H A D | embeddedSCTs3.sct | 3 Log ID : 68:F6:98:F8:1F:64:82:BE:3A:8C:EE:B9:28:1D:4C:FC: 34 0F:3B:6A:74:02:21:00:86:EE:10:F9:10:E6:7B:17:65:
|
| /src/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
| H A D | SimpleConstraintManager.cpp | 48 if (EE) in assume() 49 return EE->processAssume(State, Cond, Assumption); in assume()
|
| /src/crypto/openssl/doc/man7/ |
| H A D | proxy-certificates.pod | 14 operations on behalf of the owner of the EE (End Entity) certificate. 22 They are issued by an End Entity, either a normal EE certificate, or 150 right time. You also need to fill in the defaults when the EE 216 * possible chain of intermediate CAs, followed by the EE 283 /* We have an EE certificate, let's use it to set default! */
|
| /src/sys/contrib/device-tree/Bindings/crypto/ |
| H A D | qcom,prng.txt | 6 : should be "qcom,prng-ee" for 8996 and later using EE
|
| /src/sys/arm64/nvidia/tegra210/ |
| H A D | tegra210_pinmux.c | 283 GMUX(0x088, EE, 0, qspi_sck_pee0, qspi, rsvd1, rsvd2, rsvd3, 0xa90, 0, 0, 0, 0), 284 GMUX(0x08c, EE, 1, qspi_cs_n_pee1, qspi, rsvd1, rsvd2, rsvd3, -1, 0, 0, 0, 0), 285 GMUX(0x090, EE, 2, qspi_io0_pee2, qspi, rsvd1, rsvd2, rsvd3, -1, 0, 0, 0, 0), 286 GMUX(0x094, EE, 3, qspi_io1_pee3, qspi, rsvd1, rsvd2, rsvd3, -1, 0, 0, 0, 0), 287 GMUX(0x098, EE, 4, qspi_io2_pee4, qspi, rsvd1, rsvd2, rsvd3, -1, 0, 0, 0, 0), 288 GMUX(0x09c, EE, 5, qspi_io3_pee5, qspi, rsvd1, rsvd2, rsvd3, -1, 0, 0, 0, 0),
|
| /src/secure/caroot/trusted/ |
| H A D | SSL_com_TLS_RSA_Root_CA_2022.pem | 69 FB:2E:37:EE:E3:84:7A:27:2E:CD:19:35:B1:33:7C:FF:D4:44:42:B9 71 FB:2E:37:EE:E3:84:7A:27:2E:CD:19:35:B1:33:7C:FF:D4:44:42:B9 105 SHA1 Fingerprint=EC:2C:83:40:72:AF:26:95:10:FF:0E:F2:03:EE:31:70:F6:78:9D:CA
|