HomeSort by: relevance | last modified time | path
    Searched refs:Future (Results 1 - 10 of 10) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Support/
ThreadPool.cpp 76 /// Wrap the Task in a packaged_task to return a future object.
78 auto Future = PackagedTask.get_future();
89 return Future.share();
124 // Get a Future with launch::deferred execution using std::async
125 auto Future = std::async(std::launch::deferred, std::move(Task)).share();
126 // Wrap the future so that both ThreadPool::wait() can operate and the
127 // returned future can be sync'ed on.
128 PackagedTaskTy PackagedTask([Future]() { Future.get(); });
130 return Future;
    [all...]
  /src/external/bsd/libarchive/dist/libarchive/
archive_parse_date.c 737 DSTcorrect(time_t Start, time_t Future)
754 ltime = localtime_s(&tmbuf, &Future) ? NULL : &tmbuf;
756 ltime = localtime_r(&Future, &tmbuf);
758 ltime = localtime(&Future);
761 return (Future - Start) + (StartDay - FutureDay) * HOUR;
  /src/external/apache2/llvm/dist/clang/lib/Analysis/
ThreadSafetyTIL.cpp 51 SExpr* Future::force() {
  /src/lib/libutil/
parsedate.y 858 time_t Future
869 if (localtime_r(&Future, &tm) == NULL)
873 return (Future - Start) + (StartDay - FutureDay) * 60L * 60L;
  /src/external/lgpl3/gmp/dist/mpn/x86/k6/mmx/
logops_n.asm 108 C Future:
  /src/external/apache2/llvm/dist/clang/include/clang/Analysis/Analyses/
ThreadSafetyTIL.h 435 class Future : public SExpr {
443 Future() : SExpr(COP_Future) {}
444 virtual ~Future() = delete;
448 // A lazy rewriting strategy should subclass Future and override this method.
451 // Return the result of this future if it exists, otherwise return null.
454 // Return the result of this future; forcing it if necessary.
468 assert(Result && "Cannot traverse Future that has not been forced.");
473 typename C::CType compare(const Future* E, C& Cmp) const {
ThreadSafetyTraverse.h 529 void printFuture(const Future *E, StreamType &SS) {
  /src/external/lgpl3/gmp/dist/mpn/x86/pentium/mmx/
mul_1.asm 63 C Future:
  /src/external/mpl/bind/dist/bin/tests/system/isctest/
asyncserver.py 127 self._work_done: asyncio.Future | None = None
812 def __init__(self, query: bytes, response: asyncio.Future) -> None:
  /src/external/gpl2/dtc/dist/Documentation/
dtc-paper.tex 58 kernels in the future.
512 \section{Future Work}

Completed in 48 milliseconds