/external/compiler-rt/test/asan/TestCases/Windows/ |
queue_user_work_item_report.cc | 6 HANDLE done; variable 17 SetEvent(done); 22 done = CreateEvent(0, false, false, "job is done"); 23 if (!done) 27 if (WAIT_OBJECT_0 != WaitForSingleObject(done, 10 * 1000))
|
queue_user_work_item.cc | 34 HANDLE done; variable 38 SetEvent(done); 43 done = CreateEvent(0, false, false, "job is done"); 44 if (!done) 47 unsigned wait_result = WaitForSingleObject(done, 10 * 1000); 54 fprintf(stderr, "Done!\n"); 55 // CHECK: Done!
|
bind_io_completion_callback.cc | 35 HANDLE done; variable 41 SetEvent(done); 45 done = CreateEvent(0, false, false, "job is done"); 46 if (!done) 62 if (WAIT_OBJECT_0 != WaitForSingleObject(done, 10 * 1000)) 64 fprintf(stderr, "Done!\n"); 65 // CHECK: Done!
|
/external/libaom/libaom/aom_ports/ |
aom_once.h | 65 static int done; local 68 if (done) return; 75 if (!done) { 77 done = 1; 95 static int done; local 97 if (!done) { 99 done = 1;
|
/external/libvpx/libvpx/vpx_ports/ |
vpx_once.h | 98 static int done; local 101 if (done) return; 108 if (!done) { 110 done = 1; 131 static int done; local 133 if (!done) { 135 done = 1;
|
/external/tensorflow/tensorflow/core/distributed_runtime/ |
test_utils.h | 35 StatusCallback done) override { 36 done(errors::Unimplemented("GetStatusAsync")); 41 StatusCallback done) override { 42 done(errors::Unimplemented("CreateWorkerSessionAsync")); 48 StatusCallback done) override { 49 done(errors::Unimplemented("DeleteWorkerSessionAsync")); 54 StatusCallback done) override { 55 done(errors::Unimplemented("RegisterGraphAsync")); 60 StatusCallback done) override { 61 done(errors::Unimplemented("DeregisterGraphAsync")) [all...] |
worker.h | 49 StatusCallback done) override; 53 StatusCallback done) override; 58 StatusCallback done) override; 62 StatusCallback done) override; 66 StatusCallback done) override; 70 StatusCallback done) override; 78 StatusCallback done) override; 82 StatusCallback done) override; 85 TensorResponse* response, StatusCallback done) override; 88 StatusCallback done) override [all...] |
cancellable_call.h | 39 virtual void IssueCall(const StatusCallback& done) = 0; 41 void Start(const StatusCallback& done) { 46 IssueCall([this, token, done](const Status& s) { 48 done(s); 51 done(errors::Cancelled("RPC Request was cancelled"));
|
/external/tensorflow/tensorflow/core/grappler/optimizers/ |
gpu_swapping_kernels.cc | 29 void ComputeAsync(OpKernelContext* ctx, DoneCallback done) override { 35 done); 43 done); 47 output, [ctx, done](const Status& s) { 49 done(); 62 void ComputeAsync(OpKernelContext* ctx, DoneCallback done) override { 68 done); 72 done); 76 [ctx, done](const Status& s) { 78 done(); [all...] |
/external/libchrome/base/threading/ |
thread_local_unittest.cc | 19 ThreadLocalTesterBase(TLPType* tlp, base::WaitableEvent* done) 21 done_(done) { 32 SetThreadLocal(TLPType* tlp, base::WaitableEvent* done) 33 : ThreadLocalTesterBase(tlp, done), val_(nullptr) {} 50 GetThreadLocal(TLPType* tlp, base::WaitableEvent* done) 51 : ThreadLocalTesterBase(tlp, done), ptr_(nullptr) {} 81 base::WaitableEvent done(WaitableEvent::ResetPolicy::MANUAL, 84 GetThreadLocal getter(&tlp, &done); 89 done.Reset(); 91 done.Wait() [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/test/MC/AMDGPU/ |
exp.s | 8 exp mrt0 off, off, off, off done 9 // SI: exp mrt0 off, off, off, off done ; encoding: [0x00,0x08,0x00,0xf8,0x00,0x00,0x00,0x00] 10 // VI: exp mrt0 off, off, off, off done ; encoding: [0x00,0x08,0x00,0xc4,0x00,0x00,0x00,0x00] 12 exp mrt0 v4, off, off, off done 13 // SI: exp mrt0 v4, off, off, off done ; encoding: [0x01,0x08,0x00,0xf8,0x04,0x00,0x00,0x00] 14 // VI: exp mrt0 v4, off, off, off done ; encoding: [0x01,0x08,0x00,0xc4,0x04,0x00,0x00,0x00] 16 exp mrt0 off, v3, off, off done 17 // SI: exp mrt0 off, v3, off, off done ; encoding: [0x02,0x08,0x00,0xf8,0x00,0x03,0x00,0x00] 18 // VI: exp mrt0 off, v3, off, off done ; encoding: [0x02,0x08,0x00,0xc4,0x00,0x03,0x00,0x00] 20 exp mrt0 off, off, v2, off done [all...] |
/external/tensorflow/tensorflow/core/common_runtime/gpu/ |
gpu_util_platform_specific.cc | 29 StatusCallback done) const { 30 GPUUtil::CopyCPUTensorToGPU(cpu_tensor, this, device, device_tensor, done); 36 StatusCallback done) { 37 GPUUtil::CopyGPUTensorToCPU(device, this, device_tensor, cpu_tensor, done); 43 StatusCallback done) const { 45 done);
|
/art/test/1905-suspend-native/ |
native_suspend.cc | 33 std::atomic<bool> done(false); 37 while (!done.load()) { 47 done.store(true);
|
/art/runtime/arch/mips/ |
memcmp16_mips.S | 26 beqz $a2,done /* 0 length string */ 27 beq $a0,$a1,done /* strings are identical */ 33 bne $t0,$t1,done 38 done: label
|
/art/runtime/arch/mips64/ |
memcmp16_mips64.S | 28 beqz $a2, done /* 0 length string */ 30 beq $a0, $a1, done /* addresses are identical */ 36 bne $t0, $t1, done 44 done: label
|
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/ |
TreeWalker.java | 20 abstract void done(); method in class:TreeWalker
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_init/ |
1-1.c | 42 goto done; 48 goto done; 53 goto done; 58 done:
|
3-1.c | 33 goto done; 45 goto done; 48 goto done; 54 done:
|
/external/skia/tools/sk_app/ios/ |
main_ios.cpp | 27 bool done = false; local 28 while (!done) { 39 done = sk_app::Window_ios::HandleWindowEvent(event); 43 done = true;
|
/external/skqp/tools/sk_app/ios/ |
main_ios.cpp | 27 bool done = false; local 28 while (!done) { 39 done = sk_app::Window_ios::HandleWindowEvent(event); 43 done = true;
|
/build/kati/testcase/ |
define_verbatim.mk | 4 done
|
warning_in_eval.mk | 8 echo done
|
/external/libcxx/test/std/experimental/language.support/support.coroutines/coroutine.handle/coroutine.handle.completion/ |
done.pass.cpp | 18 // bool done() const 35 ASSERT_SAME_TYPE(decltype(H.done()), bool); 36 LIBCPP_ASSERT_NOT_NOEXCEPT(H.done());
|
/external/tensorflow/tensorflow/core/common_runtime/ |
device_resolver_local.cc | 23 std::vector<DeviceLocality>* localities, const StatusCallback& done) { 29 done(s); 34 done(Status::OK()); 40 const StatusCallback& done) { 46 done(s);
|
/external/u-boot/drivers/dfu/ |
dfu_tftp.c | 24 goto done; 29 * Any implicit modification (i.e. done by strsep()) will corrupt 36 goto done; 48 goto done; 55 goto done; 60 done:
|