Home
last modified time | relevance | path

Searched refs:EE (Results 1 – 25 of 192) sorted by relevance

12345678

/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/
H A DExecutionEngineBindings.cpp110 if (ExecutionEngine *EE = builder.create()){ in LLVMCreateExecutionEngineForModule() local
111 *OutEE = wrap(EE); in LLVMCreateExecutionEngineForModule()
215 void LLVMDisposeExecutionEngine(LLVMExecutionEngineRef EE) { in LLVMDisposeExecutionEngine() argument
216 delete unwrap(EE); in LLVMDisposeExecutionEngine()
219 void LLVMRunStaticConstructors(LLVMExecutionEngineRef EE) { in LLVMRunStaticConstructors() argument
220 unwrap(EE)->finalizeObject(); in LLVMRunStaticConstructors()
221 unwrap(EE)->runStaticConstructorsDestructors(false); in LLVMRunStaticConstructors()
224 void LLVMRunStaticDestructors(LLVMExecutionEngineRef EE) { in LLVMRunStaticDestructors() argument
225 unwrap(EE)->finalizeObject(); in LLVMRunStaticDestructors()
226 unwrap(EE)->runStaticConstructorsDestructors(true); in LLVMRunStaticDestructors()
[all …]
H A DExecutionEngine.cpp330 void *reset(LLVMContext &C, ExecutionEngine *EE,
334 void *ArgvArray::reset(LLVMContext &C, ExecutionEngine *EE, in reset() argument
338 unsigned PtrSize = EE->getDataLayout().getPointerSize(); in reset()
354 EE->StoreValueToMemory(PTOGV(Dest.get()), in reset()
360 EE->StoreValueToMemory(PTOGV(nullptr), in reset()
413 static bool isTargetNullPtr(ExecutionEngine *EE, void *Loc) { in isTargetNullPtr() argument
414 unsigned PtrSize = EE->getDataLayout().getPointerSize(); in isTargetNullPtr()
535 ExecutionEngine *EE = nullptr; in create() local
537 EE = ExecutionEngine::MCJITCtor(std::move(M), ErrorStr, std::move(MemMgr), in create()
540 if (EE) { in create()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm-c/
H A DExecutionEngine.h121 LLVM_C_ABI void LLVMDisposeExecutionEngine(LLVMExecutionEngineRef EE);
123 LLVM_C_ABI void LLVMRunStaticConstructors(LLVMExecutionEngineRef EE);
125 LLVM_C_ABI void LLVMRunStaticDestructors(LLVMExecutionEngineRef EE);
127 LLVM_C_ABI int LLVMRunFunctionAsMain(LLVMExecutionEngineRef EE, LLVMValueRef F,
131 LLVM_C_ABI LLVMGenericValueRef LLVMRunFunction(LLVMExecutionEngineRef EE,
135 LLVM_C_ABI void LLVMFreeMachineCodeForFunction(LLVMExecutionEngineRef EE,
138 LLVM_C_ABI void LLVMAddModule(LLVMExecutionEngineRef EE, LLVMModuleRef M);
140 LLVM_C_ABI LLVMBool LLVMRemoveModule(LLVMExecutionEngineRef EE, LLVMModuleRef M,
143 LLVM_C_ABI LLVMBool LLVMFindFunction(LLVMExecutionEngineRef EE,
146 LLVM_C_ABI void *LLVMRecompileAndRelinkFunction(LLVMExecutionEngineRef EE,
[all …]
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DSymbolRemappingReader.cpp60 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/contrib/bearssl/test/x509/
H A Dalltests.txt6 ; 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/crypto/krb5/src/lib/crypto/builtin/sha2/
H A Dsha256.c124 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 Dsha512.c132 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()
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DGraphWriter.h86 child_iterator EE = GTraits::child_end(Node); in getEdgeSourceLabels() local
92 for (unsigned i = 0; EI != EE && i != 64; ++EI, ++i) { in getEdgeSourceLabels()
110 if (EI != EE && hasEdgeSourceLabels) { in getEdgeSourceLabels()
192 child_iterator EE = GTraits::child_end(Node); in writeNode() local
193 for (; EI != EE && ColSpan != 64; ++EI, ++ColSpan) in writeNode()
198 if (EI != EE) in writeNode()
281 child_iterator EE = GTraits::child_end(Node); in writeNode() local
282 for (unsigned i = 0; EI != EE && i != 64; ++EI, ++i) in writeNode()
285 for (; EI != EE; ++EI) in writeNode()
/freebsd/contrib/llvm-project/llvm/tools/lli/
H A Dlli.cpp376 static void addCygMingExtraModule(ExecutionEngine &EE, LLVMContext &Context, in addCygMingExtraModule() argument
400 EE.addModule(std::move(M)); in addCygMingExtraModule()
524 std::unique_ptr<ExecutionEngine> EE(builder.create()); in main() local
525 if (!EE) { in main()
537 EE->setObjectCache(CacheManager.get()); in main()
550 EE->addModule(std::move(XMod)); in main()
562 EE->addObjectFile(std::move(O)); in main()
586 EE->addArchive(std::move(OB)); in main()
592 addCygMingExtraModule(*EE, Context, Mod->getTargetTriple()); in main()
597 EE->RegisterJITEventListener( in main()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86PartialReduction.cpp351 static Value *matchAddReduction(const ExtractElementInst &EE, in matchAddReduction() argument
355 auto *Index = dyn_cast<ConstantInt>(EE.getIndexOperand()); in matchAddReduction()
359 const auto *BO = dyn_cast<BinaryOperator>(EE.getVectorOperand()); in matchAddReduction()
362 if (EE.getParent() != BO->getParent()) in matchAddReduction()
376 if (EE.getParent() != BO->getParent()) in matchAddReduction()
513 auto *EE = dyn_cast<ExtractElementInst>(&I); in runOnFunction() local
514 if (!EE) in runOnFunction()
520 Value *Root = matchAddReduction(*EE, ReduceInOneBB); in runOnFunction()
/freebsd/share/misc/
H A DMakefile20 FILESGROUPS+= EE
21 EE= init.ee macro
/freebsd/contrib/llvm-project/llvm/lib/Target/XCore/
H A DXCoreFrameToArgsOffsetElim.cpp49 for (MachineBasicBlock::iterator MBBI = MBB.begin(), EE = MBB.end(); in runOnMachineFunction() local
50 MBBI != EE; ++MBBI) { in runOnMachineFunction()
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DSimpleConstraintManager.h24 ExprEngine *EE; variable
29 : EE(exprengine), SVB(SB) {} in SimpleConstraintManager()
/freebsd/crypto/krb5/src/lib/crypto/builtin/aes/
H A Dkresults.expected5 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
/freebsd/contrib/llvm-project/llvm/lib/Target/MSP430/
H A DMSP430BranchSelector.cpp119 for (auto MI = MBB->begin(), EE = MBB->end(); MI != EE; ++MI) { in expandBranches() local
145 if (MI->getOpcode() == MSP430::JCC && std::next(MI) != EE) { in expandBranches()
/freebsd/contrib/bearssl/src/x509/
H A Dx509_minimal.t074 * -- 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/crypto/openssl/doc/man3/
H A DSSL_CTX_dane_enable.pod97 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 DSSL_check_chain.pod29 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
/freebsd/crypto/openssl/test/certs/
H A DembeddedSCTs3.sct3 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:
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DSimpleConstraintManager.cpp47 if (EE) in assume()
48 return EE->processAssume(State, Cond, Assumption); in assume()
/freebsd/crypto/openssl/doc/man7/
H A Dproxy-certificates.pod14 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! */
/freebsd/sys/contrib/device-tree/Bindings/crypto/
H A Dqcom,prng.txt6 : should be "qcom,prng-ee" for 8996 and later using EE
/freebsd/contrib/llvm-project/clang/lib/Interpreter/
H A DInterpreter.cpp780 auto EE = getExecutionEngine(); in LoadDynamicLibrary()
781 if (!EE) in LoadDynamicLibrary()
782 return EE.takeError(); in LoadDynamicLibrary()
787 EE->getExecutionSession(), name)) in LoadDynamicLibrary()
790 EE->getProcessSymbolsJITDylib()->addGenerator(std::move(*DLSG)); in LoadDynamicLibrary()
/freebsd/sys/arm64/nvidia/tegra210/
H A Dtegra210_pinmux.c283 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),
/freebsd/secure/caroot/trusted/
H A DSSL_com_TLS_RSA_Root_CA_2022.pem66 FB:2E:37:EE:E3:84:7A:27:2E:CD:19:35:B1:33:7C:FF:D4:44:42:B9
68 FB:2E:37:EE:E3:84:7A:27:2E:CD:19:35:B1:33:7C:FF:D4:44:42:B9
102 SHA1 Fingerprint=EC:2C:83:40:72:AF:26:95:10:FF:0E:F2:03:EE:31:70:F6:78:9D:CA

12345678