HomeSort by relevance Sort by last modified time
    Searched refs:Ready (Results 1 - 25 of 37) sorted by null

1 2

  /external/mesa3d/src/mesa/state_tracker/
st_cb_queryobj.c 56 stq->base.Ready = GL_TRUE;
152 /* this function should only be called if we don't have a ready result */
153 assert(!stq->base.Ready);
155 while (!stq->base.Ready &&
164 q->Ready = GL_TRUE;
173 assert(!q->Ready); /* we should not get called if Ready is TRUE */
174 q->Ready = pipe->get_query_result(pipe, stq->pq, FALSE, (void*)&q->Result);
  /external/mesa3d/src/mesa/main/
condrender.c 135 if (!q->Ready) {
142 if (!q->Ready)
144 return q->Ready ? (q->Result > 0) : GL_TRUE;
queryobj.c 56 q->Ready = GL_TRUE; /* correct, see spec */
80 q->Ready = GL_TRUE;
95 assert(q->Ready);
100 * Check if a query results are ready. Software driver fallback.
342 q->Ready = GL_FALSE;
448 q->Ready = GL_FALSE;
559 if (!q->Ready)
577 if (!q->Ready)
579 *params = q->Ready;
610 if (!q->Ready)
    [all...]
  /external/valgrind/memcheck/tests/
vcpu_fbench.stdout.exp 0 Ready to begin John Walker's floating point accuracy
  /external/pdfium/core/fpdfapi/page/
cpdf_contentparser.h 24 enum ParseStatus { Ready, ToBeContinued, Done };
cpdf_contentparser.cpp 25 : m_Status(Ready),
40 if (m_Status != Ready || !pPage || !pPage->m_pDocument ||
  /external/pdfium/core/fpdfapi/render/
cpdf_progressiverenderer.h 28 Ready, // FPDF_RENDER_READER
cpdf_progressiverenderer.cpp 21 : m_Status(Ready),
34 if (!m_pContext || !m_pDevice || m_Status != Ready) {
  /external/gemmlowp/internal/
multi_thread_gemm.h 218 Ready, // Is not working, has not yet received new work to do.
246 assert(new_state == State::Ready);
248 case State::Ready:
253 assert(new_state == State::Ready ||
261 if (state_ == State::Ready) {
272 ChangeState(State::Ready);
277 // In the 'Ready' state, we have nothing to do but to wait until
280 &state_, State::Ready, &state_cond_, &state_mutex_);
285 // Got work to do! So do it, and then revert to 'Ready' state.
291 ChangeState(State::Ready);
    [all...]
  /external/pdfium/xfa/fxfa/parser/
cscript_layoutpseudomodel.h 27 void Ready(CFXJSE_Value* pValue, bool bSetting, XFA_ATTRIBUTE eAttribute);
cscript_layoutpseudomodel.cpp 34 void CScript_LayoutPseudoModel::Ready(CFXJSE_Value* pValue,
487 ThrowException(L"Unable to set ready value.");
  /external/llvm/lib/Target/WebAssembly/
WebAssemblyCFGStackify.cpp 154 // We use two ready lists; Preferred and Ready. Preferred has recently
156 // order. Ready has the remaining ready blocks.
162 Ready;
177 Ready.push(DeferredBlock);
187 // Decrement the predecessor count. If it's now zero, it's ready.
210 Ready.push(Next);
217 // general Ready list.
220 if (Ready.empty())
    [all...]
  /external/pdfium/fpdfsdk/
fpdf_progressive.cpp 21 static_assert(CPDF_ProgressiveRenderer::Ready == FPDF_RENDER_READER,
22 "CPDF_ProgressiveRenderer::Ready value mismatch");
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_queryobj.c 67 query->Base.Ready = GL_TRUE;
100 query->Base.Ready = GL_TRUE;
177 query->Base.Ready = GL_TRUE;
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_queryobj.c 232 query->Base.Ready = true;
374 query->Base.Ready = true;
383 query->Base.Ready = true;
  /external/syslinux/gpxe/src/arch/i386/interface/pxe/
pxe_file.c 111 * @ret s_PXENV_FILE_SELECT::Ready Indication of readiness
116 int ready; local
122 if ( ( ready = select ( &fdset, 0 ) ) < 0 ) {
123 file_select->Status = PXENV_STATUS ( ready );
127 file_select->Ready = ( ready ? RDY_READ : 0 );
142 * @ret s_PXENV_FILE_READ::Ready Indication of readiness
  /device/linaro/bootloader/edk2/SourceLevelDebugPkg/Library/DebugCommunicationLibUsb3/
DebugCommunicationLibUsb3Common.c 18 // The global variable which can be used after memory is ready.
619 Handle->Ready = TRUE;
719 // reset port status this time, then try to check if debug device is ready again.
738 if (!Handle->Ready) {
784 // If Handle is NULL, it means memory is ready for use.
865 // If Handle is NULL, it means memory is ready for use.
937 // If Handle is NULL, it means memory is ready for use.
DebugCommunicationLibUsb3Internal.h 459 // The flag indicates debug device is ready
464 // The flag indicates debug device is ready
466 BOOLEAN Ready;
  /external/clang/include/clang/AST/
ExprCXX.h     [all...]
  /external/mesa3d/src/mesa/drivers/x11/
xm_dd.c 788 q->Base.Ready = GL_TRUE;
831 q->Ready = GL_TRUE;
  /prebuilts/go/darwin-x86/src/runtime/
time.go 80 // Ready the goroutine arg.
chan.go 47 // (in particular, do not ready a G), as this can deadlock
155 // not ready for sending. Each of these observations is a single word-sized read
157 // Because a closed channel cannot transition from 'ready for sending' to
158 // 'not ready for sending', even if the channel is closed between the two observations,
160 // and not ready for sending. We behave as if we observed the channel at that moment,
164 // ready for sending and then observe that it is not closed, that implies that the
383 // Ready all Gs now that we've dropped the channel lock.
428 // After observing that the channel is not ready for receiving, we observe that the
  /prebuilts/go/linux-x86/src/runtime/
time.go 80 // Ready the goroutine arg.