Searched refs:Stack (Results 76 - 100 of 158) sorted by relevance

1234567

/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_util.cpp79 Stack::moveTo(Stack& that)
/external/valgrind/main/coregrind/
H A Dm_addrinfo.c101 ai->Addr.Stack.tid = tid;
225 xpre, (ULong)a, ai->Addr.Stack.tid, xpost );
/external/bison/data/
H A Dyacc.c58 # Stack parameters.
570 # define YYSTACK_RELOCATE(Stack_alloc, Stack) \
574 YYCOPY (&yyptr->Stack_alloc, Stack, yysize); \
575 Stack = &yyptr->Stack_alloc; \
576 yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \
834 YYFPRINTF (stderr, "Stack now");
1657 YYDPRINTF ((stderr, "Stack size increased to %lu\n",
/external/libpcap/
H A Dgrammar.c809 # define YYSTACK_RELOCATE(Stack_alloc, Stack) \
813 YYCOPY (&yyptr->Stack_alloc, Stack, yysize); \
814 Stack = &yyptr->Stack_alloc; \
815 yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \
1607 YYFPRINTF (stderr, "Stack now");
2140 YYDPRINTF ((stderr, "Stack size increased to %lu\n",
/external/proguard/src/proguard/optimize/evaluation/
H A DPartialEvaluator.java78 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]);
285 System.out.println(" Stack: "+stacksBefore[offset]);
308 System.out.println(" Stack: "+stacksAfter[offset]);
789 System.out.println(" Stack: "+stack);
904 java.util.Stack instructionBlockStac
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/data/
H A DNewHdfParser.java26 import java.util.Stack;
99 final Stack<Data> context = new Stack<Data>();
/external/clang/lib/CodeGen/
H A DCGDecl.cpp415 llvm::Value *Stack; member in struct:__anon17823::CallStackRestore
416 CallStackRestore(llvm::Value *Stack) : Stack(Stack) {} argument
418 llvm::Value *V = CGF.Builder.CreateLoad(Stack);
939 llvm::Value *Stack = CreateTempAlloca(Int8PtrTy, "saved_stack"); local
944 Builder.CreateStore(V, Stack);
950 pushStackRestore(NormalCleanup, Stack);
/external/proguard/src/proguard/optimize/peephole/
H A DMethodInliner.java78 private Stack inliningMethods = new Stack();
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
H A DSimpleCLexer.java4 import java.util.Stack;
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/
H A DSimpleCLexer.java4 import java.util.Stack;
/external/chromium_org/third_party/angle/src/compiler/preprocessor/
H A DExpressionParser.cpp399 # define YYSTACK_RELOCATE(Stack_alloc, Stack) \
403 YYCOPY (&yyptr->Stack_alloc, Stack, yysize); \
404 Stack = &yyptr->Stack_alloc; \
405 yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \
826 YYFPRINTF (stderr, "Stack now");
1359 YYDPRINTF ((stderr, "Stack size increased to %lu\n",
/external/clang/lib/Format/
H A DFormatToken.cpp117 State.Stack.back().AvoidBinPacking = true;
/external/doclava/src/com/google/doclava/apicheck/
H A DApiCheck.java27 import java.util.Stack;
/external/apache-xml/src/main/java/org/apache/xalan/transformer/
H A DTransformerImpl.java27 import java.util.Stack;
204 Stack m_currentMatchTemplates = new Stack();
243 * Stack for the purposes of flagging infinite recursion with
246 Stack m_attrSetStack = null;
324 private Stack m_modes = new Stack();
2682 m_attrSetStack = new Stack();
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Java/
H A DJava.stg70 import java.util.Stack;
1163 protected Stack <scope.name>_stack = new Stack();<\n>
1172 protected Stack <scope.name>_stack = new Stack();<\n>
/external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/
H A Dglsl_parser.cc805 # define YYSTACK_RELOCATE(Stack_alloc, Stack) \
809 YYCOPY (&yyptr->Stack_alloc, Stack, yysize); \
810 Stack = &yyptr->Stack_alloc; \
811 yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \
2319 YYFPRINTF (stderr, "Stack now");
2899 YYDPRINTF ((stderr, "Stack size increased to %lu\n",
/external/clang/lib/Sema/
H A DSema.cpp694 SmallVector<Module *, 2> Stack; local
695 Stack.push_back(CurrentModule);
696 while (!Stack.empty()) {
697 Module *Mod = Stack.pop_back_val();
711 Stack.push_back(*Sub);
/external/elfutils/0.153/libcpu/
H A Di386_parse.c559 # define YYSTACK_RELOCATE(Stack_alloc, Stack) \
563 YYCOPY (&yyptr->Stack_alloc, Stack, yysize); \
564 Stack = &yyptr->Stack_alloc; \
565 yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \
985 YYFPRINTF (stderr, "Stack now");
1518 YYDPRINTF ((stderr, "Stack size increased to %lu\n",
/external/openfst/src/include/fst/extensions/pdt/
H A Dexpand.h186 // Stack push/pop
342 typedef PdtStack<StackId, Label> Stack; typedef in class:fst::PrunedExpand
394 const Stack &s, const vector<StackId> &sl,
424 const Stack &stack_;
436 const Stack &s,
468 Stack stack_; // Stack trie
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DRecognizerSharedState.as12 * Stack grows upwards. When it hits the max, it grows 2x in size
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
H A DDebugTreeGrammar.cs18 using RewriteRuleITokenStream = Antlr.Runtime.Tree.RewriteRuleTokenStream;using Stack = System.Collections.Generic.Stack<object>;
H A DProfileTreeGrammar.cs18 using RewriteRuleITokenStream = Antlr.Runtime.Tree.RewriteRuleTokenStream;using Stack = System.Collections.Generic.Stack<object>;
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CPP/
H A DCPP.stg1157 protected Stack <scope.name>_stack = new Stack();<\n>
1166 protected Stack <scope.name>_stack = new Stack();<\n>
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Perl5/
H A DPerl5.stg1138 protected Stack <scope.name>_stack = new Stack();<\n>
1147 protected Stack <scope.name>_stack = new Stack();<\n>
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_ssa.cpp299 Stack *stack;
406 stack = new Stack[func->allLValues.getSize()];

Completed in 980 milliseconds

1234567