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

<<11121314151617181920>>

  /external/speex/libspeex/
cb_search_bfin.h 37 void compute_weighted_codebook(const signed char *shape_cb, const spx_word16_t *r, spx_word16_t *resp, spx_word16_t *resp2, spx_word32_t *E, int shape_cb_size, int subvect_size, char *stack)
  /external/v8/test/mjsunit/regress/
regress-798.js 35 assertEquals(3, e.stack.split('\n').length);
44 assertEquals(3, e.stack.split('\n').length);
53 assertEquals(3, e.stack.split('\n').length);
62 assertEquals(3, e.stack.split('\n').length);
75 assertEquals(3, e.stack.split('\n').length);
83 assertEquals(3, e.stack.split('\n').length);
90 // Check that the stack for an exception in a getter and setter produce the
91 // expected stack height.
  /external/chromium_org/v8/test/mjsunit/
stack-traces.js 127 // in the stack trace produced when running the given function.
134 assertTrue(e.stack.indexOf(expected[i]) != -1,
135 name + " doesn't contain expected[" + i + "] stack = " + e.stack);
139 assertEquals(e.stack.indexOf(unexpected[i]), -1,
154 assertEquals(-1, e.stack.indexOf('at new ReferenceError'),
171 assertTrue(e.stack.indexOf('at new ReferenceError') != -1,
178 // If an error occurs while the stack trace is being formatted it should
190 assertTrue(e.stack.indexOf('<error: ReferenceError') != -1,
196 // the stack frame. Put that in your pipe and smoke it
    [all...]
  /external/chromium_org/tools/valgrind/
suppressions.py 19 # an ellipsis wildcards zero or more functions in a stack.
107 """This class represents a single stack trace suppression.
112 stack: The lines comprising the stack trace for the suppression.
116 def __init__(self, description, type, stack, defined_at, regex):
119 description, type, stack, regex: same as class attributes
124 self.stack = stack
143 if not self.stack:
203 def __init__(self, description, type, stack, defined_at)
    [all...]
  /external/valgrind/main/memcheck/tests/
xml1.stderr.exp 36 <stack>
69 </stack>
71 <stack>
112 </stack>
120 <stack>
153 </stack>
161 <stack>
194 </stack>
202 <stack>
243 </stack>
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/bn/
bn_ctx.c 83 /* The stack frame info is resizing, set a first-time expansion size; */
103 /* Stack depth and allocation size */
118 /* A wrapper to manage the "stack frames" */
121 /* Array of indexes into the bignum stack */
123 /* Number of stack frames, and the size of the allocated array */
143 /* The "stack frames", if you will */
144 BN_STACK stack; member in struct:bignum_ctx
147 /* Depth of stack overflow */
160 BN_STACK *stack = &ctx->stack; local
    [all...]
  /external/compiler-rt/lib/asan/
asan_mac.cc 248 void ReadContextStack(void *context, uptr *stack, uptr *ssize) {
296 void asan_register_worker_thread(int parent_tid, StackTrace *stack) {
300 CreateThreadContextArgs args = { t, stack };
319 asan_register_worker_thread(context->parent_tid, &stack);
322 asan_free(context, &stack, FROM_MALLOC);
333 StackTrace *stack) {
335 (asan_block_context_t*) asan_malloc(sizeof(asan_block_context_t), stack);
348 asan_block_context_t *asan_ctxt = alloc_asan_context(ctxt, func, &stack); \
366 asan_block_context_t *asan_ctxt = alloc_asan_context(ctxt, func, &stack);
379 asan_block_context_t *asan_ctxt = alloc_asan_context(ctxt, func, &stack);
    [all...]
asan_new_delete.cc 41 return asan_memalign(0, size, &stack, type);
79 asan_free(ptr, &stack, type);
  /external/openssl/crypto/bn/
bn_ctx.c 83 /* The stack frame info is resizing, set a first-time expansion size; */
103 /* Stack depth and allocation size */
118 /* A wrapper to manage the "stack frames" */
121 /* Array of indexes into the bignum stack */
123 /* Number of stack frames, and the size of the allocated array */
143 /* The "stack frames", if you will */
144 BN_STACK stack; member in struct:bignum_ctx
147 /* Depth of stack overflow */
160 BN_STACK *stack = &ctx->stack; local
    [all...]
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
RecentsCreateFragment.java 143 final DocumentStack stack = mAdapter.getItem(position);
144 ((DocumentsActivity) getActivity()).onStackPicked(stack);
169 cursor.getColumnIndex(RecentColumns.STACK));
171 final DocumentStack stack = new DocumentStack(); local
172 DurableUtils.readFromArray(rawStack, stack);
175 // providers; we update the stack during the actual
178 stack.updateRoot(matchingRoots);
179 result.add(stack);
181 Log.w(TAG, "Failed to resolve stack: " + e);
223 final DocumentStack stack = getItem(position) local
    [all...]
  /art/runtime/arch/mips/
jni_entrypoints_mips.S 42 lw $a0, 0($sp) # restore registers from stack
48 addiu $sp, $sp, 32 # restore the stack
  /dalvik/hit/src/com/android/hit/
RootObj.java 41 public RootObj(RootType type, long id, int thread, StackTrace stack) {
45 mStack = stack;
  /dalvik/vm/compiler/template/armv5te/
TEMPLATE_MEM_OP_DECODE.S 13 mov r1, sp @ arg1 <- stack pointer
  /dalvik/vm/compiler/template/armv5te-vfp/
TEMPLATE_MEM_OP_DECODE.S 14 mov r1, sp @ arg1 <- stack pointer
  /dalvik/vm/mterp/mips/
OP_MONITOR_ENTER.S 10 EXPORT_PC() # export PC so we can grab stack trace
  /external/bison/data/
Makefile.am 19 c++-skel.m4 c++.m4 location.cc lalr1.cc glr.cc stack.hh \
  /external/bluetooth/bluedroid/btif/src/
bluetooth.c 434 bluetooth_device_t *stack = malloc(sizeof(bluetooth_device_t) ); local
435 memset(stack, 0, sizeof(bluetooth_device_t) );
436 stack->common.tag = HARDWARE_DEVICE_TAG;
437 stack->common.version = 0;
438 stack->common.module = (struct hw_module_t*)module;
439 stack->common.close = close_bluetooth_stack;
440 stack->get_bluetooth_interface = bluetooth__get_bluetooth_interface;
441 *abstraction = (struct hw_device_t*)stack;
455 .name = "Bluetooth Stack",
  /external/bluetooth/bluedroid/gki/
Android.mk 10 $(LOCAL_PATH)/../stack/include \
  /external/chromium-trace/trace-viewer/src/cc/
layer_viewer.css 14 layer-viewer > layer-tree-quad-stack-viewer {
  /external/chromium_org/base/files/
file_enumerator.h 8 #include <stack>
147 // A stack that keeps track of which subdirectories we still need to
149 std::stack<FilePath> pending_paths_;
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
pushnosize.asm 35 push byte 0 ; 6A 00; 64 bits pushed onto stack
37 push dword 0 ; 6A 00 - optimized to byte; note 64 bits pushed onto stack
38 push strict byte 0 ; 6A 00; 64 bits pushed onto stack
40 push strict dword 0 ; 68 00000000; note 64 bits pushed onto stack
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/rdf/tests/
testlib.asm 12 add esp,8 ; doh! clear up stack ;-)
  /external/chromium_org/ui/base/models/
tree_node_iterator.h 8 #include <stack>
96 std::stack<Position<NodeType> > positions_;
  /external/chromium_org/v8/test/mjsunit/regress/
regress-1591.js 28 var stack; variable
40 stack = err.stack;
46 assertTrue(stack.indexOf(expected_message) >= 0);
  /external/compiler-rt/lib/asan/tests/
asan_benchmarks_test.cc 73 int stack[1000]; local
74 Ident(stack);

Completed in 1163 milliseconds

<<11121314151617181920>>