HomeSort by relevance Sort by last modified time
    Searched defs:CurrentContext (Results 1 - 11 of 11) sorted by null

  /external/mesa3d/src/hgl/
GLDispatcher.h 34 void* CurrentContext();
57 BGLDispatcher::CurrentContext()
  /external/mesa3d/src/egl/main/
eglcurrent.h 55 _EGLContext *CurrentContext;
eglsurface.h 53 _EGLContext *CurrentContext;
  /external/clang/lib/StaticAnalyzer/Core/
SymbolManager.cpp 528 const StackFrameContext *CurrentContext = LCtx->getCurrentStackFrame();
530 if (VarContext == CurrentContext) {
559 return VarContext->isParentOf(CurrentContext);
  /external/llvm/lib/Support/
CrashRecoveryContext.cpp 24 sys::ThreadLocal<const CrashRecoveryContextImpl> > CurrentContext;
29 // per CrashRecoveryContext and CurrentContext is a thread-local, so only one
42 Next = CurrentContext->get();
43 CurrentContext->set(this);
47 CurrentContext->set(Next);
51 /// indicate that we don't need to clear the thread-local CurrentContext.
61 CurrentContext->set(Next);
109 const CrashRecoveryContextImpl *CRCI = CurrentContext->get();
168 const CrashRecoveryContextImpl *CRCI = CurrentContext->get();
251 const CrashRecoveryContextImpl *CRCI = CurrentContext->get()
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Support/
CrashRecoveryContext.cpp 24 static sys::ThreadLocal<const CrashRecoveryContextImpl> CurrentContext;
35 CurrentContext.set(this);
38 CurrentContext.erase();
44 CurrentContext.erase();
91 const CrashRecoveryContextImpl *CRCI = CurrentContext.get();
150 const CrashRecoveryContextImpl *CRCI = CurrentContext.get();
233 const CrashRecoveryContextImpl *CRCI = CurrentContext.get();
  /external/v8/src/debug/
debug-scopes.cc 182 ? handle(CurrentContext()->closure())
308 return Handle<JSObject>(CurrentContext()->global_proxy());
384 Handle<Context> ScopeIterator::CurrentContext() {
406 CurrentContext()->Print(os);
412 if (!CurrentContext().is_null()) {
413 CurrentContext()->Print(os);
414 if (CurrentContext()->has_extension()) {
415 Handle<HeapObject> extension(CurrentContext()->extension(), isolate_);
426 CurrentContext()->extension()->Print(os);
431 CurrentContext()->extension()->Print(os)
    [all...]
  /external/skia/tools/gpu/gl/command_buffer/
GLTestContext_command_buffer.cpp 167 static EGLContext CurrentContext() {
209 auto context = TLSCurrentObjects::CurrentContext();
321 wasCurrent = (TLSCurrentObjects::CurrentContext() == fContext);
350 if (!gfFunctionsLoadedSuccessfully || TLSCurrentObjects::CurrentContext() == fContext) {
  /external/skqp/tools/gpu/gl/command_buffer/
GLTestContext_command_buffer.cpp 167 static EGLContext CurrentContext() {
209 auto context = TLSCurrentObjects::CurrentContext();
321 wasCurrent = (TLSCurrentObjects::CurrentContext() == fContext);
350 if (!gfFunctionsLoadedSuccessfully || TLSCurrentObjects::CurrentContext() == fContext) {
  /external/tensorflow/tensorflow/stream_executor/cuda/
cuda_driver.cc 230 CUcontext CurrentContext() {
300 CHECK_EQ(CurrentContext(), cuda_context->context());
302 DCHECK_EQ(CurrentContext(), cuda_context->context());
324 // possible this could fail in the CurrentContext() call.
325 CHECK_EQ(CurrentContext(),
541 former_context = CurrentContext();
582 CUcontext former_context = CurrentContext();
    [all...]
  /external/ImageMagick/MagickWand/
drawing-wand.c 62 #define CurrentContext (wand->graphic_context[wand->index])
339 current=CurrentContext->affine;
340 CurrentContext->affine.sx=affine->sx*current.sx+affine->ry*current.rx;
341 CurrentContext->affine.rx=affine->rx*current.sx+affine->sy*current.rx;
342 CurrentContext->affine.ry=affine->sx*current.ry+affine->ry*current.sy;
343 CurrentContext->affine.sy=affine->rx*current.ry+affine->sy*current.sy;
344 CurrentContext->affine.tx=affine->sx*current.tx+affine->ry*current.ty+
346 CurrentContext->affine.ty=affine->rx*current.tx+affine->sy*current.ty+
386 CurrentContext=DestroyDrawInfo(CurrentContext);
    [all...]

Completed in 498 milliseconds