HomeSort by relevance Sort by last modified time
    Searched refs:CONTEXT (Results 1 - 19 of 19) sorted by null

  /hardware/ti/wlan/wl1271/utils/
bmtrace_api.h 48 int bm_act_register_event(char* module, char* context, char* group, unsigned char level, char* name, char* suffix, int is_param);
65 #define CL_TRACE_END(MODULE, CONTEXT, GROUP, LEVEL, SUFFIX) \
69 loc = bm_act_register_event(MODULE, CONTEXT, GROUP, LEVEL, (char*)__FUNCTION__, SUFFIX, 0); \
87 #define CL_TRACE_END_L1(MODULE, CONTEXT, GROUP, SUFFIX) CL_TRACE_END(MODULE, CONTEXT, GROUP, 1, SUFFIX)
88 #define CL_TRACE_END_L2(MODULE, CONTEXT, GROUP, SUFFIX)
89 #define CL_TRACE_END_L3(MODULE, CONTEXT, GROUP, SUFFIX)
90 #define CL_TRACE_END_L4(MODULE, CONTEXT, GROUP, SUFFIX)
91 #define CL_TRACE_END_L5(MODULE, CONTEXT, GROUP, SUFFIX)
103 #define CL_TRACE_END_L1(MODULE, CONTEXT, GROUP, SUFFIX) CL_TRACE_END(MODULE, CONTEXT, GROUP, 1, SUFFIX
    [all...]
  /system/wlan/ti/wilink_6_1/utils/
bmtrace_api.h 48 int bm_act_register_event(char* module, char* context, char* group, unsigned char level, char* name, char* suffix, int is_param);
65 #define CL_TRACE_END(MODULE, CONTEXT, GROUP, LEVEL, SUFFIX) \
69 loc = bm_act_register_event(MODULE, CONTEXT, GROUP, LEVEL, (char*)__FUNCTION__, SUFFIX, 0); \
87 #define CL_TRACE_END_L1(MODULE, CONTEXT, GROUP, SUFFIX) CL_TRACE_END(MODULE, CONTEXT, GROUP, 1, SUFFIX)
88 #define CL_TRACE_END_L2(MODULE, CONTEXT, GROUP, SUFFIX)
89 #define CL_TRACE_END_L3(MODULE, CONTEXT, GROUP, SUFFIX)
90 #define CL_TRACE_END_L4(MODULE, CONTEXT, GROUP, SUFFIX)
91 #define CL_TRACE_END_L5(MODULE, CONTEXT, GROUP, SUFFIX)
103 #define CL_TRACE_END_L1(MODULE, CONTEXT, GROUP, SUFFIX) CL_TRACE_END(MODULE, CONTEXT, GROUP, 1, SUFFIX
    [all...]
  /frameworks/base/core/jni/
com_google_android_gles_jni_EGLImpl.cpp 158 jobject context, jint attribute, jintArray value) {
159 if (display == NULL || context == NULL || value == NULL
165 EGLContext ctx = getContext(_env, context);
411 static jboolean jni_eglDestroyContext(JNIEnv *_env, jobject _this, jobject display, jobject context) {
412 if (display == NULL || context == NULL) {
417 EGLContext ctx = getContext(_env, context);
444 static jboolean jni_eglMakeCurrent(JNIEnv *_env, jobject _this, jobject display, jobject draw, jobject read, jobject context) {
445 if (display == NULL || draw == NULL || read == NULL || context == NULL) {
452 EGLContext ctx = getContext(_env, context);
507 #define CONTEXT "Ljavax/microedition/khronos/egl/EGLContext;
    [all...]
  /external/srec/tools/grxmlcompile/
vocab.cpp 36 #define GENERIC CONTEXT "#"
  /external/v8/src/
scopeinfo.cc 69 // not true for context-allocated locals: Some of them
74 // Thus, we first collect the context-allocated locals, and then
75 // sort them by context slot index before adding them to the
98 case Slot::CONTEXT:
115 ASSERT(heap_locals[i]->slot()->index() - Context::MIN_CONTEXT_SLOTS ==
117 ASSERT(heap_locals[i]->slot()->index() - Context::MIN_CONTEXT_SLOTS ==
127 // Add the function context slot, if present.
134 var->slot()->type() == Slot::CONTEXT) {
136 // Note that we must not find the function name in the context slot
139 // get the correct number of context slots
    [all...]
prettyprinter.cc 302 case Slot::CONTEXT:
303 Print(".context[%d]", node->index());
306 Print(".context[");
1008 case Slot::CONTEXT:
1009 Print(".context[%d]", node->index());
1012 Print(".context[");
    [all...]
scopes.cc 336 void Scope::AllocateVariables(Handle<Context> context) {
351 ResolveVariablesRecursively(global_scope, context);
364 // A function scope has a trivial context if it always is the global
365 // context. We iteratively scan out the context chain to see if
380 // Note that the outer context may be trivial in general, but the current
381 // scope may be inside a 'with' statement in which case the outer context
477 Indent(n1, "// scope has trivial outer context\n");
613 Handle<Context> context
    [all...]
platform-win32.cc 1804 CONTEXT context; local
    [all...]
full-codegen.cc 479 case Slot::CONTEXT:
498 // actually exists in the local context.
579 // Set up the appropriate context for the left subexpression based
580 // on the operation and our own context. Initially assume we can
581 // inherit both true and false labels from our context.
746 // Both runtime calls return the new context in both the context and the
749 // Update local stack frame context field.
758 // Pop context.
759 LoadContextField(context_register(), Context::PREVIOUS_INDEX)
    [all...]
ast.h 166 enum Context {
167 // Not assigned a context yet, or else will not be visited during
891 // Node for constructing a context extension object for a catch block.
892 // The catch context extension object has one property, the catch
1000 // An indexed slot in a heap context. index() is the
1001 // variable index in the context object on the heap,
1004 CONTEXT,
1006 // A named slot in a heap context. var()->name() is the
1007 // variable name in the context object on the heap,
1008 // with lookup starting at the current context. index(
    [all...]
  /external/tcpdump/
print-snmp.c 126 * Context-specific ASN.1 types for the SNMP PDUs and their tags
128 const char *Context[] = {
156 * Context-specific ASN.1 types for the SNMP Exceptions and their tags
224 * Ties together the preceding Universal, Application, Context, and Private
237 defineCLASS(Context),
238 #define CONTEXT 2
591 case CONTEXT:
637 case CONTEXT:
823 Class[CONTEXT].Id[elem->id], elem->asnlen);
    [all...]
  /external/v8/src/arm/
full-codegen-arm.cc 48 // o cp: our context
80 // Possibly allocate a local context.
82 Comment cmnt(masm_, "[ Allocate local context");
87 // Context is returned in both r0 and cp. It replaces the context
90 // Copy any necessary parameters into the context.
94 if (slot != NULL && slot->type() == Slot::CONTEXT) {
99 // Store it in the context.
100 __ mov(r1, Operand(Context::SlotOffset(slot->index())));
116 // Load this again, if it's used by the local context below
    [all...]
codegen-arm.cc 143 // cp: callee's context
166 // cp: callee's context
188 // Allocate local context.
189 // Get outer context and create a new context based on it.
206 // Update context local.
207 __ str(cp, frame_->Context());
211 // 1) only needed if we have a context
212 // 2) no need to recompute context ptr every single time
215 Comment cmnt2(masm_, "[ copy context parameters into .context")
420 Register context = cp; local
456 Register context = cp; local
2556 Register context = cp; local
    [all...]
  /external/v8/src/ia32/
full-codegen-ia32.cc 48 // o esi: our context
62 __ push(esi); // Callee's context.
79 // Possibly allocate a local context.
81 Comment cmnt(masm_, "[ Allocate local context");
86 // Context is returned in both eax and esi. It replaces the context
90 // Copy parameters into context if necessary.
94 if (slot != NULL && slot->type() == Slot::CONTEXT) {
99 // Store it in the context.
100 int context_offset = Context::SlotOffset(slot->index())
    [all...]
codegen-ia32.cc 126 // esi: callee's context
164 // esi: callee's context
173 // Allocate the local context if needed.
174 int heap_slots = scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
176 Comment cmnt(masm_, "[ allocate local context");
177 // Allocate local context.
178 // Get outer context and create a new context based on it.
180 Result context; local
183 context = frame_->CallStub(&stub, 1)
227 Result context = allocator_->Allocate(); local
379 Register context = esi; local
414 Register context = esi; local
2980 Result context; local
4271 Register context = esi; local
5927 Result context = frame_->CallRuntime(Runtime::kLookupContext, 2); local
    [all...]
  /external/v8/src/x64/
full-codegen-x64.cc 48 // o rsi: our context
62 __ push(rsi); // Callee's context.
79 // Possibly allocate a local context.
81 Comment cmnt(masm_, "[ Allocate local context");
86 // Context is returned in both rax and rsi. It replaces the context
90 // Copy any necessary parameters into the context.
94 if (slot != NULL && slot->type() == Slot::CONTEXT) {
99 // Store it in the context.
100 int context_offset = Context::SlotOffset(slot->index())
    [all...]
codegen-x64.cc 272 frame_->EmitPush(rsi); // The context is the first argument.
316 // rsi: callee's context
325 // Allocate the local context if needed.
328 Comment cmnt(masm_, "[ allocate local context");
329 // Allocate local context.
330 // Get outer context and create a new context based on it.
332 Result context; local
335 context = frame_->CallStub(&stub, 1);
337 context = frame_->CallRuntime(Runtime::kNewContext, 1)
379 Result context = allocator_->Allocate(); local
1154 Result context; local
3021 Result context = frame_->CallRuntime(Runtime::kLookupContext, 2); local
4463 Register context = rsi; local
4498 Register context = rsi; local
4767 Register context = rsi; local
    [all...]
  /external/webkit/JavaScriptCore/runtime/
Collector.cpp 868 typedef CONTEXT PlatformThreadRegisters;
908 return sizeof(CONTEXT);
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/cp/
cp-tree.h 1687 tree context; member in struct:lang_decl_u4::full_lang_decl
    [all...]

Completed in 551 milliseconds