HomeSort by relevance Sort by last modified time
    Searched refs:Stack (Results 176 - 200 of 334) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/llvm/lib/ProfileData/
SampleProfReader.cpp 81 /// \param Depth the depth of the inline stack.
516 InlineCallStack Stack;
518 if (std::error_code EC = readOneFunctionProfile(Stack, true, 0))
559 // inline stack contains the profile of the caller. Insert this
591 // Walk up the inline stack, adding the samples on this line to
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_ssa.cpp 299 Stack *stack; member in class:nv50_ir::RenamePass
406 stack = new Stack[func->allLValues.getSize()];
411 if (stack)
412 delete[] stack;
418 if (!stack[val->id].getSize())
420 return reinterpret_cast<LValue *>(stack[val->id].peek().u.p);
437 if (!stack)
461 stack[lval->id].push(ssa)
    [all...]
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...]
  /external/v8/test/mjsunit/
debug-liveedit-restart-frame.js 55 // Extra stack variable. To make function not slim.
129 print("Stack: " + saved_exception.stack);
  /external/v8/test/mjsunit/regress/
regress-2318.js 28 // Flags: --expose-debug-as debug --nostack-trace-on-abort --stack-size=150
33 // Stack-allocate to reach the end of stack quickly.
  /prebuilts/misc/common/swig/include/2.0.11/gcj/
javaprims.i 316 class Stack;
  /external/bison/data/
lalr1.cc 31 m4_include(b4_pkgdatadir/[stack.hh])
51 #include "stack.hh"
140 /// State stack type.
141 typedef stack<state_type> state_stack_type;
142 /// Semantic value stack type.
143 typedef stack<semantic_type> semantic_stack_type;
144 /// location stack type.
145 typedef stack<location_type> location_stack_type;
147 /// The state stack.
149 /// The semantic value stack
    [all...]
  /external/doclava/src/com/google/doclava/apicheck/
ApiCheck.java 29 import java.util.Stack;
  /external/libavc/common/arm/
ih264_resi_trans_quant_a9.s 55 @ STACK : pred stride,
66 @ Stack Usage : 40 bytes
87 @STACk :pred stride
96 add r11, sp, #40 @decrement stack pointer,to accomodate two variables
253 @ STACK : pred stride,
264 @ Stack Usage : 40 bytes
284 @STACk :pred stride
293 add r11, sp, #40 @decrement stack pointer,to accomodate two variables
447 @ STACk : u4_qbits
453 @ Stack Usage : 0 byte
    [all...]
  /external/llvm/include/llvm/DebugInfo/PDB/
PDBTypes.h 345 enum class PDB_MemoryType { Code, Data, Stack, HeapCode };
  /libcore/ojluni/src/main/java/java/lang/
ClassLoader.java 49 import java.util.Stack;
    [all...]
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
writer.h 19 #include "internal/stack.h"
50 \tparam StackAllocator Type of allocator for allocating memory of stack.
61 \param levelDepth Initial capacity of stack.
338 internal::Stack<StackAllocator> level_stack_;
reader.h 23 #include "internal/stack.h"
140 kParseIterativeFlag = 4, //!< Iterative(constant complexity in terms of function call stack size) parsing.
361 It needs to allocate a stack for storing a single decoded string during
371 \tparam StackAllocator Allocator type for stack.
379 /*! \param stackAllocator Optional allocator for allocating stack memory. (Only use for non-destructive parsing)
380 \param stackCapacity stack capacity in bytes for storing a single decoded string. (Only use for non-destructive parsing)
455 // clear stack on any exit from ParseStream, e.g. due to exception
617 StackStream(internal::Stack<StackAllocator>& stack) : stack_(stack), length_(0) {}
    [all...]
  /external/clang/lib/Format/
UnwrappedLineFormatter.cpp 464 for (const ParenState &P : State.Stack) {
520 int AdditionalIndent = State.Stack.back().Indent -
638 State.Stack.back().BreakBeforeParameter = true;
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/assets/
AssetManager.java 19 import java.util.Stack;
74 final Stack<AssetLoadingTask> tasks = new Stack();
173 // check if it's currently processed (and the first element in the stack, thus not a dependency)
446 /** Removes a task from the loadQueue and adds it to the task stack. If the asset is already loaded (which can happen if it was
469 /** Adds a {@link AssetLoadingTask} to the task stack for the given asset.
491 /** Updates the current task on the top of the task stack.
506 // increase the number of loaded assets and pop the task from the stack
552 // pop the faulty task from the stack
563 // clear the rest of the stack
    [all...]
  /external/testng/src/main/java/org/testng/xml/
TestNGContentHandler.java 22 import java.util.Stack;
58 private Stack<Location> m_locations = new Stack<>();
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
StackStateAnimator.java 17 package com.android.systemui.statusbar.stack;
36 import java.util.Stack;
39 * An stack state animator which handles animations to new StackScrollStates
86 private Stack<AnimatorListenerAdapter> mAnimationListenerPool = new Stack<>();
    [all...]
  /external/clang/lib/Sema/
AnalysisBasedWarnings.cpp 216 // Make the processing stack and seed it with the entry block.
217 SmallVector<CFGBlock *, 16> Stack;
218 Stack.push_back(&cfg->getEntry());
220 while (!Stack.empty()) {
221 CFGBlock *CurBlock = Stack.back();
222 Stack.pop_back();
237 // Loop over successor blocks and add them to the Stack if their state
244 Stack.push_back(*I);
    [all...]
  /external/llvm/lib/Target/XCore/
XCoreISelLowering.cpp 147 // Dynamic stack
    [all...]
  /external/v8/tools/
profile.js 88 * during stack strace processing, specifies a position of the frame
233 * Records a tick event. Stack must contain a sequence of
236 * @param {Array<number>} stack Stack sample.
238 Profile.prototype.recordTick = function(stack) {
239 var processedStack = this.resolveAndFilterFuncs_(stack);
250 * @param {Array<number>} stack Stack sample.
252 Profile.prototype.resolveAndFilterFuncs_ = function(stack) {
256 for (var i = 0; i < stack.length; ++i)
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
CellLayout.java 68 import java.util.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;

Completed in 1660 milliseconds

1 2 3 4 5 6 78 91011>>