HomeSort by relevance Sort by last modified time
    Searched defs:work (Results 1 - 25 of 159) sorted by null

1 2 3 4 5 6 7

  /external/parameter-framework/asio-1.10.6/include/asio/impl/
io_service.hpp 110 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/clang/test/CodeGen/
2003-11-01-C99-CompoundLiteral.c 6 struct wait_queue_head_t work = { lock: (spinlock_t) { 0 }, }; local
  /external/grpc-grpc/src/core/lib/iomgr/
pollset.h 47 grpc_error* (*work)(grpc_pollset* pollset, grpc_pollset_worker** worker, member in struct:grpc_pollset_vtable
67 /* Do some work on a pollset.
93 /* Break one polling thread out of polling work for this pollset.
  /external/mesa3d/src/gallium/drivers/swr/
swr_fence.h 46 } work; member in struct:swr_fence
swr_fence_work.cpp 31 * 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.head)
112 struct swr_fence_work *work = CALLOC_STRUCT(swr_fence_work); local
130 struct swr_fence_work *work = CALLOC_STRUCT(swr_fence_work); local
145 struct swr_fence_work *work = CALLOC_STRUCT(swr_fence_work); local
160 struct swr_fence_work *work = CALLOC_STRUCT(swr_fence_work); local
    [all...]
  /external/mesa3d/src/gallium/state_trackers/nine/
threadpool.h 46 threadpool_task_func work; member in struct:threadpool_task
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
Parallel.cpp 72 std::thread([=] { work(); }).detach();
74 work();
94 void work() { function in class:__anon42207::ThreadPoolExecutor
  /external/tensorflow/tensorflow/contrib/tensor_forest/kernels/
reinterpret_string_to_float_op.cc 70 auto work = [&input_data, output_data, num_data](int64 start, int64 end) { variable
76 Shard(num_threads, worker_threads->workers, num_data, 100, work);
  /external/tensorflow/tensorflow/core/kernels/
concat_lib_cpu.h 50 // strings define a different amount of work (generally much more) compared
78 auto work = [&row_size, &sizes, &inputs, &output, &copier, &num_inputs]( local
129 cost_per_unit, work);
dense_update_functor.cc 39 auto work = [&params, &update](int64 start, int64 end) { local
46 work);
48 auto work = [&params, &update](int64 start, int64 end) { local
67 work);
  /external/tensorflow/tensorflow/core/util/
work_sharder_test.cc 36 std::vector<bool> work(total, false);
38 [=, &mu, &num_shards, &num_done_work, &work](int64 start, int64 limit) {
45 EXPECT_FALSE(work[start]); // No duplicate
47 work[start] = true;
96 auto work = std::cref(lambda); local
98 Shard(arg - 1, &threads, total, 1, work);
  /external/tensorflow/tensorflow/lite/experimental/micro/examples/micro_speech/micro_features/
filterbank.h 35 uint64_t work[kFeatureSliceSize + 1]; member in struct:FilterbankState
  /external/tensorflow/tensorflow/lite/experimental/microfrontend/lib/
filterbank.h 38 uint64_t* work; member in struct:FilterbankState
  /frameworks/av/media/codec2/hidl/1.0/vts/functional/common/
media_c2_hidl_test_common.cpp 28 std::unique_ptr<C2Work> work; local
33 work.swap(workQueue.front());
39 ASSERT_NE(work, nullptr);
41 work->input.flags = (C2FrameData::flags_t)flags;
42 work->input.ordinal.timestamp = 0;
43 work->input.ordinal.frameIndex = 0;
44 work->input.buffers.clear();
46 work->input.buffers.emplace_back(nullptr);
48 work->worklets.clear();
49 work->worklets.emplace_back(new C2Worklet)
    [all...]
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p12.cpp 64 void work(int n) { // expected-note{{declared here}} function in struct:s1
  /external/freetype/builds/
toplevel.mk 175 work := $(strip $(shell $(CAT) \ macro
177 work := $(subst |,x,$(work)) macro
178 work := $(subst $(space),|,$(work)) macro
179 work := $(subst \#define|FREETYPE_MAJOR|,$(space),$(work)) macro
180 work := $(word 2,$(work)) macro
181 major := $(subst |,$(space),$(work))
184 work := $(subst \\#define|FREETYPE_MINOR|,$(space),$(work)) macro
185 work := $(word 2,$(work)) macro
189 work := $(subst \\#define|FREETYPE_PATCH|,$(space),$(work)) macro
190 work := $(word 2,$(work)) macro
    [all...]
  /external/libxcam/xcore/
worker.cpp 84 Worker::work (const SmartPtr<Worker::Arguments> &args) function in class:XCam::Worker
104 XCamReturn work (const SmartPtr<Worker::Arguments> &args) { function in class:UnitTestWorker::UnitTestWorker
134 worker->work (new UTArguments);
  /external/ltp/testcases/kernel/syscalls/times/
times03.c 53 static void work(void) function
67 work();
  /external/mesa3d/src/gallium/drivers/nouveau/
nouveau_fence.h 29 struct list_head work; member in struct:nouveau_fence
  /external/zlib/src/contrib/infback9/
inflate9.h 45 unsigned short work[288]; /* work area for code table building */ member in struct:inflate_state
  /art/test/114-ParallelGC/src/
Main.java 80 work(); method
92 private void work() throws Exception { method in class:Main
  /development/samples/ApiDemos/src/com/example/android/apis/app/
JobWorkService.java 45 * This is an example of implementing a {@link JobService} that dispatches work enqueued in
54 * This is a task to dequeue and process work in the background.
66 JobWorkItem work; local
69 * Iterate over available work. Once dequeueWork() returns null, the
70 * job's work queue is empty and the job has stopped, so we can let this
73 while (!(cancelled=isCancelled()) && (work=mParams.dequeueWork()) != null) {
74 String txt = work.getIntent().getStringExtra("name");
75 Log.i("JobWorkService", "Processing work: " + work + ", msg: " + txt);
78 // Process work here... we'll pretend by sleeping
    [all...]
  /external/Reactive-Extensions/RxCpp/Rx/v2/test/operators/
group_by.cpp 31 struct work struct
45 return work{index, first, last};}
48 [](work w) -> int {return w.index % std::thread::hardware_concurrency();},
49 [](work w){return w;}).
51 [=](rxcpp::grouped_observable<int, work> onproc) {
57 [=](work w){
90 std::cout << "pi using group_by and concat to partition the work : " << c << " calls to pi(), " << msElapsed.count() << "ms elapsed, " << c / (msElapsed.count() / 1000.0) << " ops/sec" << std::endl;
96 SCENARIO("range partitioned by dividing work across hardware threads to derive pi", "[!hide][pi][observe_on][long][perf]"){
110 struct work struct
124 return work{index, first, last}
    [all...]
  /external/libchrome/base/threading/
simple_thread.cc 150 // If we were empty, signal that we have work now.
156 Delegate* work = nullptr; local
166 work = delegates_.front();
169 // Signal to any other threads that we're currently out of work.
175 if (!work)
178 work->Run();
  /external/linux-kselftest/tools/testing/selftests/rcutorture/formal/srcu-cbmc/src/
workqueues.h 16 typedef void (*work_func_t)(struct work_struct *work);
40 struct work_struct work; member in struct:delayed_work
43 /* target workqueue and CPU ->timer uses to queue ->work */
49 static inline bool schedule_work(struct work_struct *work)
55 static inline bool schedule_work_on(int cpu, struct work_struct *work)
62 struct work_struct *work)
82 #define INIT_DELAYED_WORK(w, f) INIT_WORK(&(w)->work, (f))
92 .work = __WORK_INITIALIZER((n).work, (f)), \

Completed in 956 milliseconds

1 2 3 4 5 6 7