/external/tensorflow/tensorflow/lite/experimental/ruy/ |
D | thread_pool.cc | 37 Ready, // Is not working, has not yet received new work to do. enumerator 66 RUY_DCHECK_EQ(new_state, State::Ready); in ChangeState() 68 case State::Ready: in ChangeState() 73 RUY_DCHECK(new_state == State::Ready || in ChangeState() 80 case State::Ready: in ChangeState() 97 if (new_state == State::Ready) { in ChangeState() 110 ChangeState(State::Ready); in ThreadFuncImpl() 117 return state_.load(std::memory_order_acquire) != State::Ready; in ThreadFuncImpl() 125 ChangeState(State::Ready); in ThreadFuncImpl()
|
/external/scudo/standalone/tests/ |
D | tsd_test.cpp | 120 static bool Ready; variable 126 while (!Ready) in stressCache() 149 Ready = false; in testRegistryThreaded() 162 Ready = true; in testRegistryThreaded() 184 while (!Ready) in stressSharedRegistry() 203 Ready = false; in TEST() 221 Ready = true; in TEST() 233 Ready = false; in TEST() 238 Ready = true; in TEST()
|
D | wrappers_cpp_test.cpp | 82 static bool Ready; variable 88 while (!Ready) in stressNew() 106 Ready = false; in TEST() 112 Ready = true; in TEST()
|
D | secondary_test.cpp | 153 static bool Ready; variable 160 while (!Ready) in performAllocations() 179 Ready = false; in TEST() 187 Ready = true; in TEST()
|
D | primary_test.cpp | 152 static bool Ready; variable 160 while (!Ready) in performAllocations() 179 Ready = false; in testPrimaryThreaded() 191 Ready = true; in testPrimaryThreaded()
|
/external/mesa3d/src/mesa/main/ |
D | performance_query.c | 463 obj->Ready = false; in _mesa_CreatePerfQueryINTEL() 495 if (obj->Used && !obj->Ready) { in _mesa_DeletePerfQueryINTEL() 497 obj->Ready = true; in _mesa_DeletePerfQueryINTEL() 542 if (obj->Used && !obj->Ready) { in _mesa_BeginPerfQueryINTEL() 544 obj->Ready = true; in _mesa_BeginPerfQueryINTEL() 550 obj->Ready = false; in _mesa_BeginPerfQueryINTEL() 586 obj->Ready = false; in _mesa_EndPerfQueryINTEL() 640 obj->Ready = ctx->Driver.IsPerfQueryReady(ctx, obj); in _mesa_GetPerfQueryDataINTEL() 642 if (!obj->Ready) { in _mesa_GetPerfQueryDataINTEL() 647 obj->Ready = true; in _mesa_GetPerfQueryDataINTEL() [all …]
|
D | condrender.c | 197 if (!q->Ready) { in _mesa_check_conditional_render() 204 if (!q->Ready) { in _mesa_check_conditional_render() 211 if (!q->Ready) in _mesa_check_conditional_render() 213 return q->Ready ? (q->Result > 0) : GL_TRUE; in _mesa_check_conditional_render() 217 if (!q->Ready) in _mesa_check_conditional_render() 219 return q->Ready ? (q->Result == 0) : GL_TRUE; in _mesa_check_conditional_render()
|
D | queryobj.c | 58 q->Ready = GL_TRUE; in _mesa_new_query_object() 91 q->Ready = GL_TRUE; in _mesa_end_query() 106 assert(q->Ready); in _mesa_wait_query() 500 q->Ready = GL_FALSE; in _mesa_BeginQueryIndexed() 628 q->Ready = GL_FALSE; in _mesa_QueryCounter() 857 if (!q->Ready) in get_query_object() 865 if (!q->Ready) in get_query_object() 870 if (!q->Ready) in get_query_object() 872 value = q->Ready; in get_query_object()
|
/external/grpc-grpc/src/csharp/Grpc.Core.Tests/ |
D | ChannelConnectivityTest.cs | 66 Assert.AreEqual(ChannelState.Ready, channel.State); in Channel_WaitForStateChangedAsync() 77 Assert.AreEqual(ChannelState.Ready, channel.State); in Channel_TryWaitForStateChangedAsync() 84 Assert.AreEqual(ChannelState.Ready, channel.State); in Channel_ConnectAsync() 87 Assert.AreEqual(ChannelState.Ready, channel.State); in Channel_ConnectAsync()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/WebAssembly/ |
D | WebAssemblyCFGSort.cpp | 145 Ready; in SortBlocks() local 160 Ready.push(DeferredBlock); in SortBlocks() 193 Ready.push(Next); in SortBlocks() 203 if (Ready.empty()) { in SortBlocks() 208 Next = Ready.top(); in SortBlocks() 209 Ready.pop(); in SortBlocks()
|
/external/mesa3d/src/mesa/state_tracker/ |
D | st_cb_perfquery.c | 136 assert(!o->Used || o->Ready); in st_DeletePerfQuery() 153 assert(!o->Used || o->Ready); /* no in-flight query to worry about */ in st_BeginPerfQuery() 171 assert(!o->Ready); in st_WaitPerfQuery() 181 if (o->Ready) in st_IsPerfQueryReady() 201 assert(o->Ready); in st_GetPerfQueryData()
|
D | st_cb_queryobj.c | 57 stq->base.Ready = GL_TRUE; in st_NewQueryObject() 350 assert(!stq->base.Ready); in st_WaitQuery() 352 while (!stq->base.Ready && in st_WaitQuery() 358 q->Ready = GL_TRUE; in st_WaitQuery() 367 assert(!q->Ready); /* we should not get called if Ready is TRUE */ in st_CheckQuery() 368 q->Ready = get_query_result(pipe, stq, FALSE); in st_CheckQuery()
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/ARM/ |
D | cortex-a57-misched-alu.ll | 37 ; CHECK: Ready 43 ; CHECK: Ready 49 ; CHECK: Ready 55 ; CHECK: Ready 61 ; CHECK: Ready
|
/external/gemmlowp/internal/ |
D | multi_thread_gemm.h | 225 Ready, // Is not working, has not yet received new work to do. enumerator 259 assert(new_state == State::Ready); 261 case State::Ready: 266 assert(new_state == State::Ready || 273 case State::Ready: 291 if (new_state == State::Ready) { 300 ChangeState(State::Ready); in ThreadFunc() 308 &state_, State::Ready, &state_cond_, &state_mutex_); in ThreadFunc() 314 ChangeState(State::Ready); in ThreadFunc()
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-mca/ |
D | DispatchStage.cpp | 64 const bool Ready = SC.canBeDispatched(IR, Event); in checkScheduler() local 65 if (!Ready) in checkScheduler() 67 return Ready; in checkScheduler()
|
D | Scheduler.cpp | 287 void Scheduler::promoteToReadyQueue(SmallVectorImpl<InstRef> &Ready) { in promoteToReadyQueue() argument 306 Ready.emplace_back(IID, IS); in promoteToReadyQueue() 347 void Scheduler::updatePendingQueue(SmallVectorImpl<InstRef> &Ready) { in updatePendingQueue() argument 352 promoteToReadyQueue(Ready); in updatePendingQueue()
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | brw_performance_query.c | 125 o->Active ? "Active," : (o->Ready ? "Ready," : "Pending,")); in dump_perf_query_callback() 246 assert(!o->Used || o->Ready); /* no in-flight query to worry about */ in brw_begin_perf_query() 281 assert(!o->Ready); in brw_wait_perf_query() 294 if (o->Ready) in brw_is_perf_query_ready() 324 assert(o->Ready); in brw_get_perf_query_data() 366 assert(!o->Used || o->Ready); in brw_delete_perf_query()
|
D | brw_queryobj.c | 228 query->Base.Ready = true; in brw_new_query_object() 389 query->Base.Ready = true; in brw_wait_query() 418 query->Base.Ready = true; in brw_check_query()
|
/external/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.
|
/external/deqp-deps/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.
|
/external/angle/third_party/spirv-tools/src/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.
|
/external/llvm/lib/Target/WebAssembly/ |
D | WebAssemblyCFGStackify.cpp | 162 Ready; in SortBlocks() local 177 Ready.push(DeferredBlock); in SortBlocks() 210 Ready.push(Next); in SortBlocks() 220 if (Ready.empty()) { in SortBlocks() 225 Next = Ready.top(); in SortBlocks() 226 Ready.pop(); in SortBlocks()
|
/external/mesa3d/src/mesa/drivers/dri/r200/ |
D | radeon_queryobj.c | 67 query->Base.Ready = GL_TRUE; in radeonNewQueryObject() 100 query->Base.Ready = GL_TRUE; in radeonWaitQuery() 177 query->Base.Ready = GL_TRUE; in radeonCheckQuery()
|
/external/mesa3d/src/mesa/drivers/dri/radeon/ |
D | radeon_queryobj.c | 67 query->Base.Ready = GL_TRUE; in radeonNewQueryObject() 100 query->Base.Ready = GL_TRUE; in radeonWaitQuery() 177 query->Base.Ready = GL_TRUE; in radeonCheckQuery()
|
/external/grpc-grpc/src/csharp/Grpc.Core/ |
D | ChannelState.cs | 42 Ready, enumerator
|