HomeSort by relevance Sort by last modified time
    Searched refs:stack (Results 2626 - 2650 of 3511) sorted by null

<<101102103104105106107108109110>>

  /system/core/libbacktrace/
BacktraceOffline.cpp 197 // Normally, libunwind needs stack information and call frame information to do remote unwinding.
758 const backtrace_stackinfo_t& stack, bool cache_file) {
759 return new BacktraceOffline(pid, tid, map, stack, cache_file);
  /system/extras/simpleperf/
cmd_record.cpp 71 " -b Enable take branch stack sampling. Same as '-j any'\n"
75 " method to parse call graph in stack. Default is dwarf,8192.\n"
89 " Enable taken branch stack sampling. Each sample\n"
105 " --no-unwind If `--call-graph dwarf` option is used, then the user's stack will\n"
107 " the user's stack.\n"
112 " If `--call-graph dwarf` option is used, then the user's stack will\n"
115 " the user's stack after recording.\n"
327 LOG(ERROR) << "invalid dump stack size in --call-graph option: " << strs[1];
331 LOG(ERROR) << "dump stack size " << size << " is not 8-byte aligned.";
694 std::vector<char>& stack = r.stack_user_data.data local
    [all...]
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
jsoup-1.7.2.jar 
  /prebuilts/tools/common/m2/repository/org/antlr/ST4/4.0.8/
ST4-4.0.8.jar 
  /prebuilts/tools/common/m2/repository/org/jsoup/jsoup/1.6.3/
jsoup-1.6.3.jar 
  /prebuilts/tools/common/offline-m2/org/antlr/ST4/4.0.8/
ST4-4.0.8.jar 
  /external/icu/icu4c/source/common/
uresbund.cpp 1747 UResourceBundle stack; local
    [all...]
  /external/v8/src/compiler/
instruction-selector.cc 445 Node* stack = state->InputAt(kFrameStateStackInput); local
452 DCHECK_EQ(descriptor->stack_count(), StateValuesAccess(stack).size());
475 for (StateValuesAccess::TypedNode input_node : StateValuesAccess(stack)) {
688 // their return address on the stack, move the return address to just above
1919 int stack = static_cast<int>( local
    [all...]
  /external/v8/tools/gyp/pylib/gyp/
input.py 628 stack = []
632 stack.append(char)
636 if not stack:
638 if stack.pop() != BRACKETS[char]:
640 if not stack:
    [all...]
  /prebuilts/tools/common/m2/repository/commons-digester/commons-digester/1.6/
commons-digester-1.6.jar 
  /prebuilts/tools/common/m2/repository/org/jacoco/org.jacoco.core/0.7.6.201602180812/
org.jacoco.core-0.7.6.201602180812.jar 
  /prebuilts/tools/common/offline-m2/org/jacoco/org.jacoco.core/0.7.6.201602180812/
org.jacoco.core-0.7.6.201602180812.jar 
  /ndk/tests/device/test-libc++-shared-full/jni/
Android.mk     [all...]
  /ndk/tests/device/test-libc++-static-full/jni/
Android.mk     [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/parser/
Parser.java 22 private final ListIterator stack = new LinkedList().listIterator(); field in class:Parser
44 if(!this.stack.hasNext())
46 this.stack.add(new State(numstate, this.nodeList));
50 State s = (State) this.stack.next();
86 State s = (State) this.stack.previous();
87 this.stack.next();
93 return ((State) this.stack.previous()).nodes;
    [all...]
  /toolchain/binutils/binutils-2.25/bfd/
dwarf2.c 1187 /* Is this a stack variable? *
1188 unsigned int stack: 1; member in struct:varinfo
    [all...]
ieee.c 511 ieee_value_type stack[10];
512 ieee_value_type *sp = stack;
521 /* The stack pointer always points to the next unused location. */
634 sp == stack here. If not, then we've pushed something too far,
636 while (sp != stack + 1)
509 ieee_value_type stack[10]; local
2539 int stack[10]; local
    [all...]
  /build/tools/droiddoc/templates-sdk/assets/js/
docs.js 448 // Stack hover states
    [all...]
  /external/opencv3/doc/pattern_tools/
svgfig.py 605 self.stack = []
612 if len(self.stack) > 0:
613 last = self.stack[-1]
615 self.stack.append(s)
619 if len(self.stack) > 0:
620 last = self.stack[-1]
627 if len(self.stack) > 0:
628 last = self.stack[-1]
634 self.output = self.stack.pop()
    [all...]
  /toolchain/binutils/binutils-2.25/binutils/
ieee.c 33 /* This structure holds an entry on the block stack. */
47 /* This structure is the block stack. */
53 /* The stack pointer. */
55 /* The stack. */
56 struct ieee_block stack[BLOCKSTACK_SIZE]; member in struct:ieee_blockstack
156 /* The block stack. */
505 ieee_error (info, start, _("expression stack overflow"));
546 ieee_error (info, start, _("expression stack overflow"));
561 ieee_error (info, start, _("expression stack underflow"));
575 ieee_error (info, expr_start, _("expression stack mismatch"))
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
SAX2DTM2.java 803 * The stack of start node + ancestors up to the root of the tree,
882 final int[] stack = new int[index*2]; local
883 System.arraycopy(_stack, 0, stack, 0, index);
884 _stack = stack;
890 --index; // Pop actual root node (if not start) back off the stack
    [all...]
  /external/google-breakpad/src/common/dwarf/
dwarf2reader.cc 43 #include <stack>
479 std::stack<uint64> die_stack;
    [all...]
  /external/guice/extensions/struts2/lib/
javassist.jar 
  /external/robolectric/v1/lib/main/
javassist-3.14.0-GA.jar 
  /external/v8/test/mjsunit/asm/embenchen/
fannkuch.js 613 // Note that string arguments will be stored on the stack (the JS string will become a C string on the stack).
633 var stack = 0;
641 if (!stack) stack = Runtime.stackSave();
660 if (stack) Runtime.stackRestore(stack);
835 var MAX_CHUNK = 1024; // split up into chunks, because .apply on a huge string can overflow the stack
    [all...]

Completed in 2515 milliseconds

<<101102103104105106107108109110>>