/external/speex/libspeex/ |
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/memcheck/tests/ |
wrap8.stderr.exp | 2 PPC64 function redirection stack overflow
|
/frameworks/compile/mclinker/include/mcld/MC/ |
InputBuilder.h | 13 #include <stack> 95 std::stack<InputTree::iterator> m_ReturnStack;
|
/frameworks/compile/slang/ |
slang_rs_object_ref_count.h | 21 #include <stack> 74 std::stack<Scope*> mScopeStack;
|
/frameworks/ex/variablespeed/jni/ |
variablespeed.h | 33 #include <stack> 105 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...] |
Debugger.py | 120 text="Stack", command=self.show_stack, variable=self.vstack) 183 stack, i = self.idb.get_stack(self.frame, tb) 184 sv.load_stack(stack, i) 243 stack, i = self.idb.get_stack(self.frame, None) 244 sv.load_stack(stack, i) 335 self.stack = [] 337 def load_stack(self, stack, index=None): 338 self.stack = stack 340 for i in range(len(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...] |
Debugger.py | 120 text="Stack", command=self.show_stack, variable=self.vstack) 183 stack, i = self.idb.get_stack(self.frame, tb) 184 sv.load_stack(stack, i) 243 stack, i = self.idb.get_stack(self.frame, None) 244 sv.load_stack(stack, i) 335 self.stack = [] 337 def load_stack(self, stack, index=None): 338 self.stack = stack 340 for i in range(len(stack)) [all...] |
/external/chromium_org/third_party/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...] |
cffparse.c | 46 parser->top = parser->stack; 517 FT_Byte** data = parser->stack; 521 if ( parser->top >= parser->stack + 6 ) 587 FT_Byte** data = parser->stack; 593 if ( parser->top >= parser->stack + 4 ) 616 FT_Byte** data = parser->stack; 622 if ( parser->top >= parser->stack + 2 ) 640 FT_Byte** data = parser->stack; 646 if ( parser->top >= parser->stack + 3 ) 943 parser->top = parser->stack; [all...] |
/external/freetype/src/cff/ |
cffgload.c | 913 FT_Fixed* stack; local 924 /* compute random seed from stack address of parameter */ 934 decoder->top = decoder->stack; 937 stack = decoder->top; 974 /* this is an operand, push it on the stack */ 1011 if ( decoder->top - stack >= CFF_MAX_OPERANDS ) 1028 /* from the bottom of the stack. However, this seems not to be * [all...] |
cffparse.c | 46 parser->top = parser->stack; 513 FT_Byte** data = parser->stack; 517 if ( parser->top >= parser->stack + 6 ) 583 FT_Byte** data = parser->stack; 589 if ( parser->top >= parser->stack + 4 ) 612 FT_Byte** data = parser->stack; 618 if ( parser->top >= parser->stack + 2 ) 636 FT_Byte** data = parser->stack; 642 if ( parser->top >= parser->stack + 3 ) 939 parser->top = parser->stack; [all...] |
/external/compiler-rt/lib/msan/ |
msan.cc | 103 // Array of stack origins. 138 "Origin per-stack limit invalid: %d. Must be 0 (unlimited) or in [1, " 190 void GetStackTrace(StackTrace *stack, uptr max_s, uptr pc, uptr bp, 196 return stack->Unwind(max_s, pc, bp, 0, 0, 0, request_fast_unwind); 198 stack->Unwind(max_s, pc, bp, 0, t->stack_top(), t->stack_bottom(), 220 ReportUMR(&stack, report_origin); 236 // Instances of this class may live on the signal handler stack, and data size 267 u32 ChainOrigin(u32 id, StackTrace *stack) { 283 StackDepotHandle h = StackDepotPut_WithHandle(stack->trace, stack->size) [all...] |
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/ |
RecentsView.java | 116 TaskStack stack = mStacks.get(i); local 117 TaskStackView stackView = new TaskStackView(getContext(), stack); 130 /** Removes all the task stack views from this recents view. */ 141 /** Launches the focused task from the first stack if possible */ 143 // Get the first stack view 149 TaskStack stack = stackView.mStack; local 150 // Iterate the stack views and try and find the focused task 156 onTaskViewClicked(stackView, tv, stack, task, false); 167 // Get the first stack view 173 TaskStack stack = stackView.mStack local 369 TaskStack stack = mStacks.get(i); local [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...] |
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/ |
HtmlTree.java | 31 import java.util.Stack; 105 private final Stack<Integer> begins = new Stack<Integer>(); 106 private final Stack<Integer> ends = new Stack<Integer>(); 268 int stack = 0; local 279 stack++; 285 if (stack == 0) { 288 stack--; 293 if (stack == 0 && sb.length() >= chunkSize) 979 private Stack<Integer> stack; typedefs [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
plistlib.py | 155 self.stack = [] 160 self.stack.append(element) 166 assert self.stack.pop() == element 396 self.stack = [] 425 self.stack[-1][self.currentKey] = value 427 elif not self.stack: 431 self.stack[-1].append(value) 447 self.stack.append(d) 449 self.stack.pop() 457 self.stack.append(a [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
plistlib.py | 155 self.stack = [] 160 self.stack.append(element) 166 assert self.stack.pop() == element 396 self.stack = [] 425 self.stack[-1][self.currentKey] = value 427 elif not self.stack: 431 self.stack[-1].append(value) 447 self.stack.append(d) 449 self.stack.pop() 457 self.stack.append(a [all...] |
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/cff/ |
cffparse.c | 46 parser->top = parser->stack; 517 FT_Byte** data = parser->stack; 521 if ( parser->top >= parser->stack + 6 ) 587 FT_Byte** data = parser->stack; 593 if ( parser->top >= parser->stack + 4 ) 616 FT_Byte** data = parser->stack; 622 if ( parser->top >= parser->stack + 2 ) 640 FT_Byte** data = parser->stack; 646 if ( parser->top >= parser->stack + 3 ) 943 parser->top = parser->stack; [all...] |
/external/chromium_org/third_party/libvpx/source/libvpx/vpx_ports/ |
x86_abi_support.asm | 164 ; This macro aligns the stack to the given alignment (in bytes). The stack 165 ; is left such that the previous value of the stack pointer is the first 166 ; argument on the stack (ie, the inverse of this macro is 'pop rsp.') 322 ; store registers 6-n on the stack 324 ; Win64 ABI requires 16 byte stack alignment, but then pushes an 8 byte return 325 ; value. Typically we follow this up with 'push rbp' - re-aligning the stack - 384 ; Tell GNU ld that we don't require an executable stack. 386 section .note.GNU-stack noalloc noexec nowrite progbits 389 section .note.GNU-stack noalloc noexec nowrite progbit [all...] |
/external/libvpx/libvpx/vpx_ports/ |
x86_abi_support.asm | 164 ; This macro aligns the stack to the given alignment (in bytes). The stack 165 ; is left such that the previous value of the stack pointer is the first 166 ; argument on the stack (ie, the inverse of this macro is 'pop rsp.') 322 ; store registers 6-n on the stack 324 ; Win64 ABI requires 16 byte stack alignment, but then pushes an 8 byte return 325 ; value. Typically we follow this up with 'push rbp' - re-aligning the stack - 384 ; Tell GNU ld that we don't require an executable stack. 386 section .note.GNU-stack noalloc noexec nowrite progbits 389 section .note.GNU-stack noalloc noexec nowrite progbit [all...] |