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

1 2 3 4 5 67 8 91011

  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir_from_sm4.cpp 81 Stack condBBs;
82 Stack joinBBs;
83 Stack loopBBs;
84 Stack breakBBs;
85 Stack entryBBs;
86 Stack leaveBBs;
87 Stack retIPs;
    [all...]
nv50_ir_graph.cpp 26 #include <stack>
171 std::stack<const Node *> stack; local
175 stack.push(node);
177 while (!stack.empty()) {
178 pos = stack.top();
179 stack.pop();
190 stack.push(ei.getNode());
286 Stack bb, cross;
nv50_ir_from_tgsi.cpp 1129 Stack condBBs; // fork BB, then else clause BB
1130 Stack joinBBs; // fork BB, for inserting join ops on ENDIF
1131 Stack loopBBs; // loop headers
1132 Stack breakBBs; // end of / after loop
    [all...]
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_from_sm4.cpp 81 Stack condBBs;
82 Stack joinBBs;
83 Stack loopBBs;
84 Stack breakBBs;
85 Stack entryBBs;
86 Stack leaveBBs;
87 Stack retIPs;
    [all...]
nv50_ir_graph.cpp 26 #include <stack>
171 std::stack<const Node *> stack; local
175 stack.push(node);
177 while (!stack.empty()) {
178 pos = stack.top();
179 stack.pop();
190 stack.push(ei.getNode());
286 Stack bb, cross;
nv50_ir_from_tgsi.cpp 1129 Stack condBBs; // fork BB, then else clause BB
1130 Stack joinBBs; // fork BB, for inserting join ops on ENDIF
1131 Stack loopBBs; // loop headers
1132 Stack breakBBs; // end of / after loop
    [all...]
  /external/chromium_org/v8/tools/
profile.js 87 * during stack strace processing, specifies a position of the frame
232 * Records a tick event. Stack must contain a sequence of
235 * @param {Array<number>} stack Stack sample.
237 Profile.prototype.recordTick = function(stack) {
238 var processedStack = this.resolveAndFilterFuncs_(stack);
249 * @param {Array<number>} stack Stack sample.
251 Profile.prototype.resolveAndFilterFuncs_ = function(stack) {
253 for (var i = 0; i < stack.length; ++i)
    [all...]
  /external/llvm/lib/Target/XCore/
XCoreISelLowering.cpp 147 // Dynamic stack
    [all...]
  /frameworks/base/graphics/java/android/graphics/drawable/
VectorDrawable.java 49 import java.util.Stack;
531 // Use a stack to help to build the group tree.
532 // The top of the stack is always the current group.
533 final Stack<VGroup> groupStack = new Stack<VGroup>();
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
BridgeContext.java 32 import com.android.layoutlib.bridge.impl.Stack;
131 private final Stack<BridgeXmlBlockParser> mParserStack = new Stack<BridgeXmlBlockParser>();
235 * Adds a parser to the stack.
246 * Removes the parser at the top of the stack
256 * Returns the current parser at the top the of the stack.
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
DebugTreeGrammar.cs 18 using RewriteRuleITokenStream = Antlr.Runtime.Tree.RewriteRuleTokenStream;using Stack = System.Collections.Generic.Stack<object>;
ProfileTreeGrammar.cs 18 using RewriteRuleITokenStream = Antlr.Runtime.Tree.RewriteRuleTokenStream;using Stack = System.Collections.Generic.Stack<object>;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
SimpleCTP.java 4 import org.antlr.runtime.tree.*;import java.util.Stack;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/
SimpleCTP.java 4 import org.antlr.runtime.tree.*;import java.util.Stack;
  /external/bison/src/
parse-gram.c 486 /* The OS might guarantee only one guard page at the bottom of the stack,
489 to allow for a few compiler-allocated temporary stack slots. */
530 /* A type that is properly aligned for any stack member. */
538 /* The size of the maximum gap between one aligned stack and the next. */
549 /* Relocate STACK from its old location to the new one. The
551 elements in the stack, and YYPTR gives the new location of the
552 stack. Advance YYPTR to a properly aligned location for the next
553 stack. */
554 # define YYSTACK_RELOCATE(Stack_alloc, Stack) \
558 YYCOPY (&yyptr->Stack_alloc, Stack, yysize);
    [all...]
  /external/chromium_org/third_party/openmax_dl/dl/api/arm/
armCOMM_s.h 28 .set _SBytes, 0 @ Number of scratch bytes on stack
29 .set _Workspace, 0 @ Stack offset of scratch workspace
34 @// Work out a list of R saved registers, and how much stack space is needed.
152 @ Note that functions should all be "stack-moves-once"
154 @ where the stack moves.
157 @ rreg = "" don't stack any registers
158 @ "lr" stack "lr" only
159 @ "rN" stack registers "r4-rN,lr"
160 @ dreg = "" don't stack any D registers
161 @ "dN" stack registers "d8-dN
    [all...]
  /external/proguard/src/proguard/evaluation/
Processor.java 31 * local variable frame and stack.
39 private final Stack stack; field in class:Processor
51 * @param stack the local stack.
56 Stack stack,
62 this.stack = stack;
82 stack.push(valueFactory.createReferenceValueNull())
    [all...]
  /external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/program/
program_parse.tab.c 625 /* The OS might guarantee only one guard page at the bottom of the stack,
628 to allow for a few compiler-allocated temporary stack slots. */
668 /* A type that is properly aligned for any stack member. */
676 /* The size of the maximum gap between one aligned stack and the next. */
687 /* Relocate STACK from its old location to the new one. The
689 elements in the stack, and YYPTR gives the new location of the
690 stack. Advance YYPTR to a properly aligned location for the next
691 stack. */
692 # define YYSTACK_RELOCATE(Stack_alloc, Stack) \
696 YYCOPY (&yyptr->Stack_alloc, Stack, yysize);
    [all...]
  /external/clang/lib/Format/
Format.cpp     [all...]
  /external/google-diff-match-patch/name/fraser/neil/plaintext/
diff_match_patch.java 34 import java.util.Stack;
792 Stack<Diff> equalities = new Stack<Diff>(); // Stack of qualities.
    [all...]
  /external/clang/lib/Sema/
SemaType.cpp     [all...]
  /external/llvm/lib/Transforms/Vectorize/
SLPVectorizer.cpp     [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Scala/
Scala.stg     [all...]
  /cts/tools/dasm/src/dasm/
parser.java 812 java.util.Stack stack,
817 return action_obj.CUP$do_action(act_num, parser, stack, top);
    [all...]
  /external/chromium_org/v8/test/mjsunit/tools/
profile.js 32 function stackToString(stack) {
33 return stack.join(' -> ');
88 // Stack looks like this: [pc, caller, ..., main].
191 var stack = stackToString(path);
192 assertNotNull(node, 'node not found: ' + stack);
193 assertEquals(selfTicks, node.selfWeight, 'self of ' + stack);
194 assertEquals(totalTicks, node.totalWeight, 'total of ' + stack);
243 // Only count each function in the stack once.

Completed in 960 milliseconds

1 2 3 4 5 67 8 91011