/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/std/ |
H A D | future | 137 enum class launch 143 constexpr launch operator&(launch __x, launch __y) 145 return static_cast<launch>( 149 constexpr launch operator|(launch __x, launch __y) 151 return static_cast<launch>( 155 constexpr launch operator^(launch __x, launch __y) 157 return static_cast<launch>( 161 constexpr launch operator~(launch __x) 162 { return static_cast<launch>(~static_cast<int>(__x)); } 164 inline launch& operator&=(launch& __x, launch __y) [all …]
|
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/std/ |
H A D | future | 147 enum class launch 153 constexpr launch operator&(launch __x, launch __y) noexcept 155 return static_cast<launch>( 159 constexpr launch operator|(launch __x, launch __y) noexcept 161 return static_cast<launch>( 165 constexpr launch operator^(launch __x, launch __y) noexcept 167 return static_cast<launch>( 171 constexpr launch operator~(launch __x) noexcept 172 { return static_cast<launch>(~static_cast<int>(__x)); } 174 inline launch& operator&=(launch& __x, launch __y) noexcept [all …]
|
/netbsd-src/external/apache2/llvm/dist/libcxx/include/ |
H A D | future | 27 enum class launch 316 async(launch policy, F&& f, Args&&... args); 402 //enum class launch 403 _LIBCPP_DECLARE_STRONG_ENUM(launch) 409 _LIBCPP_DECLARE_STRONG_ENUM_EPILOG(launch) 413 typedef underlying_type<launch>::type __launch_underlying_type; 417 launch 418 operator&(launch __x, launch __y) 420 return static_cast<launch>(static_cast<__launch_underlying_type>(__x) & 426 launch [all …]
|
/netbsd-src/external/gpl3/gcc/dist/libgomp/plugin/ |
H A D | plugin-nvptx.c | 272 const struct targ_fn_launch *launch; member 756 if (targ_fn->launch->dim[i]) in nvptx_exec() 757 dims[i] = targ_fn->launch->dim[i]; in nvptx_exec() 915 GOMP_PLUGIN_fatal (msg, targ_fn->launch->fn, dims[GOMP_DIM_WORKER], in nvptx_exec() 933 GOMP_PLUGIN_fatal (msg, targ_fn->launch->fn, dims[GOMP_DIM_WORKER], in nvptx_exec() 939 __FUNCTION__, targ_fn->launch->fn, dims[GOMP_DIM_GANG], in nvptx_exec() 965 enqueue_launch_event_info.launch_event.kernel_name = targ_fn->launch->fn; in nvptx_exec() 995 targ_fn->launch->fn); in nvptx_exec() 1336 targ_fns->launch = &fn_descs[i]; in GOMP_OFFLOAD_load_image() 1986 const struct targ_fn_launch *launch = tgt_fn_desc->launch; in GOMP_OFFLOAD_run() local [all …]
|
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/xray/tests/unit/ |
H A D | buffer_queue_test.cc | 101 auto T0 = std::async(std::launch::async, F); in TEST() 102 auto T1 = std::async(std::launch::async, F); in TEST() 103 auto T2 = std::async(std::launch::async, [&] { in TEST()
|
/netbsd-src/external/gpl3/gcc.old/dist/libgomp/plugin/ |
H A D | plugin-nvptx.c | 258 const struct targ_fn_launch *launch; member 724 if (targ_fn->launch->dim[i]) in nvptx_exec() 725 dims[i] = targ_fn->launch->dim[i]; in nvptx_exec() 883 GOMP_PLUGIN_fatal (msg, targ_fn->launch->fn, dims[GOMP_DIM_WORKER], in nvptx_exec() 901 GOMP_PLUGIN_fatal (msg, targ_fn->launch->fn, dims[GOMP_DIM_WORKER], in nvptx_exec() 907 __FUNCTION__, targ_fn->launch->fn, dims[GOMP_DIM_GANG], in nvptx_exec() 933 enqueue_launch_event_info.launch_event.kernel_name = targ_fn->launch->fn; in nvptx_exec() 963 targ_fn->launch->fn); in nvptx_exec() 1273 targ_fns->launch = &fn_descs[i]; in GOMP_OFFLOAD_load_image()
|
/netbsd-src/distrib/vax/cdroms/installcd/ |
H A D | etc.ttys | 3 # re-launch the sysinst wrapper script on console
|
/netbsd-src/distrib/sparc64/cdroms/installcd/ |
H A D | etc.ttys | 3 # re-launch the sysinst wrapper script on console
|
/netbsd-src/distrib/amd64/cdroms/ |
H A D | etc.ttys | 3 # re-launch the sysinst wrapper script on console
|
/netbsd-src/distrib/amd64/installimage-bios/ |
H A D | etc.ttys | 3 # re-launch the sysinst wrapper script on console
|
/netbsd-src/distrib/amd64/installimage/ |
H A D | etc.ttys | 3 # re-launch the sysinst wrapper script on console
|
/netbsd-src/distrib/i386/installimage/ |
H A D | etc.ttys | 3 # re-launch the sysinst wrapper script on console
|
/netbsd-src/distrib/evbarm/installimage/ |
H A D | etc.ttys | 3 # re-launch the sysinst wrapper script on console
|
/netbsd-src/distrib/i386/cdroms/ |
H A D | etc.ttys | 3 # re-launch the sysinst wrapper script on console
|
/netbsd-src/sys/arch/acorn32/stand/nbfs/ |
H A D | version | 3 0.01: Just about enough code to launch a kernel from it.
|
/netbsd-src/external/zlib/pigz/dist/ |
H A D | yarn.h | 118 thread *launch(void (*)(void *), void *);
|
/netbsd-src/external/apache2/llvm/dist/clang/docs/ |
H A D | ThinLTO.rst | 27 By default, linkers_ that support ThinLTO are set up to launch 88 As mentioned earlier, by default the linkers will launch the ThinLTO backend 108 By default, the ThinLTO link step will launch as many 110 cores can't be computed for the architecture, then it will launch
|
/netbsd-src/external/apache2/llvm/dist/llvm/examples/OrcV2Examples/LLJITWithRemoteDebugging/ |
H A D | RemoteJITUtils.h | 84 Error launch(ExecutionSession &ES);
|
H A D | RemoteJITUtils.cpp | 183 Error ChildProcessJITLinkExecutor::launch(ExecutionSession &ES) { in launch() function in ChildProcessJITLinkExecutor 200 Error ChildProcessJITLinkExecutor::launch(ExecutionSession &ES) { in launch() function in ChildProcessJITLinkExecutor
|
H A D | LLJITWithRemoteDebugging.cpp | 160 ExitOnErr(Exec->launch(ES)); in connectExecutor()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/ |
H A D | ThreadPool.cpp | 125 auto Future = std::async(std::launch::deferred, std::move(Task)).share(); in asyncImpl()
|
/netbsd-src/external/mit/libuv/dist/docs/src/guide/ |
H A D | processes.rst | 18 workaround can be to launch multiple processes instead, with each process 25 The simplest case is when you simply want to launch a process and know when it 44 ``uv_process_options_t``. To simply launch a process, you need to set only the 103 Passing the flag ``UV_PROCESS_DETACHED`` can be used to launch daemons, or 391 get the number of CPUs so we can launch an equal number of workers. Again it is
|
/netbsd-src/games/battlestar/ |
H A D | command6.c | 47 launch(void) in launch() function
|
/netbsd-src/sys/arch/sandpoint/stand/altboot/ |
H A D | globals.h | 39 void (*launch)(struct brdprop *); member
|
/netbsd-src/external/bsd/unbound/dist/doc/ |
H A D | README.ipset.md | 6 At the final step, I need to install a dns service which would work with ipset well to launch the s…
|