Searched refs:ES (Results 1 - 25 of 100) sorted by relevance

1234

/freebsd-11-stable/contrib/openbsm/libbsm/
H A Dbsm_errno.c60 #define ES(x) x macro
62 #define ES(x) macro
81 { BSM_ERRNO_ESUCCESS, 0, ES("Success") },
82 { BSM_ERRNO_EPERM, EPERM, ES("Operation not permitted") },
83 { BSM_ERRNO_ENOENT, ENOENT, ES("No such file or directory") },
84 { BSM_ERRNO_ESRCH, ESRCH, ES("No such process") },
85 { BSM_ERRNO_EINTR, EINTR, ES("Interrupted system call") },
86 { BSM_ERRNO_EIO, EIO, ES("Input/output error") },
87 { BSM_ERRNO_ENXIO, ENXIO, ES("Device not configured") },
88 { BSM_ERRNO_E2BIG, E2BIG, ES("Argumen
[all...]
/freebsd-11-stable/sys/security/audit/
H A Dbsm_errno.c62 #define ES(x) x macro
64 #define ES(x) macro
83 { BSM_ERRNO_ESUCCESS, 0, ES("Success") },
84 { BSM_ERRNO_EPERM, EPERM, ES("Operation not permitted") },
85 { BSM_ERRNO_ENOENT, ENOENT, ES("No such file or directory") },
86 { BSM_ERRNO_ESRCH, ESRCH, ES("No such process") },
87 { BSM_ERRNO_EINTR, EINTR, ES("Interrupted system call") },
88 { BSM_ERRNO_EIO, EIO, ES("Input/output error") },
89 { BSM_ERRNO_ENXIO, ENXIO, ES("Device not configured") },
90 { BSM_ERRNO_E2BIG, E2BIG, ES("Argumen
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DLegacy.cpp17 ExecutionSession &ES, SymbolResolver &R, MaterializationResponsibility *MR)
18 : ES(ES), R(R), MR(MR) {}
24 InternedSymbols.insert(ES.intern(S));
48 ES.legacyFailQuery(*Q, make_error<SymbolsNotFound>(std::move(Unresolved)));
55 InternedSymbols.insert(ES.intern(S));
16 JITSymbolResolverAdapter( ExecutionSession &ES, SymbolResolver &R, MaterializationResponsibility *MR) argument
H A DLLJIT.cpp41 [](ExecutionSession &ES,
44 ES, std::make_unique<jitlink::InProcessMemoryManager>());
58 auto InternedName = ES->intern(Name);
70 return CompileLayer->add(JD, std::move(TSM), ES->allocateVModule());
76 return ObjTransformLayer.add(JD, std::move(Obj), ES->allocateVModule());
81 return ES->lookup(
83 ES->intern(Name));
87 LLJIT::createObjectLinkingLayer(LLJITBuilderState &S, ExecutionSession &ES) { argument
91 return S.CreateObjectLinkingLayer(ES, S.JTMB->getTargetTriple());
97 std::make_unique<RTDyldObjectLinkingLayer>(ES, st
[all...]
H A DIRTransformLayer.cpp15 IRTransformLayer::IRTransformLayer(ExecutionSession &ES, IRLayer &BaseLayer, argument
17 : IRLayer(ES, BaseLayer.getManglingOptions()), BaseLayer(BaseLayer),
H A DObjectTransformLayer.cpp15 ObjectTransformLayer::ObjectTransformLayer(ExecutionSession &ES, argument
18 : ObjectLayer(ES), BaseLayer(BaseLayer), Transform(std::move(Transform)) {}
H A DLazyReexports.cpp22 ExecutionSession &ES, JITTargetAddress ErrorHandlerAddr,
24 : ES(ES), ErrorHandlerAddr(ErrorHandlerAddr), TP(std::move(TP)) {}
54 auto LookupResult = ES.lookup(
59 ES.reportError(LookupResult.takeError());
77 ES.reportError(std::move(Err));
86 createLocalLazyCallThroughManager(const Triple &T, ExecutionSession &ES, argument
96 return LocalLazyCallThroughManager::Create<OrcAArch64>(ES,
100 return LocalLazyCallThroughManager::Create<OrcI386>(ES, ErrorHandlerAddr);
103 return LocalLazyCallThroughManager::Create<OrcMips32Be>(ES,
21 LazyCallThroughManager( ExecutionSession &ES, JITTargetAddress ErrorHandlerAddr, std::unique_ptr<TrampolinePool> TP) argument
[all...]
H A DRTDyldObjectLinkingLayer.cpp22 auto &ES = MR.getTargetJITDylib().getExecutionSession(); local
27 InternedSymbols.add(ES.intern(S));
53 ES.lookup(LookupKind::Static, SearchOrder, InternedSymbols,
79 ExecutionSession &ES, GetMemoryManagerFunction GetMemoryManager)
80 : ObjectLayer(ES), GetMemoryManager(GetMemoryManager) {}
98 auto &ES = getExecutionSession(); local
123 ES.reportError(SymName.takeError());
168 auto &ES = getExecutionSession(); local
184 R.getSymbols().count(ES.intern(*Name)))
263 ExecutionSession &ES, ResourcesGette
78 RTDyldObjectLinkingLayer( ExecutionSession &ES, GetMemoryManagerFunction GetMemoryManager) argument
262 LegacyRTDyldObjectLinkingLayer( ExecutionSession &ES, ResourcesGetter GetResources, NotifyLoadedFtor NotifyLoaded, NotifyFinalizedFtor NotifyFinalized, NotifyFreedFtor NotifyFreed) argument
[all...]
H A DLayer.cpp26 IRMaterializationUnit::IRMaterializationUnit(ExecutionSession &ES, argument
33 MangleAndInterner Mangle(ES, this->TSM.getModuleUnlocked()->getDataLayout());
125 auto &ES = R.getTargetJITDylib().getExecutionSession(); local
129 LLVM_DEBUG(ES.runSessionLocked(
132 LLVM_DEBUG(ES.runSessionLocked([&]() {
137 ObjectLayer::ObjectLayer(ExecutionSession &ES) : ES(ES) {} argument
187 Expected<SymbolFlagsMap> getObjectSymbolFlags(ExecutionSession &ES, argument
207 auto InternedName = ES
[all...]
H A DCompileOnDemandLayer.cpp70 PartitioningIRMaterializationUnit(ExecutionSession &ES, argument
74 : IRMaterializationUnit(ES, MO, std::move(TSM), std::move(K)),
114 ExecutionSession &ES, IRLayer &BaseLayer, LazyCallThroughManager &LCTMgr,
116 : IRLayer(ES, BaseLayer.getManglingOptions()), BaseLayer(BaseLayer),
131 auto &ES = getExecutionSession(); local
157 ES, *getManglingOptions(), std::move(TSM), R.getVModuleKey(),
159 ES.reportError(std::move(Err));
251 auto &ES = getExecutionSession(); local
291 MangleAndInterner Mangle(ES, M.getDataLayout());
312 ES
113 CompileOnDemandLayer( ExecutionSession &ES, IRLayer &BaseLayer, LazyCallThroughManager &LCTMgr, IndirectStubsManagerBuilder BuildIndirectStubsManager) argument
[all...]
H A DIRCompileLayer.cpp16 IRCompileLayer::IRCompileLayer(ExecutionSession &ES, ObjectLayer &BaseLayer, argument
18 : IRLayer(ES, ManglingOpts), BaseLayer(BaseLayer),
H A DIndirectionUtils.cpp65 ES.intern(std::string("cc") + std::to_string(++NextCallbackId));
72 ES.allocateVModule())));
97 ES.reportError(
105 ES.lookup(makeJITDylibSearchOrder(
113 ES.reportError(Sym.takeError());
119 createLocalCompileCallbackManager(const Triple &T, ExecutionSession &ES, argument
129 return CCMgrT::Create(ES, ErrorHandlerAddress);
134 return CCMgrT::Create(ES, ErrorHandlerAddress);
139 return CCMgrT::Create(ES, ErrorHandlerAddress);
143 return CCMgrT::Create(ES, ErrorHandlerAddres
[all...]
H A DObjectLinkingLayer.cpp57 auto &ES = Layer.getExecutionSession(); variable
70 LookupSet.add(ES.intern(KV.first), LookupFlags);
87 ES.lookup(LookupKind::Static, SearchOrder, std::move(LookupSet),
95 auto &ES = Layer.getExecutionSession(); variable
103 auto InternedName = ES.intern(Sym->getName());
122 auto InternedName = ES.intern(Sym->getName());
183 auto &ES = Layer.getExecutionSession(); local
186 if (!MR.getSymbols().count(ES.intern(Sym->getName())))
192 if (!MR.getSymbols().count(ES.intern(Sym->getName())))
200 auto &ES local
208 auto &ES = MR.getTargetJITDylib().getExecutionSession(); local
242 auto &ES = MR.getTargetJITDylib().getExecutionSession(); local
331 ObjectLinkingLayer( ExecutionSession &ES, std::unique_ptr<JITLinkMemoryManager> MemMgr) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DLayer.h38 IRMaterializationUnit(ExecutionSession &ES, const ManglingOptions &MO,
66 IRLayer(ExecutionSession &ES, argument
68 : ES(ES), MO(MO) {}
73 ExecutionSession &getExecutionSession() { return ES; }
106 ExecutionSession &ES; member in class:llvm::orc::IRLayer
128 ObjectLayer(ExecutionSession &ES);
132 ExecutionSession &getExecutionSession() { return ES; }
144 ExecutionSession &ES; member in class:llvm::orc::ObjectLayer
173 Expected<SymbolFlagsMap> getObjectSymbolFlags(ExecutionSession &ES,
[all...]
H A DLegacy.h95 JITSymbolResolverAdapter(ExecutionSession &ES, SymbolResolver &R,
101 ExecutionSession &ES; member in class:llvm::orc::JITSymbolResolverAdapter
143 lookupWithLegacyFn(ExecutionSession &ES, AsynchronousSymbolQuery &Query, argument
155 ES.legacyFailQuery(Query, Addr.takeError());
159 ES.legacyFailQuery(Query, std::move(Err));
178 LegacyLookupFnResolver(ExecutionSession &ES, LegacyLookupFn LegacyLookup, argument
180 : ES(ES), LegacyLookup(std::move(LegacyLookup)),
195 return lookupWithLegacyFn(ES, *Query, Symbols, LegacyLookup);
199 ExecutionSession &ES; member in class:llvm::orc::final
206 createLegacyLookupResolver(ExecutionSession &ES, LegacyLookupFn LegacyLookup, std::function<void(Error)> ErrorReporter) argument
[all...]
H A DLazyReexports.h85 LazyCallThroughManager(ExecutionSession &ES,
103 ExecutionSession &ES; member in class:llvm::orc::LazyCallThroughManager
113 LocalLazyCallThroughManager(ExecutionSession &ES, argument
115 : LazyCallThroughManager(ES, ErrorHandlerAddr, nullptr) {}
135 Create(ExecutionSession &ES, JITTargetAddress ErrorHandlerAddr) { argument
137 new LocalLazyCallThroughManager(ES, ErrorHandlerAddr));
149 createLocalLazyCallThroughManager(const Triple &T, ExecutionSession &ES,
H A DSpeculation.h114 ES.lookup(
121 ES.reportError(std::move(Err));
128 : AliaseeImplTable(Impl), ES(ref), GlobalSpecMap(0) {}
158 ES.lookup(
166 ExecutionSession &getES() { return ES; }
172 ExecutionSession &ES; member in class:llvm::orc::Speculator
182 IRSpeculationLayer(ExecutionSession &ES, IRCompileLayer &BaseLayer, argument
185 : IRLayer(ES, BaseLayer.getManglingOptions()), NextLayer(BaseLayer),
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DPseudoSourceValue.cpp103 const char *ES, const TargetInstrInfo &TII)
104 : CallEntryPseudoSourceValue(ExternalSymbolCallEntry, TII), ES(ES) {}
146 PseudoSourceValueManager::getExternalSymbolCallEntry(const char *ES) { argument
148 ExternalCallEntries[ES];
150 E = std::make_unique<ExternalSymbolPseudoSourceValue>(ES, TII);
102 ExternalSymbolPseudoSourceValue( const char *ES, const TargetInstrInfo &TII) argument
/freebsd-11-stable/sys/dev/hwpmc/
H A Dhwpmc_ppro.h49 #define P6_EVSEL_EVENT_SELECT(ES) ((ES) & 0xFF)
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/Solaris/sys/
H A Dregset.h20 #undef ES macro
/freebsd-11-stable/sys/cddl/dev/dtrace/x86/
H A Dregset.h142 #define ES 2 macro
163 #define ES 1 macro
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DARMWinEH.h314 const support::ulittle32_t ES; member in struct:llvm::ARM::WinEH::EpilogueScope
316 EpilogueScope(const support::ulittle32_t Data) : ES(Data) {}
319 return (ES & 0x0003ffff);
324 return ((ES & 0x000c0000) >> 18);
328 return ((ES & 0x000f0000) >> 18);
333 return ((ES & 0x00f00000) >> 20);
338 return ((ES & 0xff000000) >> 24);
342 return ((ES & 0xffc00000) >> 22);
/freebsd-11-stable/contrib/gdb/gdb/
H A Di386v4-nat.c98 DS, ES, FS, GS,
/freebsd-11-stable/crypto/heimdal/lib/sl/
H A DMakefile.am6 ES = strtok_r.c snprintf.c strdup.c strupr.c getprogname.c
21 nodist_libsl_la_SOURCES = $(ES)
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DPseudoSourceValue.h144 const char *ES; member in class:llvm::ExternalSymbolPseudoSourceValue
147 ExternalSymbolPseudoSourceValue(const char *ES, const TargetInstrInfo &TII);
153 const char *getSymbol() const { return ES; }
193 const PseudoSourceValue *getExternalSymbolCallEntry(const char *ES);

Completed in 196 milliseconds

1234