| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/TargetProcess/ |
| H A D | OrcRPCTPCServer.h | 391 OrcRPCTPCServer(RPCEndpointT &EP) : EP(EP) { in OrcRPCTPCServer() argument 397 EP.template addHandler<orcrpctpc::GetTargetTriple>(*this, in OrcRPCTPCServer() 399 EP.template addHandler<orcrpctpc::GetPageSize>(*this, &ThisT::getPageSize); in OrcRPCTPCServer() 401 EP.template addHandler<orcrpctpc::ReserveMem>(*this, &ThisT::reserveMemory); in OrcRPCTPCServer() 402 EP.template addHandler<orcrpctpc::FinalizeMem>(*this, in OrcRPCTPCServer() 404 EP.template addHandler<orcrpctpc::ReleaseMem>(*this, &ThisT::releaseMemory); in OrcRPCTPCServer() 406 EP.template addHandler<orcrpctpc::WriteUInt8s>( in OrcRPCTPCServer() 408 EP.template addHandler<orcrpctpc::WriteUInt16s>( in OrcRPCTPCServer() 410 EP.template addHandler<orcrpctpc::WriteUInt32s>( in OrcRPCTPCServer() 412 EP.template addHandler<orcrpctpc::WriteUInt64s>( in OrcRPCTPCServer() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/ |
| H A D | OrcRPCTargetProcessControl.h | 284 RPCEndpointT &EP, ErrorReporter ReportError) in OrcRPCTargetProcessControlBase() argument 286 ReportError(std::move(ReportError)), EP(EP) {} in OrcRPCTargetProcessControlBase() 290 RPCEndpointT &getEndpoint() { return EP; } in getEndpoint() 301 auto H = EP.template callB<orcrpctpc::LoadDylib>(DylibPath); in loadDylib() 334 return EP.template callB<orcrpctpc::LookupSymbols>(RR); in lookupSymbols() 346 auto Result = EP.template callB<orcrpctpc::RunMain>(MainFnAddr, Args); in runAsMain() 366 EP.template callB<orcrpctpc::RunWrapper>(WrapperFnAddr, ArgBuffer); in runWrapper() 373 return EP.template callAsync<orcrpctpc::CloseConnection>( in closeConnection() 384 EP.abandonAllPendingResponses(); in closeConnectionAndWait() 394 if (auto TripleOrErr = EP.template callB<orcrpctpc::GetTargetTriple>()) in initializeORCRPCTPCBase() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| H A D | LiveRangeCalc.cpp | 99 auto EP = LR.extendInBlock(Undefs, Indexes->getMBBStartIdx(UseMBB), Use); in extend() local 100 if (EP.first != nullptr || EP.second) in extend() 249 auto EP = LR.extendInBlock(Undefs, Start, End); in findReachingDefs() local 250 VNInfo *VNI = EP.first; in findReachingDefs() 251 FoundUndef |= EP.second; in findReachingDefs() 252 setLiveOutValue(Pred, EP.second ? &UndefVNI : VNI); in findReachingDefs() 258 if (VNI || EP.second) in findReachingDefs()
|
| H A D | SplitKit.cpp | 1376 for (ExtPoint &EP : ExtPoints) { in rewriteAssigned() 1377 LiveInterval &LI = LIS.getInterval(Edit->get(EP.RegIdx)); in rewriteAssigned() 1381 Register Reg = EP.MO.getReg(), Sub = EP.MO.getSubReg(); in rewriteAssigned() 1398 SubLIC.extend(S, EP.Next, 0, Undefs); in rewriteAssigned()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/ObjCARC/ |
| H A D | ObjCARCContract.cpp | 71 ARCRuntimeEntryPoints EP; member in __anon3f46176e0111::ObjCARCContract 152 Function *Decl = EP.get(ARCRuntimeEntryPointKind::RetainRV); in optimizeRetainCall() 186 Function *Decl = EP.get(Class == ARCInstKind::AutoreleaseRV in contractAutorelease() 388 Function *Decl = EP.get(ARCRuntimeEntryPointKind::StoreStrong); in tryToContractReleaseIntoStoreStrong() 524 EP.init(&M); in init() 540 BundledRetainClaimRVs BRV(EP, true); in run()
|
| H A D | ObjCARC.h | 109 : EP(P), ContractPass(ContractPass) {} in BundledRetainClaimRVs() 158 ARCRuntimeEntryPoints &EP; variable
|
| H A D | ObjCARCOpts.cpp | 491 ARCRuntimeEntryPoints EP; member in __anon5b8b86760211::ObjCARCOpt 655 Function *NewDecl = EP.get(ARCRuntimeEntryPointKind::Retain); in OptimizeRetainRVCall() 710 EP.get(ARCRuntimeEntryPointKind::Release), CallArg, "", Inst); in OptimizeInlinedAutoreleaseRVCall() 764 Function *NewDecl = EP.get(ARCRuntimeEntryPointKind::Autorelease); in OptimizeAutoreleaseRVCall() 1036 Function *Decl = EP.get(ARCRuntimeEntryPointKind::Release); in OptimizeIndividualCallImpl() 1758 Function *Decl = EP.get(ARCRuntimeEntryPointKind::Retain); in MoveCalls() 1771 Function *Decl = EP.get(ARCRuntimeEntryPointKind::Release); in MoveCalls() 2108 Function *Decl = EP.get(ARCRuntimeEntryPointKind::Retain); in OptimizeWeakCalls() 2137 Function *Decl = EP.get(ARCRuntimeEntryPointKind::Retain); in OptimizeWeakCalls() 2399 EP.init(&M); in init() [all …]
|
| H A D | ObjCARC.cpp | 107 Function *Func = EP.get(IsRetainRV ? ARCRuntimeEntryPointKind::RetainRV in insertRVCallWithColors()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-jitlink/llvm-jitlink-executor/ |
| H A D | llvm-jitlink-executor.cpp | 149 JITLinkExecutorEndpoint EP(C, true); in main() local 150 OrcRPCTPCServer<JITLinkExecutorEndpoint> Server(EP); in main()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/AST/Interp/ |
| H A D | EvalEmitter.cpp | 179 const Pointer &EP = Ptr.atIndex(I); in emitRetValue() local 181 TYPE_SWITCH(*T, Ok &= ReturnValue<T>(EP.deref<T>(), Slot)); in emitRetValue() 183 Ok &= Composite(ElemTy, EP.narrow(), Slot); in emitRetValue()
|
| /netbsd-src/libexec/getty/ |
| H A D | subr.c | 252 } else if (AP || EP || OP) { in setflags() 256 if (OP && !EP) { in setflags() 261 } else if (EP && !OP) { in setflags() 266 } else if (AP || (EP && OP)) { in setflags()
|
| H A D | gettytab.h | 144 #define EP gettyflags[2].value macro
|
| /netbsd-src/sys/arch/sgimips/gio/ |
| H A D | giodevs.h | 15 #define EP 0x0e /* E-Plex 8-port Ethernet */ macro
|
| H A D | giodevs | 11 product EP 0x0e E-Plex 8-port Ethernet
|
| /netbsd-src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/ |
| H A D | bcm283x-rpi-usb-otg.dtsi | 7 * According to dwc2 the sum of all device EP
|
| /netbsd-src/external/gpl3/binutils/dist/opcodes/ |
| H A D | v850-opc.c | 1028 #define EP (SP + 1) macro 1032 #define LIST12 (EP + 1) 1713 { "sld.b", one (0x0300), one (0x0780), {D7U, EP, R2}, 2, PROCESSOR_ALL }, 1715 { "sld.bu", one (0x0060), one (0x07f0), {D4U, EP, R2_NOTR0}, 2, PROCESSOR_NOT_V850… 1717 { "sld.h", one (0x0400), one (0x0780), {D8_7U,EP, R2}, 2, PROCESSOR_ALL }, 1719 { "sld.hu", one (0x0070), one (0x07f0), {D5_4U,EP, R2_NOTR0}, 2, PROCESSOR_NOT_V850… 1721 { "sld.w", one (0x0500), one (0x0781), {D8_6U,EP, R2}, 2, PROCESSOR_ALL }, 1725 { "sst.b", one (0x0380), one (0x0780), {R2, D7U, EP}, 3, PROCESSOR_ALL }, 1727 { "sst.h", one (0x0480), one (0x0780), {R2, D8_7U,EP}, 3, PROCESSOR_ALL }, 1729 { "sst.w", one (0x0501), one (0x0781), {R2, D8_6U,EP}, 3, PROCESSOR_ALL },
|
| /netbsd-src/external/gpl3/binutils.old/dist/opcodes/ |
| H A D | v850-opc.c | 1028 #define EP (SP + 1) macro 1032 #define LIST12 (EP + 1) 1713 { "sld.b", one (0x0300), one (0x0780), {D7U, EP, R2}, 2, PROCESSOR_ALL }, 1715 { "sld.bu", one (0x0060), one (0x07f0), {D4U, EP, R2_NOTR0}, 2, PROCESSOR_NOT_V850… 1717 { "sld.h", one (0x0400), one (0x0780), {D8_7U,EP, R2}, 2, PROCESSOR_ALL }, 1719 { "sld.hu", one (0x0070), one (0x07f0), {D5_4U,EP, R2_NOTR0}, 2, PROCESSOR_NOT_V850… 1721 { "sld.w", one (0x0500), one (0x0781), {D8_6U,EP, R2}, 2, PROCESSOR_ALL }, 1725 { "sst.b", one (0x0380), one (0x0780), {R2, D7U, EP}, 3, PROCESSOR_ALL }, 1727 { "sst.h", one (0x0480), one (0x0780), {R2, D8_7U,EP}, 3, PROCESSOR_ALL }, 1729 { "sst.w", one (0x0501), one (0x0781), {R2, D8_6U,EP}, 3, PROCESSOR_ALL },
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/ |
| H A D | TypeStreamMerger.cpp | 486 EndPrecompRecord EP; in shouldRemapType() local 488 EP)) in shouldRemapType() 492 PCHSignature.emplace(EP.getSignature()); in shouldRemapType()
|
| /netbsd-src/external/bsd/top/dist/machine/ |
| H A D | m_macosx.c | 84 #define EP(pp, field) ((pp)->kp_eproc . field) macro 87 #define MEP(mp, field) (EP((mp)->kproc, field)) 100 #define PROCSIZE(pp) (EP(pp, e_xsize))
|
| H A D | m_freebsd.c | 154 #define EP(pp, field) ((pp)->kp_eproc . e_##field) macro 159 #define EP(pp, field) ((pp)->ki_##field) macro 624 if (EP(pp, wmesg) != NULL) { in fmt_state() 625 sprintf(status, "%.6s", EP(pp, wmesg)); in fmt_state()
|
| /netbsd-src/external/bsd/unbound/dist/doc/ |
| H A D | CREDITS | 4 and Roy Arends of Nominet. VeriSign and EP.Net funded development of
|
| /netbsd-src/usr.sbin/bootp/bootpd/ |
| H A D | Announce | 53 CDC EP/IX (1.4.3, 2.1.1)
|
| /netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/config/abi/pre/ |
| H A D | gnu.ver | 387 _ZNSdC[12]EP*; 390 _ZNSt14basic_iostreamIwSt11char_traitsIwEEC[12]EP*; 451 _ZNSiC[12]EP*; 468 _ZNSt13basic_istreamIwSt11char_traitsIwEEC[12]EP*; 492 _ZNSoC[12]EP*; 503 _ZNSt13basic_ostreamIwSt11char_traitsIwEEC[12]EP*; 1254 _ZN9__gnu_cxx18stdio_sync_filebufI[cw]St11char_traitsI[cw]EEC[12]EP*; 1720 _ZNSt7__cxx1112basic_stringI[cw]St11char_traitsI[cw]ESaI[cw]EE12_Alloc_hiderC[12]EP[cw]RKS3_; 2008 _ZNSt7__cxx1112basic_stringI[cw]St11char_traitsI[cw]ESaI[cw]EE12_Alloc_hiderC[12]EP[cw]OS3_;
|
| /netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/config/abi/pre/ |
| H A D | gnu.ver | 399 _ZNSdC[12]EP*; 402 _ZNSt14basic_iostreamIwSt11char_traitsIwEEC[12]EP*; 463 _ZNSiC[12]EP*; 480 _ZNSt13basic_istreamIwSt11char_traitsIwEEC[12]EP*; 504 _ZNSoC[12]EP*; 515 _ZNSt13basic_ostreamIwSt11char_traitsIwEEC[12]EP*; 1270 _ZN9__gnu_cxx18stdio_sync_filebufI[cw]St11char_traitsI[cw]EEC[12]EP*; 1741 _ZNSt7__cxx1112basic_stringI[cw]St11char_traitsI[cw]ESaI[cw]EE12_Alloc_hiderC[12]EP[cw]RKS3_; 2044 _ZNSt7__cxx1112basic_stringI[cw]St11char_traitsI[cw]ESaI[cw]EE12_Alloc_hiderC[12]EP[cw]OS3_;
|
| /netbsd-src/external/gpl2/gettext/dist/gettext-runtime/po/ |
| H A D | cs.po | 258 "Pou�it�: %s [P�EP�NA�] [[[TEXTOV�DOM�NA] MSGID ] | [-s [MSGID]...]]\n" 317 "Pou�it�: %s [P�EP�NA�] [[[TEXTOV�DOM�NA] MSGID MSGID-PLURAL PO�ET\n" 486 #~ "Pou�it�: %s [P�EP�NA�] def.po ref.po\n" 612 #~ "Pou�it�: %s [P�EP�NA�] def.po ref.po\n" 659 #~ "Pou�it�: %s [P�EP�NA�] def.po ref.po\n" 797 #~ "Pou�it�: %s [P�EP�NA�] def.po ref.po\n" 842 #~ "Pou�it�: %s [P�EP�NA�] def.po ref.po\n" 912 #~ "Pou�it�: %s [P�EP�NA�] def.po ref.po\n" 1095 #~ "Pou�it�: %s [P�EP�NA�] def.po ref.po\n" 1214 #~ "Pou�it�: %s [P�EP�NA�] [SOUBOR]...\n" [all …]
|