HomeSort by relevance Sort by last modified time
    Searched refs:stack (Results 226 - 250 of 1681) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/bison/examples/calc++/
calc++-parser.hh 57 #include "stack.hh"
161 /// State stack type.
162 typedef stack<state_type> state_stack_type;
163 /// Semantic value stack type.
164 typedef stack<semantic_type> semantic_stack_type;
165 /// location stack type.
166 typedef stack<location_type> location_stack_type;
168 /// The state stack.
170 /// The semantic value stack.
172 /// The location stack
    [all...]
  /external/bison/lib/
timevar.c 146 /* If this variable is timed independently of the timing stack,
158 the timing stack. */
162 /* An element on the timing stack. Elapsed time is attributed to the
163 topmost timing variable on the stack. */
167 /* The timing variable at this stack level. */
170 /* The next lower timing variable context in the stack. */
178 /* The top of the timing stack. */
179 static struct timevar_stack_def *stack; variable in typeref:struct:timevar_stack_def
185 /* The time at which the topmost element on the timing stack was
276 /* Push TIMEVAR onto the timing stack. No further elapsed time i
    [all...]
  /external/compiler-rt/lib/msan/
msan.cc 110 // Array of stack origins.
167 void GetStackTrace(StackTrace *stack, uptr max_s, uptr pc, uptr bp,
172 return stack->SlowUnwindStack(pc, max_s);
177 stack->size = 0;
178 stack->trace[0] = pc;
179 stack->max_size = max_s;
180 stack->FastUnwindStack(pc, bp, stack_top, stack_bottom);
201 StackTrace stack; local
202 GetStackTrace(&stack, kStackTraceMax, pc, bp, flags()->fast_unwind_on_fatal);
206 ReportUMR(&stack, report_origin)
300 StackTrace stack; local
    [all...]
msan_new_delete.cc 36 return MsanReallocate(&stack, 0, size, sizeof(u64), false)
  /external/compiler-rt/lib/tsan/tests/unit/
tsan_shadow_test.cc 51 int stack; local
56 CHECK(IsAppMem((uptr)&stack));
60 CHECK(IsShadowMem(MemToShadow((uptr)&stack)));
  /external/valgrind/main/memcheck/tests/
origin1-yes.stderr.exp 2 Undef 1 of 8 (stack, 32 bit)
5 Uninitialised value was created by a stack allocation
9 Undef 2 of 8 (stack, 32 bit)
12 Uninitialised value was created by a stack allocation
16 Undef 3 of 8 (stack, 64 bit)
19 Uninitialised value was created by a stack allocation
xml1.stderr.exp 36 <stack>
69 </stack>
71 <stack>
112 </stack>
120 <stack>
153 </stack>
161 <stack>
194 </stack>
202 <stack>
243 </stack>
    [all...]
  /external/webkit/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/
LeaksParserWorker.js 44 if (!/^\s+Call stack:/.test(line))
47 // The first frame is not really a frame at all ("Call stack: thread 0xNNNNN:"), so we omit it.
48 leaks.push({ size: currentSize, stack: line.split(" | ").slice(1).map(function(str) { return str.trim(); }) });
75 leak.stack.reduce(function(node, frame, index, array) {
  /dalvik/vm/alloc/
MarkSweep.h 27 /* Current top of the stack (exclusive)
35 /* Maximum stack size, in bytes.
44 GcMarkStack stack; member in struct:GcMarkContext
MarkSweep.cpp 41 * Initializes the stack top and advises the mark stack pages as needed.
43 static bool createMarkStack(GcMarkStack *stack)
45 assert(stack != NULL);
48 madvise(stack->base, length, MADV_NORMAL);
49 stack->top = stack->base;
54 * Assigns NULL to the stack top and advises the mark stack pages as
57 static void destroyMarkStack(GcMarkStack *stack)
476 GcMarkStack *stack = &ctx->stack; local
    [all...]
  /external/llvm/test/MC/ELF/
section.s 5 .section .note.GNU-stack,"",@progbits
10 // CHECK: ('sh_name', 0x00000038) # '.note.GNU-stack'
  /external/proguard/src/proguard/evaluation/
InvocationUnit.java 30 * and it updates the stack for the invocation of a class member.
53 * Updates the given stack corresponding to the execution of the given
61 Stack stack);
  /external/speex/libspeex/
cb_search_bfin.h 37 void compute_weighted_codebook(const signed char *shape_cb, const spx_word16_t *r, spx_word16_t *resp, spx_word16_t *resp2, spx_word32_t *E, int shape_cb_size, int subvect_size, char *stack)
  /external/v8/test/mjsunit/regress/
regress-798.js 35 assertEquals(3, e.stack.split('\n').length);
44 assertEquals(3, e.stack.split('\n').length);
53 assertEquals(3, e.stack.split('\n').length);
62 assertEquals(3, e.stack.split('\n').length);
75 assertEquals(3, e.stack.split('\n').length);
83 assertEquals(3, e.stack.split('\n').length);
90 // Check that the stack for an exception in a getter and setter produce the
91 // expected stack height.
  /external/webkit/Source/WebCore/inspector/
InspectorConsoleInstrumentation.h 57 inline void InspectorInstrumentation::consoleCount(Page* page, PassRefPtr<ScriptArguments> arguments, PassRefPtr<ScriptCallStack> stack)
61 consoleCountImpl(inspectorAgent, arguments, stack);
73 inline void InspectorInstrumentation::stopConsoleTiming(Page* page, const String& title, PassRefPtr<ScriptCallStack> stack)
77 stopConsoleTimingImpl(inspectorAgent, title, stack);
  /external/openssl/crypto/bn/
bn_ctx.c 83 /* The stack frame info is resizing, set a first-time expansion size; */
103 /* Stack depth and allocation size */
118 /* A wrapper to manage the "stack frames" */
121 /* Array of indexes into the bignum stack */
123 /* Number of stack frames, and the size of the allocated array */
143 /* The "stack frames", if you will */
144 BN_STACK stack; member in struct:bignum_ctx
147 /* Depth of stack overflow */
160 BN_STACK *stack = &ctx->stack; local
    [all...]
  /bionic/libc/arch-arm/bionic/
clone.S 35 # Copy the args onto the new stack.
57 # pick the function arg and call address off the stack and jump
84 # save registers to parent stack
90 # store 'fn' and 'arg' to the child stack
  /dalvik/hit/src/com/android/hit/
RootObj.java 41 public RootObj(RootType type, long id, int thread, StackTrace stack) {
45 mStack = stack;
  /dalvik/vm/compiler/template/armv5te/
TEMPLATE_MEM_OP_DECODE.S 13 mov r1, sp @ arg1 <- stack pointer
  /dalvik/vm/compiler/template/armv5te-vfp/
TEMPLATE_MEM_OP_DECODE.S 14 mov r1, sp @ arg1 <- stack pointer
  /dalvik/vm/mterp/mips/
OP_MONITOR_ENTER.S 10 EXPORT_PC() # export PC so we can grab stack trace
  /external/bison/data/
Makefile.am 19 c++-skel.m4 c++.m4 location.cc lalr1.cc glr.cc stack.hh \
  /external/bluetooth/bluedroid/btif/src/
bluetooth.c 422 bluetooth_device_t *stack = malloc(sizeof(bluetooth_device_t) ); local
423 memset(stack, 0, sizeof(bluetooth_device_t) );
424 stack->common.tag = HARDWARE_DEVICE_TAG;
425 stack->common.version = 0;
426 stack->common.module = (struct hw_module_t*)module;
427 stack->common.close = close_bluetooth_stack;
428 stack->get_bluetooth_interface = bluetooth__get_bluetooth_interface;
429 *abstraction = (struct hw_device_t*)stack;
443 .name = "Bluetooth Stack",
  /external/bluetooth/bluedroid/gki/
Android.mk 10 $(LOCAL_PATH)/../stack/include \
  /external/compiler-rt/lib/asan/
asan_new_delete.cc 41 return asan_memalign(0, size, &stack, type);
79 asan_free(ptr, &stack, type);

Completed in 1818 milliseconds

1 2 3 4 5 6 7 8 91011>>