Searched refs:future (Results 1 - 25 of 340) sorted by relevance

1234567891011>>

/netbsd-current/external/gpl3/gdb/dist/gdbsupport/
H A Dthread-pool.h30 #include <future>
39 /* Simply use the standard future. */
41 using future = std::future<T>;
45 /* A compatibility wrapper for std::future. Once <thread> and
46 <future> are available in all GCC builds -- should that ever happen
53 std::future compatibility methods. The provided methods are chosen
57 class future
61 explicit future (T value)
66 future ()
[all...]
H A Dparallel-for.h50 /* Post the Ith task to a background thread, and store a future for
83 std::vector<gdb::future<T>> m_futures;
110 for (auto &future : m_futures)
113 future.get ();
125 std::vector<gdb::future<void>> m_futures;
/netbsd-current/external/bsd/jemalloc/dist/msvc/test_threads/
H A Dtest_threads_main.cpp2 #include <future>
/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/aarch64/
H A Ddeprecated.l2 [^:]*:4: Warning: system register name 'spsr_svc' is deprecated and may be removed in a future release
3 [^:]*:5: Warning: system register name 'spsr_hyp' is deprecated and may be removed in a future release
/netbsd-current/external/gpl3/gcc.old/dist/gcc/config/mips/
H A Dloongson.h30 loongson.h will be deprecated without further notice at a future date. \
/netbsd-current/external/gpl3/gcc/dist/gcc/config/mips/
H A Dloongson.h30 loongson.h will be deprecated without further notice at a future date. \
/netbsd-current/external/gpl3/gdb.old/dist/gdbsupport/
H A Dthread-pool.h29 #include <future>
59 /* Post a task to the thread pool. A future is returned, which can
61 std::future<void> post_task (std::function<void ()> func);
H A Dthread-pool.cc120 std::future<void>
124 std::future<void> f = t.get_future ();
H A Dparallel-for.h50 std::future<void> futures[local_max];
/netbsd-current/external/gpl3/gdb.old/dist/ld/testsuite/ld-arm/
H A Dbfs-0.s5 future: label
H A Dbranch-futures.d7 0[0-9a-f]+ <future>:
/netbsd-current/sys/dev/ic/
H A Dstireg.h238 void *future; member in struct:sti_ecfg
278 void *future; member in struct:sti_initflags
285 void *future; member in struct:sti_einitin
296 void *future; member in struct:sti_initout
306 void *future; member in struct:sti_mgmtflags
311 void *future; member in struct:sti_mgmtin
316 void *future; member in struct:sti_mgmtout
325 void *future; member in struct:sti_unpmvflags
334 void *future; member in struct:sti_unpmvin
339 void *future; member in struct:sti_unpmvout
350 void *future; member in struct:sti_blkmvflags
359 void *future; member in struct:sti_blkmvin
364 void *future; member in struct:sti_blkmvout
373 void *future; member in struct:sti_testflags
377 void *future; member in struct:sti_testin
383 void *future; member in struct:sti_testout
404 void *future; member in struct:sti_exhdlflags
412 void *future; member in struct:sti_eexhdlin
438 void *future; member in struct:sti_eexhdlout
455 void *future; member in struct:sti_inqconfflags
459 void *future; member in struct:sti_inqconfin
465 void *future; member in struct:sti_einqconfout
500 void *future; member in struct:sti_scmentflags
506 void *future; member in struct:sti_scmentin
511 void *future; member in struct:sti_scmentout
524 void *future; member in struct:sti_dmacflags
533 void *future; member in struct:sti_dmacin
538 void *future; member in struct:sti_dmacout
554 void *future; member in struct:sti_flowcflags
565 void *future; member in struct:sti_flowcin
572 void *future; member in struct:sti_flowcout
581 void *future; member in struct:sti_utimingflags
587 void *future; member in struct:sti_utimingin
593 void *future; member in struct:sti_utimingout
606 void *future; member in struct:sti_pmgrflags
611 void *future; member in struct:sti_pmgrin
616 void *future; member in struct:sti_pmgrout
624 void *future; member in struct:sti_utilflags
635 void *future; member in struct:sti_utilout
[all...]
/netbsd-current/external/apache2/llvm/dist/libcxx/src/
H A Dfuture.cpp1 //===------------------------- future.cpp ---------------------------------===//
13 #include "future"
29 return "future";
50 return string("The future has already been retrieved from "
178 future<void>::future(__assoc_sub_state* __state) function in class:future
184 future<void>::~future()
191 future<void>::get()
218 future<voi
[all...]
/netbsd-current/external/apache2/llvm/dist/clang/INPUTS/
H A Dall-std-headers.cpp66 #if __has_include(<future>)
67 #include <future>
/netbsd-current/external/gpl3/gcc.old/dist/libstdc++-v3/include/backward/
H A Dbackward_warning.h34 may be removed without further notice at a future date. Please use a \
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/include/backward/
H A Dbackward_warning.h34 may be removed without further notice at a future date. Please use a \
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/CodeGen/
H A DConstantInitFuture.h13 // a future in, say, a default argument.
45 /// A "future" for a completed constant initializer, which can be passed
58 /// A future can be explicitly created from a fixed initializer.
60 assert(initializer && "creating null future");
63 /// Is this future non-null?
95 static inline void *getAsVoidPointer(T future) { argument
96 return future.getOpaqueValue();
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DTaskQueue.h25 #include <future>
77 /// Asynchronous submission of a task to the queue. The returned future can be
81 std::future<std::result_of_t<Callable()>> async(Callable &&C) {
88 std::future<ResultTy> F = T.P->get_future();
H A DThreadPool.h20 #include <future>
51 /// Asynchronous submission of a task to the pool. The returned future can be
60 /// Asynchronous submission of a task to the pool. The returned future can be
76 /// Asynchronous submission of a task to the pool. The returned future can be
/netbsd-current/external/mpl/bind/dist/bin/tests/system/shutdown/
H A Dtests_shutdown.py111 for future in as_completed(futures):
113 result = future.result()
120 if futures[future] == "stop":
/netbsd-current/external/gpl3/gcc.old/dist/libstdc++-v3/include/precompiled/
H A Dstdc++.h105 #include <future>
/netbsd-current/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++11/
H A Dfuture.cc0 // future -*- C++ -*-
25 #include <future>
34 { return "future"; }
H A Dcompatibility-thread-c++0x.cc30 #include <future>
47 // <future> export changes
87 // <future> export changes
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/src/c++11/
H A Dfuture.cc0 // future -*- C++ -*-
25 #include <future>
38 { return "future"; }
H A Dcompatibility-thread-c++0x.cc30 #include <future>
47 // <future> export changes
87 // <future> export changes

Completed in 243 milliseconds

1234567891011>>