HomeSort by relevance Sort by last modified time
    Searched refs:work_item (Results 1 - 8 of 8) sorted by null

  /external/compiler-rt/test/asan/TestCases/Windows/
queue_user_work_item_report.cc 8 DWORD CALLBACK work_item(LPVOID) { function
14 // CHECK: {{#0 .* work_item.*queue_user_work_item_report.cc}}:[[@LINE-3]]
16 // CHECK: work_item
26 QueueUserWorkItem(&work_item, nullptr, 0);
queue_user_work_item.cc 36 DWORD CALLBACK work_item(LPVOID) { function
46 QueueUserWorkItem(&work_item, nullptr, 0);
  /external/python/cpython3/Lib/concurrent/futures/
process.py 208 work_item = pending_work_items[work_id]
210 if work_item.future.set_running_or_notify_cancel():
212 work_item.fn,
213 work_item.args,
214 work_item.kwargs),
281 for work_id, work_item in pending_work_items.items():
282 work_item.future.set_exception(
289 del work_item
307 work_item = pending_work_items.pop(result_item.work_id, None)
308 # work_item can be None if another process terminated (see above
    [all...]
thread.py 64 work_item = work_queue.get(block=True)
65 if work_item is not None:
66 work_item.run()
68 del work_item
  /external/python/futures/concurrent/futures/
process.py 162 work_item = pending_work_items[work_id]
164 if work_item.future.set_running_or_notify_cancel():
166 work_item.fn,
167 work_item.args,
168 work_item.kwargs),
210 work_item = pending_work_items[result_item.work_id]
214 work_item.future.set_exception(result_item.exception)
216 work_item.future.set_result(result_item.result)
218 del work_item
thread.py 73 work_item = work_queue.get(block=True)
74 if work_item is not None:
75 work_item.run()
77 del work_item
  /external/fio/t/
read-to-pipe-async.c 86 struct work_item { struct
123 static struct work_item *find_seq(struct writer_thread *w, unsigned int seq)
125 struct work_item *work;
132 work = flist_entry(entry, struct work_item, list);
219 static int write_work(struct work_item *work)
242 struct work_item *work;
270 static void reader_work(struct work_item *work)
310 struct work_item *next = NULL;
328 next = flist_entry(entry, struct work_item, list);
355 struct work_item *work
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
sparse_matmul_op.cc     [all...]

Completed in 230 milliseconds