Searched defs:work (Results 1 - 25 of 116) sorted by relevance

12345

/external/clang/test/CodeGen/
H A D2003-11-01-C99-CompoundLiteral.c6 struct wait_queue_head_t work = { lock: (spinlock_t) { 0 }, }; local
/external/parameter-framework/asio/include/asio/impl/
H A Dio_service.hpp110 inline io_service::work::work(asio::io_service& io_service) function in class:asio::io_service::work
116 inline io_service::work::work(const work& other) function in class:asio::io_service::work
122 inline io_service::work::~work()
127 inline asio::io_service& io_service::work::get_io_service()
/external/parameter-framework/asio-1.10.6/include/asio/impl/
H A Dio_service.hpp110 inline io_service::work::work(asio::io_service& io_service) function in class:asio::io_service::work
116 inline io_service::work::work(const work& other) function in class:asio::io_service::work
122 inline io_service::work::~work()
127 inline asio::io_service& io_service::work::get_io_service()
/external/mesa3d/src/gallium/drivers/swr/
H A Dswr_fence.h46 } work; member in struct:swr_fence
H A Dswr_fence_work.cpp31 * Called by swr_fence_cb to complete the work queue
36 struct swr_fence_work *work, *tmp; local
38 if (fence->work.head.next) {
39 work = fence->work.head.next;
40 /* Immediately clear the head so any new work gets added to a new work
42 p_atomic_set(&fence->work.head.next, 0);
43 p_atomic_set(&fence->work.tail, &fence->work
60 swr_add_fence_work(struct pipe_fence_handle *fh, struct swr_fence_work *work) argument
82 swr_free_cb(struct swr_fence_work *work) argument
91 swr_delete_vs_cb(struct swr_fence_work *work) argument
97 swr_delete_fs_cb(struct swr_fence_work *work) argument
106 struct swr_fence_work *work = CALLOC_STRUCT(swr_fence_work); local
124 struct swr_fence_work *work = CALLOC_STRUCT(swr_fence_work); local
139 struct swr_fence_work *work = CALLOC_STRUCT(swr_fence_work); local
[all...]
/external/mesa3d/src/gallium/state_trackers/nine/
H A Dthreadpool.c50 /* Block (dropping the lock) until new work arrives for us. */
66 /* Call the task's work func. */
68 task->work(task->data);
121 * Queues a request for the work function to be asynchronously executed by the
124 * The work func will get the "data" argument as its parameter -- any
125 * communication between the caller and the work function will occur through
128 * If there is an error, the work function is called immediately and NULL is
133 threadpool_task_func work, void *data)
138 work(data);
144 work(dat
132 _mesa_threadpool_queue_task(struct threadpool *pool, threadpool_task_func work, void *data) argument
[all...]
H A Dthreadpool.h46 threadpool_task_func work; member in struct:threadpool_task
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
H A Dp12.cpp64 void work(int n) { // expected-note{{declared here}} function in struct:s1
/external/ltp/testcases/kernel/syscalls/times/
H A Dtimes03.c53 static void work(void) function
67 work();
/external/mesa3d/src/gallium/drivers/nouveau/
H A Dnouveau_fence.h29 struct list_head work; member in struct:nouveau_fence
H A Dnouveau_fence.c41 LIST_INITHEAD(&(*fence)->work);
49 struct nouveau_fence_work *work, *tmp; local
51 LIST_FOR_EACH_ENTRY_SAFE(work, tmp, &fence->work, list) {
52 work->func(work->data);
53 LIST_DEL(&work->list);
54 FREE(work);
103 if (!LIST_IS_EMPTY(&fence->work)) {
104 debug_printf("WARNING: deleting fence with work stil
256 struct nouveau_fence_work *work; local
[all...]
/external/zlib/src/contrib/infback9/
H A Dinflate9.h45 unsigned short work[288]; /* work area for code table building */ member in struct:inflate_state
/external/libchrome/base/threading/
H A Dsimple_thread.cc142 // If we were empty, signal that we have work now.
148 Delegate* work = NULL; local
158 work = delegates_.front();
161 // Signal to any other threads that we're currently out of work.
167 if (!work)
170 work->Run();
H A Dsimple_thread.h149 // convenient when you have a lot of small work that you want done
150 // multi-threaded, but don't want to spawn a thread for each small bit of work.
152 // You just call AddWork() to add a delegate to the list of work to be done.
153 // JoinAll() will make sure that all outstanding work is processed, and wait
164 // Start up all of the underlying threads, and start processing work if we
168 // Make sure all outstanding work is finished, and wait for and destroy all
174 void AddWork(Delegate* work, int repeat_count);
175 void AddWork(Delegate* work) { argument
176 AddWork(work, 1);
188 WaitableEvent dry_; // Not signaled when there is no work t
[all...]
/external/ltp/testcases/realtime/func/thread_clock/
H A Dtc-2.c80 void work(void) function
98 work();
/external/parameter-framework/asio/include/asio/
H A Dio_service.hpp110 * @par Stopping the io_service from running out of work
113 * returning when there is no more work to do. For example, the io_service may
116 * creating an object of type asio::io_service::work:
119 * asio::io_service::work work(io_service);
128 * be allowed to finish normally, the work object may be explicitly destroyed.
131 * auto_ptr<asio::io_service::work> work(
132 * new asio::io_service::work(io_service));
134 * work
605 class io_service::work class in class:asio::io_service
[all...]
/external/parameter-framework/asio-1.10.6/include/asio/
H A Dio_service.hpp110 * @par Stopping the io_service from running out of work
113 * returning when there is no more work to do. For example, the io_service may
116 * creating an object of type asio::io_service::work:
119 * asio::io_service::work work(io_service);
128 * be allowed to finish normally, the work object may be explicitly destroyed.
131 * auto_ptr<asio::io_service::work> work(
132 * new asio::io_service::work(io_service));
134 * work
605 class io_service::work class in class:asio::io_service
[all...]
/external/skia/src/core/
H A DSkExecutor.cpp32 // The default default SkExecutor is an SkTrivialExecutor, which just runs the work right away.
34 void add(std::function<void(void)> work) override {
35 work();
49 // An SkThreadPool is an executor that runs work on a fixed pool of OS threads.
70 virtual void add(std::function<void(void)> work) override {
71 // Add some work to our pile of work to do.
74 fWork.emplace_back(std::move(work));
81 // If there is work waiting, do it.
88 // This method should be called only when fWorkAvailable indicates there's work t
90 std::function<void(void)> work; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/hidl/1.0/
H A Dhidl_return_util.h34 ObjT* obj, SupplicantStatusCode status_code_if_invalid, WorkFuncT&& work,
38 hidl_cb((obj->*work)(std::forward<Args>(args)...));
49 ObjT* obj, SupplicantStatusCode status_code_if_invalid, WorkFuncT&& work,
55 (obj->*work)(std::forward<Args>(args)...);
73 ObjT* obj, SupplicantStatusCode status_code_if_invalid, WorkFuncT&& work,
80 (obj->*work)(std::forward<Args>(args)...);
33 validateAndCall( ObjT* obj, SupplicantStatusCode status_code_if_invalid, WorkFuncT&& work, const std::function<void(const SupplicantStatus&)>& hidl_cb, Args&&... args) argument
48 validateAndCall( ObjT* obj, SupplicantStatusCode status_code_if_invalid, WorkFuncT&& work, const std::function<void(const SupplicantStatus&, ReturnT)>& hidl_cb, Args&&... args) argument
72 validateAndCall( ObjT* obj, SupplicantStatusCode status_code_if_invalid, WorkFuncT&& work, const std::function<void(const SupplicantStatus&, ReturnT1, ReturnT2)>& hidl_cb, Args&&... args) argument
/external/apache-commons-math/src/main/java/org/apache/commons/math/estimation/
H A DLevenbergMarquardtEstimator.java4 * this work for additional information regarding copyright ownership.
29 * <p>This implementation <em>should</em> work even for over-determined systems
493 * @param work1 work array
494 * @param work2 work array
495 * @param work3 work array
670 * @param work work array
673 double[] lmDiag, double[] work) {
683 work[j] = qy[j];
725 final double temp = cos * work[
672 determineLMDirection(double[] qy, double[] diag, double[] lmDiag, double[] work) argument
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/general/
H A DLevenbergMarquardtOptimizer.java4 * this work for additional information regarding copyright ownership.
32 * <p>This implementation <em>should</em> work even for over-determined systems
500 * @param work1 work array
501 * @param work2 work array
502 * @param work3 work array
671 * @param work work array
674 double[] lmDiag, double[] work) {
684 work[j] = qy[j];
726 final double temp = cos * work[
673 determineLMDirection(double[] qy, double[] diag, double[] lmDiag, double[] work) argument
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/rank/
H A DPercentile.java4 * this work for additional information regarding copyright ownership.
275 double[] work;
278 work = getDataRef();
281 work = new double[length];
282 System.arraycopy(values, begin, work, 0, length);
288 return select(work, pivotsHeap, 0);
291 return select(work, pivotsHeap, length - 1);
293 double lower = select(work, pivotsHeap, intPos - 1);
294 double upper = select(work, pivotsHeap, intPos);
299 * Select the k<sup>th</sup> smallest element from work arra
309 select(final double[] work, final int[] pivotsHeap, final int k) argument
359 medianOf3(final double[] work, final int begin, final int end) argument
396 partition(final double[] work, final int begin, final int end, final int pivot) argument
433 insertionSort(final double[] work, final int begin, final int end) argument
[all...]
/external/boringssl/src/crypto/curve25519/
H A Dx25519-x86_64.c39 void x25519_x86_64_ladderstep(fe25519 *work);
201 fe25519 work[5]; local
203 work[0] = *xr;
204 fe25519_setint(work + 1, 1);
205 fe25519_setint(work + 2, 0);
206 work[3] = *xr;
207 fe25519_setint(work + 4, 1);
218 x25519_x86_64_work_cswap(work + 1, swap);
219 x25519_x86_64_ladderstep(work);
225 *xr = work[
[all...]
/external/fio/
H A Drate-submit.c13 struct workqueue_work *work)
15 struct io_u *io_u = container_of(work, struct io_u, work);
12 io_workqueue_fn(struct submit_worker *sw, struct workqueue_work *work) argument
H A Dworkqueue.c101 void workqueue_enqueue(struct workqueue *wq, struct workqueue_work *work) argument
109 flist_add_tail(&work->list, &sw->work_list);
120 struct workqueue_work *work; local
123 work = flist_first_entry(list, struct workqueue_work, list);
124 flist_del_init(&work->list);
125 wq->ops.fn(sw, work);

Completed in 1335 milliseconds

12345