/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 …]
|
D | mtypes.h | 2078 unsigned Ready:1; /**< result is ready? */ member 2359 GLboolean Ready; /**< result is ready? */ member
|
/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/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/typescript/src/harness/ |
D | evaluatorImpl.ts | 205 Ready, enumerator 245 if (module.state < SystemModuleState.Ready) { 248 if (module.state < SystemModuleState.Ready) { 264 module.state = SystemModuleState.Ready; 392 … if (dependency.hasExports || dependency.state === SystemModuleState.Ready) { 411 case SystemModuleState.Ready: // module is done evaluating, nothing to do 451 module.state = SystemModuleState.Ready;
|
/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/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/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/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/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()
|
D | Core.h | 705 Ready = 0x3f /// Ready and safe for clients to access. enumerator 1173 SymbolState RequiredState = SymbolState::Ready,
|
/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";
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Orc/ |
D | Core.cpp | 303 case SymbolState::Ready: in operator <<() 970 (OtherSymI->second.getState() != SymbolState::Ready && in addDependencies() 1181 DependantSymEntry.setState(SymbolState::Ready); in emit() 1183 for (auto &Q : DependantMI.takeQueriesMeeting(SymbolState::Ready)) { in emit() 1198 SymI->second.setState(SymbolState::Ready); in emit() 1199 for (auto &Q : MI.takeQueriesMeeting(SymbolState::Ready)) { in emit() 2146 SymbolState::Ready, NoDependenciesToRegister)) { in lookup()
|
/third_party/mesa3d/src/gallium/drivers/iris/ |
D | iris_performance_query.c | 221 if (perf_query->base.Ready) in iris_is_perf_query_ready()
|
/third_party/skia/third_party/externals/opengl-registry/extensions/AMD/ |
D | AMD_shader_trinary_minmax.txt | 135 2 10/01/2012 gsellers Update to GLSL 4.30. Ready to post.
|
D | AMD_vertex_shader_layer.txt | 241 2 15/03/2012 gsellers Ready for posting in repository.
|
/third_party/openGLES/extensions/AMD/ |
D | AMD_shader_trinary_minmax.txt | 135 2 10/01/2012 gsellers Update to GLSL 4.30. Ready to post.
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/ |
D | CONTRIBUTING.md | 74 bottom, such as "Ready for review" or "Please take a look" (or "PTAL"). This
|
/third_party/spirv-tools/ |
D | CONTRIBUTING.md | 74 bottom, such as "Ready for review" or "Please take a look" (or "PTAL"). This
|
/third_party/skia/third_party/externals/spirv-tools/ |
D | CONTRIBUTING.md | 74 bottom, such as "Ready for review" or "Please take a look" (or "PTAL"). This
|