Home
last modified time | relevance | path

Searched refs:current_context (Results 1 – 12 of 12) sorted by relevance

/external/deqp/external/openglcts/modules/common/
DglcTestSubcase.cpp35 static Context* current_context; variable
39 …: CallLogWrapper(current_context->getRenderContext().getFunctions(), current_context->getTestConte… in GLWrapper()
40 , m_context(*current_context) in GLWrapper()
219 current_context = &m_context; in iterate()
/external/v8/src/builtins/
Dbuiltins-internal-gen.cc887 TNode<Context> current_context = GetCurrentContext(); in TF_BUILTIN() local
958 SetCurrentContext(current_context); in TF_BUILTIN()
980 CallRuntime(Runtime::kRunMicrotaskCallback, current_context, in TF_BUILTIN()
1008 SetCurrentContext(current_context); in TF_BUILTIN()
1043 SetCurrentContext(current_context); in TF_BUILTIN()
1078 SetCurrentContext(current_context); in TF_BUILTIN()
1088 CallRuntime(Runtime::kReportMessage, current_context, in TF_BUILTIN()
1091 SetCurrentContext(current_context); in TF_BUILTIN()
/external/v8/src/interpreter/
Dinterpreter-assembler.cc154 return LoadRegister(Register::current_context()); in GetContext()
158 StoreRegister(value, Register::current_context()); in SetContext()
779 Node* current_context = in CollectCallableFeedback() local
781 Node* current_native_context = LoadNativeContext(current_context); in CollectCallableFeedback()
1007 Node* current_context = in Construct() local
1009 Node* current_native_context = LoadNativeContext(current_context); in Construct()
1170 Node* current_context = in ConstructWithSpread() local
1172 Node* current_native_context = LoadNativeContext(current_context); in ConstructWithSpread()
Dbytecode-register.cc57 Register Register::current_context() { in current_context() function in v8::internal::interpreter::Register
Dbytecode-register.h40 static Register current_context();
Dbytecode-generator.cc38 register_(Register::current_context()), in ContextScope()
55 DCHECK_EQ(register_.index(), Register::current_context().index()); in ~ContextScope()
1695 builder()->MoveRegister(Register::current_context(), context); in VisitTryCatchStatement()
1759 builder()->MoveRegister(Register::current_context(), context); in VisitTryFinallyStatement()
/external/curl/lib/vtls/
Dschannel.c1160 const CERT_CONTEXT *current_context = NULL; in traverse_cert_store() local
1163 (current_context = CertEnumCertificatesInStore( in traverse_cert_store()
1165 current_context)) != NULL) in traverse_cert_store()
1166 should_continue = func(current_context, arg); in traverse_cert_store()
1168 if(current_context) in traverse_cert_store()
1169 CertFreeCertificateContext(current_context); in traverse_cert_store()
/external/libdrm/freedreno/kgsl/
Dmsm_kgsl.h103 unsigned int current_context; member
/external/v8/src/
Disolate.cc3309 Context* current_context = Context::cast(context); in Throw() local
3310 if (current_context->initial_object_prototype() == object || in Throw()
3311 current_context->initial_array_prototype() == object || in Throw()
3312 current_context->initial_string_prototype() == object) { in Throw()
3315 context = current_context->next_context_link(); in Throw()
3324 Context* current_context = Context::cast(context); in Throw() local
3325 if (current_context->get(index) == object) { in Throw()
3328 context = current_context->next_context_link(); in Throw()
Daccessors.cc563 static inline bool AllowAccessToFunction(Context* current_context, in AllowAccessToFunction() argument
565 return current_context->HasSameSecurityTokenAs(function->context()); in AllowAccessToFunction()
/external/python/cpython3/Modules/_decimal/
D_decimal.c1514 current_context(void) in current_context() function
1530 ctxobj = current_context(); \
1540 return current_context(); in PyDec_GetCurrentContext()
4394 context = current_context(); in _dec_hash()
/external/v8/src/debug/
Ddebug.cc2217 reg = interpreter::Register::current_context(); in PerformSideEffectCheckAtBytecode()