/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/bits/ |
regex_grep_matcher.h | 104 /// A stack of states used in evaluating the NFA. 105 typedef std::stack<_StateIdT, std::vector<_StateIdT> > _StateStack;
|
/external/chromium_org/v8/tools/profviz/ |
composer.js | 37 var kStackFrames = 8; // Stack frames to display in the plot. 40 var kExecutionFrameWidth = 0.2; // Width of the top stack frame line. 41 var kStackFrameWidth = 0.1; // Width of the lower stack frame lines. 42 var kGapWidth = 0.05; // Gap between stack frame lines. 44 var kY1Offset = 11; // Offset for stack frame vs. event lines. 152 if (!something) print(new Error(message).stack); 240 "inconsistent event stack"); 299 "inconsistent event stack"); 340 pc, timer, unused_x, unused_y, vmstate, stack) { 347 if (!stack[i]) break [all...] |
/external/chromium_org/third_party/tcmalloc/chromium/src/ |
tcmalloc.cc | 195 "Allocations larger than this value cause a stack " 197 "dumping stack traces is increased by a factor of 1.125 " 524 t->stack[tcmalloc::kMaxStackDepth-1])) { 534 "tcmalloc: allocation failed for stack trace slots", 544 t->stack[tcmalloc::kMaxStackDepth-1])) { 555 result[used_slots+3+d] = t->stack[d]; 988 StackTrace *stack = Static::stacktrace_allocator()->New(); local 1010 StackTrace stack; local [all...] |
heap-profile-table.h | 60 // Longest stack trace we record. 80 const void* const* call_stack; // call stack that made the allocation call 87 // An allocation context is a unique caller stack trace 90 int stack_depth; // Depth of stack trace 91 const void* const* call_stack; // Stack trace 103 // Collect the stack trace for the function that asked to do the 106 // The stack trace is stored in 'stack'. The stack depth is returned. 108 // 'skip_count' gives the number of stack frames between this cal [all...] |
/bionic/linker/ |
Android.mk | 21 LOCAL_CFLAGS += -fno-stack-protector \
|
/dalvik/vm/compiler/template/mips/ |
TEMPLATE_MEM_OP_DECODE.S | 11 /* push f0-f31 onto stack */ 45 sub sp, (32-0)*4 # adjust stack pointer 82 # the registers on the stack. 83 sub sp, (32-0)*4 # adjust stack pointer 88 move a1, sp # a1<- stack pointer 94 # the registers on the stack. 95 add sp, (32-0)*4 # adjust stack pointer 128 /* pop f0-f31 from stack */ 129 add sp, (32-0)*4 # adjust stack pointer
|
/external/bison/examples/calc++/ |
Makefile.am | 87 $(srcdir)/stack.hh $(srcdir)/position.hh $(srcdir)/location.hh \
|
/external/chromium_org/base/ |
tracked_objects.h | 10 #include <stack> 367 typedef std::stack<const Births*> ParentStack; 662 // The stack of parents that are currently being profiled. This includes only 664 // yet concluded with a NowForEndOfRun(). Usually this stack is one deep, but 666 // loop, then the stack can grow larger. Note that we don't try to deduc [all...] |
/external/chromium_org/chrome/common/extensions/features/ |
base_feature_provider.cc | 7 #include <stack> 140 // Push parent features on the stack, starting with the current feature. 142 // the stack. The features will then be parsed in order, starting with 144 std::stack<std::pair<std::string, const base::DictionaryValue*> >
|
/external/chromium_org/chrome/renderer/resources/extensions/ |
webstore_custom_bindings.js | 40 e.stack);
|
/external/chromium_org/content/child/npapi/ |
plugin_instance.h | 12 #include <stack> 315 // Stack indicating if popups are to be enabled for the outgoing 317 std::stack<bool> popups_enabled_stack_;
|
/external/chromium_org/third_party/WebKit/Source/wtf/ |
Assertions.h | 126 WTF_EXPORT void WTFGetBacktrace(void** stack, int* size); 128 WTF_EXPORT void WTFPrintBacktrace(void** stack, int size);
|
/external/chromium_org/third_party/npapi/npspy/extern/nspr/md/ |
_reliantunix.h | 184 ** - set its SP to the stack we allcoated for it 191 /* this is supposed to point to the stack BASE, not to SP */ \ 192 CONTEXT(thread)->uc_stack.ss_sp = thread->stack->stackBottom; \ 193 CONTEXT(thread)->uc_stack.ss_size = thread->stack->stackSize; \
|
/external/chromium_org/third_party/openssl/openssl/crypto/bn/asm/ |
sparcv9a-mont.pl | 148 add %sp,$bias,%o0 ! real top of stack
|
/external/chromium_org/third_party/openssl/openssl/crypto/perlasm/ |
x86gas.pl | 118 $::stack=4; 124 $::stack=0;
|
x86masm.pl | 107 $::stack=4; 113 $::stack=0;
|
/external/chromium_org/third_party/re2/re2/testing/ |
regexp_generator.cc | 12 // To evaluate a command, enough arguments are popped from the value stack to 13 // plug into the %s slots. Then the result is pushed onto the stack. 16 // results in the stack 25 #include <stack> 92 // nstk: the number of elements that would be on the stack after executing 107 // get back down to a single expression on the stack 147 // get back down to a single expression on the stack 181 stack<string> regexps; 214 printf("Stack after running program:\n");
|
/external/chromium_org/third_party/re2/re2/ |
walker-inl.h | 79 // Clears the stack. Should never be necessary, since 80 // Walk always enters and exits with an empty stack. 81 // Logs DFATAL if stack is not already clear. 89 stack<WalkState<T> >* stack_; 133 stack_ = new stack<WalkState<T> >; 142 // Clears the stack. Should never be necessary, since 143 // Walk always enters and exits with an empty stack. 144 // Logs DFATAL if stack is not already clear. 147 LOG(DFATAL) << "Stack not empty.";
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/rdf/tests/ |
rdtmain.asm | 39 add esp,8 ; caller clears stack
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/win64/tests/ |
sce1.asm | 19 ; you can modify the stack pointer outside of the prologue (similar to alloca)
|
sce3.asm | 19 ; you can modify the stack pointer outside of the prologue (similar to alloca)
|
/external/chromium_org/v8/test/mjsunit/regress/ |
regress-119429.js | 32 if (++d == 25135) { // A magic number just below stack overflow on ia32
|
regress-2249423.js | 29 // Regression test for stack corruption issue.
|
regress-3230771.js | 28 // Regression test for missing stack-overflow check in
|
regress-crbug-100859.js | 28 // This used to trigger a crash because of an unhandled stack overflow.
|