HomeSort by relevance Sort by last modified time
    Searched refs:Stack (Results 101 - 125 of 257) sorted by null

1 2 3 45 6 7 8 91011

  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/xdf/tests/
xdfprotect.asm 77 mov esp, 0x01000000 ; Get some stack space
113 idesc32 isrP, 0x0008, 0 ; 0x0C, 12, #SS, Stack Fault
151 dw isrR, 0 ; 0x0C, 12, #SS, Stack Fault
  /external/sonivox/arm-hybrid-22k/lib_src/
ARM-E_mastergain_gnu.s 52 @ Stack frame
  /external/sonivox/arm-wt-22k/lib_src/
ARM-E_mastergain_gnu.s 52 @ Stack frame
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir_util.cpp 79 Stack::moveTo(Stack& that)
  /external/chromium_org/v8/test/mjsunit/compiler/
variables.js 42 // Stack-allocated locals.
  /external/chromium_org/v8/test/mjsunit/regress/
regress-233.js 29 // A stack overflow detected by a global regexp match wasn't handled correctly.
38 // Stack overflow caught.
  /external/clang/lib/Format/
UnwrappedLineParser.cpp 37 ScopedDeclarationState(UnwrappedLine &Line, std::vector<bool> &Stack,
39 : Line(Line), Stack(Stack) {
41 Stack.push_back(MustBeDeclaration);
44 Stack.pop_back();
45 if (!Stack.empty())
46 Line.MustBeDeclaration = Stack.back();
53 std::vector<bool> &Stack;
316 // Keep a stack of positions of lbrace tokens. We will
    [all...]
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_util.cpp 79 Stack::moveTo(Stack& that)
  /external/valgrind/main/coregrind/
m_addrinfo.c 96 /* -- Perhaps it's on a thread's stack? -- */
101 ai->Addr.Stack.tid = tid;
210 VG_(emit)( "%sAddress 0x%llx is just below the stack ptr. "
215 "is not stack'd, malloc'd or %s%s\n",
224 VG_(emit)( "%sAddress 0x%llx is on thread %d's stack%s\n",
225 xpre, (ULong)a, ai->Addr.Stack.tid, xpost );
  /external/bison/data/
yacc.c 58 # Stack parameters.
240 /* The state stack. */
245 /* The semantic value stack. */
250 /* The location stack. */
500 /* The OS might guarantee only one guard page at the bottom of the stack,
503 to allow for a few compiler-allocated temporary stack slots. */
542 /* A type that is properly aligned for any stack member. */
550 /* The size of the maximum gap between one aligned stack and the next. */
565 /* Relocate STACK from its old location to the new one. The
567 elements in the stack, and YYPTR gives the new location of th
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
SerializationStressTest4.java 44 import java.util.Stack;
    [all...]
  /cts/tools/signature-tools/src/signature/converter/doclet/
DocletToSigConverter.java 26 import java.util.Stack;
499 private Stack<SigMethod> currentMethod = new Stack<SigMethod>();
510 private Stack<SigConstructor> currentConstructor =
511 new Stack<SigConstructor>();
  /external/libpcap/
grammar.c 744 /* The OS might guarantee only one guard page at the bottom of the stack,
747 to allow for a few compiler-allocated temporary stack slots. */
786 /* A type that is properly aligned for any stack member. */
793 /* The size of the maximum gap between one aligned stack and the next. */
804 /* Relocate STACK from its old location to the new one. The
806 elements in the stack, and YYPTR gives the new location of the
807 stack. Advance YYPTR to a properly aligned location for the next
808 stack. */
809 # define YYSTACK_RELOCATE(Stack_alloc, Stack) \
813 YYCOPY (&yyptr->Stack_alloc, Stack, yysize);
    [all...]
  /external/proguard/src/proguard/optimize/evaluation/
PartialEvaluator.java 78 private final java.util.Stack callingInstructionBlockStack;
79 private final java.util.Stack instructionBlockStack = new java.util.Stack();
152 java.util.Stack callingInstructionBlockStack)
205 System.out.println(" Stack: "+stacksBefore[offset]);
228 System.out.println(" Stack: "+stacksAfter[offset]);
249 System.out.println(" Max stack = "+codeAttribute.u2maxStack);
252 // Reuse the existing variables and stack objects, ensuring the right size.
254 TracedStack stack = new TracedStack(codeAttribute.u2maxStack); local
268 stack,
1039 TracedStack stack = new TracedStack(codeAttribute.u2maxStack); local
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/data/
NewHdfParser.java 26 import java.util.Stack;
99 final Stack<Data> context = new Stack<Data>();
591 // Include stack trace is corrupted
592 throw new IllegalStateException("Unable to find on include stack: " + includeFileName);
602 message.append(" Include stack: ");
  /frameworks/base/core/java/com/android/internal/util/
AsyncChannel.java 32 import java.util.Stack;
743 /** A stack of SyncMessengers */
744 private static Stack<SyncMessenger> sStack = new Stack<SyncMessenger>();
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
PasswordTextView.java 44 import java.util.Stack;
86 private Stack<CharState> mCharPool = new Stack<>();
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/internet/
MimeMessage.java 45 import java.util.Stack;
540 private final Stack<Object> stack = new Stack<Object>(); field in class:MimeMessage.MimeMessageBuilder
546 if (!c.isInstance(stack.peek())) {
547 throw new IllegalStateException("Internal stack error: " + "Expected '"
548 + c.getName() + "' found '" + stack.peek().getClass().getName() + "'");
554 if (stack.isEmpty()) {
555 stack.push(MimeMessage.this);
560 ((Part)stack.peek()).setBody(m)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
BufferedTreeNodeStream.cs 150 /** <summary>Stack of indexes used for push/pop calls</summary> */
151 protected Stack<int> calls;
428 calls = new Stack<int>();
436 * Return top of stack (return index).
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
BufferedTreeNodeStream.cs 159 /** <summary>Stack of indexes used for push/pop calls</summary> */
160 protected Stack<int> calls;
509 calls = new Stack<int>();
517 * Return top of stack (return index).
  /external/chromium_org/native_client_sdk/src/examples/tutorial/debugging/
example.js 104 var text = 'Stack Trace\n';
  /external/clang/lib/CodeGen/
CGDecl.cpp 415 llvm::Value *Stack;
416 CallStackRestore(llvm::Value *Stack) : Stack(Stack) {}
418 llvm::Value *V = CGF.Builder.CreateLoad(Stack);
821 /// These turn into simple stack objects, or GlobalValues depending on target.
    [all...]
  /external/proguard/src/proguard/optimize/peephole/
MethodInliner.java 78 private Stack inliningMethods = new Stack();
280 // Go over the parameter types backward, storing the stack entries
551 // is invoked with an empty stack.
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
DebugGrammarLexer.cs 11 using Stack = System.Collections.Generic.Stack<object>;
ProfileGrammarLexer.cs 11 using Stack = System.Collections.Generic.Stack<object>;

Completed in 2892 milliseconds

1 2 3 45 6 7 8 91011