HomeSort by relevance Sort by last modified time
    Searched refs:stack (Results 551 - 575 of 2692) sorted by null

<<21222324252627282930>>

  /external/clang/INPUTS/
all-std-headers.cpp 43 #include <stack>
  /external/marisa-trie/lib/marisa/
trie-inline.h 259 Vector<Cell> stack; local
260 stack.push_back(cell);
263 Cell &cur = stack[stack_pos - 1];
287 if (stack_pos == stack.size()) {
291 stack.push_back(cell);
293 stack[stack_pos].set_length(key.length());
294 stack[stack_pos - 1].set_node(stack[stack_pos - 1].node() + 1);
  /external/marisa-trie/v0_1_5/lib/marisa_alpha/
trie-inline.h 264 Vector<Cell> stack; local
265 stack.push_back(cell);
268 Cell &cur = stack[stack_pos - 1];
292 if (stack_pos == stack.size()) {
296 stack.push_back(cell);
298 stack[stack_pos].set_length(key.length());
299 stack[stack_pos - 1].set_node(stack[stack_pos - 1].node() + 1);
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
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;
  /external/opencv/cv/src/
cvapprox.cpp 531 CvSeq* stack = 0; local
545 stack = cvCreateSeq( 0, sizeof(CvSeq), sizeof(CvSlice), temp_storage );
559 cvSeqPush( stack, &slice );
599 /* 2. initialize the stack */
610 cvSeqPush( stack, &right_slice );
611 cvSeqPush( stack, &slice );
618 while( stack->total != 0 )
620 cvSeqPop( stack, &slice );
668 cvSeqPush( stack, &right_slice );
669 cvSeqPush( stack, &slice )
735 CvSeq* stack = 0; local
    [all...]
  /external/proguard/src/proguard/preverify/
CodePreverifier.java 109 // Collect the stack map frames.
126 // Convert the stack values to types.
140 // Compress the stack map frames if the target is not Java Micro Edition.
198 // Remove any stack map (table) attribute from the code attribute.
212 // Put the frames into a stack map attribute.
221 // Put the frames into a stack map table attribute.
225 // Fill out the name of the stack map attribute.
229 // Add the new stack map (table) attribute to the code attribute.
328 * stack. If necessary, class constants are added to the constant pool
335 TracedStack stack)
500 VerificationType[] stack = fullFrame.stack; local
    [all...]
  /external/regex-re2/util/
util.h 25 #include <stack>
39 using std::stack;
  /external/speex/libspeex/
nb_celp.h 77 char *stack; /**< Pseudo-stack allocation for temporary memory */ member in struct:EncState
137 char *stack; /**< Pseudo-stack allocation for temporary memory */ member in struct:DecState
vq.c 76 void vq_nbest(spx_word16_t *in, const spx_word16_t *codebook, int len, int entries, spx_word32_t *E, int N, int *nbest, spx_word32_t *best_dist, char *stack)
110 void vq_nbest_sign(spx_word16_t *in, const spx_word16_t *codebook, int len, int entries, spx_word32_t *E, int N, int *nbest, spx_word32_t *best_dist, char *stack)
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
dfs-visit.h 22 #include <stack>
62 // An Fst state's DFS stack state
89 stack<DfsState<Arc> *> state_stack; // DFS execution stack
  /external/valgrind/main/gdbserver_tests/
mcsignopass.stderr.exp 8 Address 0x........ is not stack'd, malloc'd or (recently) free'd
mcsigpass.stderr.exp 8 Address 0x........ is not stack'd, malloc'd or (recently) free'd
  /external/valgrind/main/helgrind/tests/
filter_xml 11 # (2) Removal of stack frames
12 # Stack frames whose associated file name does not match any name in
24 # these files will be removed from stack frames matching these files.
143 if ($line =~ /<\/stack>/) {
  /external/valgrind/main/memcheck/tests/
wrap8.stderr.exp 2 PPC64 function redirection stack overflow
  /frameworks/compile/mclinker/include/mcld/MC/
InputBuilder.h 16 #include <stack>
99 std::stack<InputTree::iterator> m_ReturnStack;
  /frameworks/compile/mclinker/lib/Support/
DefSymParser.cpp 36 std::stack<const char*> operatorStack;
37 std::stack<unsigned long> operandStack;
66 // top of stack, we clear stack till top is lower precedence
88 // pop off any remaining operators from operator stack
102 // operand stack, use them in evaluate expression and push result
103 // back to stack
138 // once complete queue is processed, stack top is result
  /frameworks/compile/slang/
slang_rs_object_ref_count.h 21 #include <stack>
76 std::stack<Scope*> mScopeStack;
  /frameworks/ex/variablespeed/jni/
variablespeed.h 33 #include <stack>
104 std::stack<int16*> freeBuffers_;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
RemoteDebugger.py 102 stack, i = self.idb.get_stack(frame, tb)
103 ##print >>sys.__stderr__, "get_stack() ->", stack
104 stack = [(wrap_frame(frame), k) for frame, k in stack]
105 ##print >>sys.__stderr__, "get_stack() ->", stack
106 return stack, i
307 stack, i = self.call("get_stack", frame._fid, tbid)
308 stack = [(FrameProxy(self.conn, fid), k) for fid, k in stack]
309 return stack,
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
RemoteDebugger.py 102 stack, i = self.idb.get_stack(frame, tb)
103 ##print >>sys.__stderr__, "get_stack() ->", stack
104 stack = [(wrap_frame(frame), k) for frame, k in stack]
105 ##print >>sys.__stderr__, "get_stack() ->", stack
106 return stack, i
307 stack, i = self.call("get_stack", frame._fid, tbid)
308 stack = [(FrameProxy(self.conn, fid), k) for fid, k in stack]
309 return stack,
    [all...]
  /external/chromium_org/third_party/freetype/src/cff/
cffgload.c 894 FT_Fixed* stack; local
905 /* compute random seed from stack address of parameter */
915 decoder->top = decoder->stack;
918 stack = decoder->top;
955 /* this is an operand, push it on the stack */
989 if ( decoder->top - stack >= CFF_MAX_OPERANDS )
1006 /* from the bottom of the stack. However, this seems not to be */
1011 FT_Int num_args = (FT_Int)( args - decoder->stack );
    [all...]
  /external/freetype/src/cff/
cffgload.c 917 FT_Fixed* stack; local
928 /* compute random seed from stack address of parameter */
938 decoder->top = decoder->stack;
941 stack = decoder->top;
978 /* this is an operand, push it on the stack */
1015 if ( decoder->top - stack >= CFF_MAX_OPERANDS )
    [all...]
  /external/compiler-rt/lib/asan/
asan_interceptors.cc 41 // that no extra frames are created, and stack trace contains
71 offset2, length2, &stack); \
162 CreateThreadContextArgs args = { t, &stack };
190 static void ClearShadowMemoryForContextStack(uptr stack, uptr ssize) {
193 uptr bottom = stack & ~(PageSize - 1);
194 ssize += stack - bottom;
210 // Clear shadow memory for new context (it may share stack
212 uptr stack, ssize; local
213 ReadContextStack(ucp, &stack, &ssize);
214 ClearShadowMemoryForContextStack(stack, ssize)
    [all...]
  /frameworks/base/services/java/com/android/server/am/
TaskRecord.java 57 /** Current stack */
58 ActivityStack stack; field in class:TaskRecord
155 if (!r.finishing && r != notTop && stack.okToShow(r)) {
163 * Reorder the history stack so that the activity at the given index is
168 + " to stack at top", new RuntimeException("here").fillInStackTrace());
220 if (stack.finishActivityLocked(r, Activity.RESULT_CANCELED, null, "clear", false)) {
237 * stack to the given task, then look for
238 * an instance of that activity in the stack and, if found, finish all
265 if (stack.finishActivityLocked(r, Activity.RESULT_CANCELED, null, "clear",
278 stack.finishActivityLocked(ret, Activity.RESULT_CANCELED, null
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/lib/html/parser/
HtmlTree.java 28 import java.util.Stack;
100 private final Stack<Integer> begins = new Stack<Integer>();
101 private final Stack<Integer> ends = new Stack<Integer>();
231 int stack = 0; local
242 stack++;
248 if (stack == 0) {
251 stack--;
256 if (stack == 0 && sb.length() >= chunkSize)
    [all...]

Completed in 1839 milliseconds

<<21222324252627282930>>