/third_party/mesa3d/src/mesa/main/ |
D | performance_query.c | 515 obj->Ready = false; in _mesa_CreatePerfQueryINTEL() 547 if (obj->Used && !obj->Ready) { in _mesa_DeletePerfQueryINTEL() 549 obj->Ready = true; in _mesa_DeletePerfQueryINTEL() 594 if (obj->Used && !obj->Ready) { in _mesa_BeginPerfQueryINTEL() 596 obj->Ready = true; in _mesa_BeginPerfQueryINTEL() 602 obj->Ready = false; in _mesa_BeginPerfQueryINTEL() 638 obj->Ready = false; in _mesa_EndPerfQueryINTEL() 692 if (!obj->Ready) in _mesa_GetPerfQueryDataINTEL() 693 obj->Ready = ctx->pipe->is_intel_perf_query_ready(ctx->pipe, in _mesa_GetPerfQueryDataINTEL() 696 if (!obj->Ready) { in _mesa_GetPerfQueryDataINTEL() [all …]
|
D | condrender.c | 257 if (!q->Ready) { in _mesa_check_conditional_render() 264 if (!q->Ready) { in _mesa_check_conditional_render() 271 if (!q->Ready) in _mesa_check_conditional_render() 273 return q->Ready ? (q->Result > 0) : GL_TRUE; in _mesa_check_conditional_render() 277 if (!q->Ready) in _mesa_check_conditional_render() 279 return q->Ready ? (q->Result == 0) : GL_TRUE; in _mesa_check_conditional_render()
|
D | queryobj.c | 51 q->Ready = GL_TRUE; in new_query_object() 342 assert(!q->Ready); in _mesa_wait_query() 344 while (!q->Ready && in _mesa_wait_query() 350 q->Ready = GL_TRUE; in _mesa_wait_query() 358 assert(!q->Ready); /* we should not get called if Ready is TRUE */ in _mesa_check_query() 359 q->Ready = get_query_result(pipe, q, FALSE); in _mesa_check_query() 787 q->Ready = GL_FALSE; in _mesa_BeginQueryIndexed() 915 q->Ready = GL_FALSE; in _mesa_QueryCounter() 1140 if (!q->Ready) in get_query_object() 1148 if (!q->Ready) in get_query_object() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MCA/Stages/ |
D | ExecuteStage.cpp | 56 SmallVector<InstRef, 4> Ready; in issueInstruction() local 58 HWS.issueInstruction(IR, Used, Pending, Ready); in issueInstruction() 75 for (const InstRef &I : Ready) in issueInstruction() 97 SmallVector<InstRef, 4> Ready; in cycleStart() local 99 HWS.cycleEvent(Freed, Executed, Pending, Ready); in cycleStart() 116 for (const InstRef &IR : Ready) in cycleStart() 242 HWInstructionEvent(HWInstructionEvent::Ready, IR)); in notifyInstructionReady()
|
/third_party/rust/crates/signal-hook/signal-hook-async-std/src/ |
D | lib.rs | 112 Poll::Ready(Ok(num_read)) => Ok(num_read > 0), in has_signals() 113 Poll::Ready(Err(error)) => Err(error), in has_signals() 123 PollResult::Signal(sig) => Poll::Ready(Some(sig)), in poll_next() 124 PollResult::Closed => Poll::Ready(None), in poll_next()
|
/third_party/rust/crates/signal-hook/signal-hook-tokio/src/ |
D | lib.rs | 139 Poll::Ready(Ok(())) => Ok(true), in has_signals() 140 Poll::Ready(Err(error)) => Err(error), in has_signals() 152 PollResult::Signal(sig) => Poll::Ready(Some(sig)), in poll_next() 153 PollResult::Closed => Poll::Ready(None), in poll_next()
|
/third_party/rust/crates/tracing/examples/examples/ |
D | tower-load.rs | 28 future::{self, Ready}, 93 type Future = Ready<Result<Self::Response, Self::Error>>; 96 Poll::Ready(Ok(())) in poll_ready() 178 type Future = Ready<Result<Self::Response, Self::Error>>; 181 Poll::Ready(Ok(())) in poll_ready() 207 type Future = Ready<Result<Self::Response, Self::Error>>; 210 Poll::Ready(Ok(())) in poll_ready() 227 Poll::Ready(Ok(())) in poll_ready()
|
D | tower-server.rs | 33 type Future = future::Ready<Result<Self::Response, Self::Error>>; 74 type Future = future::Ready<Result<Self::Response, Self::Error>>;
|
/third_party/rust/crates/signal-hook/signal-hook-mio/tests/ |
D | mio_0_6.rs | 8 use mio_0_6::{Events, Poll, PollOpt, Ready, Token}; 23 poll.register(&signals, token, Ready::readable(), PollOpt::level()) in mio_wakeup() 53 poll.register(&signals, token, Ready::readable(), PollOpt::level()) in mio_multiple_signals() 84 poll.register(&signals, token, Ready::readable(), PollOpt::level()) in mio_parallel_multiple()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/ |
D | WebAssemblyCFGSort.cpp | 271 Ready; in sortBlocks() local 289 Ready.push(DeferredBlock); in sortBlocks() 323 Ready.push(Next); in sortBlocks() 333 if (Ready.empty()) { in sortBlocks() 338 Next = Ready.top(); in sortBlocks() 339 Ready.pop(); in sortBlocks()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MCA/HardwareUnits/ |
D | Scheduler.h | 149 bool promoteToReadySet(SmallVectorImpl<InstRef> &Ready); 207 SmallVectorImpl<InstRef> &Ready); 228 SmallVectorImpl<InstRef> &Ready);
|
/third_party/skia/third_party/externals/spirv-tools/docs/ |
D | projects.md | 42 * `Ready to start`: Issues which represent work we'd like to do, and which 49 from `Ready to start` to `In progress`. 50 * `In progress`: Issues which were in `Ready to start` but which have been 65 We are considering prioritizing cards in the `Ideas` and `Ready to start` 79 Move those Issues into the `Ready to start` column when they become unblocked.
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/docs/ |
D | projects.md | 42 * `Ready to start`: Issues which represent work we'd like to do, and which 49 from `Ready to start` to `In progress`. 50 * `In progress`: Issues which were in `Ready to start` but which have been 65 We are considering prioritizing cards in the `Ideas` and `Ready to start` 79 Move those Issues into the `Ready to start` column when they become unblocked.
|
/third_party/spirv-tools/docs/ |
D | projects.md | 42 * `Ready to start`: Issues which represent work we'd like to do, and which 49 from `Ready to start` to `In progress`. 50 * `In progress`: Issues which were in `Ready to start` but which have been 65 We are considering prioritizing cards in the `Ideas` and `Ready to start` 79 Move those Issues into the `Ready to start` column when they become unblocked.
|
/third_party/flutter/skia/third_party/externals/spirv-tools/ |
D | projects.md | 42 * `Ready to start`: Issues which represent work we'd like to do, and which 49 from `Ready to start` to `In progress`. 50 * `In progress`: Issues which were in `Ready to start` but which have been 65 We are considering prioritizing cards in the `Ideas` and `Ready to start` 79 Move those Issues into the `Ready to start` column when they become unblocked.
|
/third_party/rust/crates/signal-hook/signal-hook-mio/src/ |
D | lib.rs | 344 use mio::{Poll, PollOpt, Ready, Token}; 354 interest: Ready, in register() argument 364 interest: Ready, in reregister() argument
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MCA/HardwareUnits/ |
D | Scheduler.cpp | 119 bool Scheduler::promoteToReadySet(SmallVectorImpl<InstRef> &Ready) { in promoteToReadySet() argument 143 Ready.emplace_back(IR); in promoteToReadySet() 267 SmallVectorImpl<InstRef> &Ready) { in cycleEvent() argument 284 promoteToReadySet(Ready); in cycleEvent()
|
/third_party/rust/crates/tracing/tracing-mock/src/ |
D | lib.rs | 109 Poll::Ready(value) in poll() 144 if let Poll::Ready(v) = task.poll() { in block_on_future()
|
/third_party/flutter/flutter/packages/flutter/test/widgets/ |
D | transitions_test.dart | 15 child: Text('Ready', textDirection: TextDirection.ltr), 160 child: const Text('Ready', textDirection: TextDirection.ltr), 184 child: const Text('Ready', textDirection: TextDirection.ltr), 206 child: const Text('Ready'), 237 child: const Text('Ready'),
|
/third_party/gstreamer/gstreamer/docs/random/matth/ |
D | scheduling.txt | 99 to sleep (Paused, Ready). 110 Paused to Ready) its state (stack) will be wiped out. If it wants to 124 + Ready -> Paused: reset the cothread pointers foreach cothread in the
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/Orc/ |
D | Speculation.h | 118 SymbolLookupSet(LookupPair.second), SymbolState::Ready, in launchCompile() 162 SymbolState::Ready, OnReadyFixUp, NoDependenciesToRegister); in registerSymbols()
|
/third_party/flutter/engine/flutter/runtime/ |
D | dart_isolate.cc | 293 phase_ = Phase::Ready; in PrepareForRunningFromPrecompiledCode() 384 phase_ = Phase::Ready; in PrepareForRunningFromKernel() 476 if (phase_ != Phase::Ready) { in Run() 506 if (phase_ != Phase::Ready) { in RunFromLibrary()
|
D | dart_lifecycle_unittests.cc | 90 if (isolate->GetPhase() != DartIsolate::Phase::Ready) { in CreateAndRunRootIsolate()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MCA/ |
D | HWEventListener.h | 43 Ready, enumerator
|
/third_party/openh264/codec/build/iOS/enc/encDemo/encDemo/ |
D | ViewController.m | 48 statusText_.text = @"Status: Ready for Go";
|