HomeSort by relevance Sort by last modified time
    Searched full:stack (Results 426 - 450 of 10778) sorted by null

<<11121314151617181920>>

  /prebuilts/ndk/9/platforms/android-18/arch-mips/usr/lib/
crtbegin_so.o 
  /prebuilts/ndk/9/platforms/android-3/arch-arm/usr/lib/
crtbegin_so.o 
  /prebuilts/ndk/9/platforms/android-4/arch-arm/usr/lib/
crtbegin_so.o 
  /prebuilts/ndk/9/platforms/android-5/arch-arm/usr/lib/
crtbegin_so.o 
  /prebuilts/ndk/9/platforms/android-8/arch-arm/usr/lib/
crtbegin_so.o 
  /prebuilts/ndk/9/platforms/android-9/arch-arm/usr/lib/
crtbegin_so.o 
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/lib/
crtbegin_so.o 
  /external/chromium_org/chrome/renderer/resources/extensions/
last_error.js 19 * optional |stack|.
21 function set(name, message, stack, targetChrome) {
23 if (stack != null && stack != '')
24 errorMessage += '\n' + stack;
72 function run(name, message, stack, callback, args) {
74 set(name, message, stack, targetChrome);
  /external/chromium_org/native_client_sdk/src/libraries/error_handling/
error_handling.h 35 * The json form will install a default handler which will walk the stack
46 /** Request an alternate signal handling stack for this thread.
48 * Specifies an alternate stack which will be used when this thread enters
50 * stack may have overflowed or may be too small to handler the exception.
52 * Returns the allocated stack or MAP_FAILED.
56 * thread's original stack.
77 /** Unwind the stack by one frame.
  /external/chromium_org/v8/test/webkit/fast/js/
stack-overflow-arrity-catch.js 24 description('Test that if an arrity check causes a stack overflow, the exception goes to the right catch');
40 // Should get here because of stack overflow,
41 // now cause a stack overflow exception due to arrity processing
45 // (1) It is dendent on the stack size if we arrive here, in (2) or
63 // (2) It is dendent on the stack size if we arrive here, in (1) or
71 // Should get here because of stack overflow,
72 // now cause a stack overflow exception due to arrity processing
  /external/clang/test/Analysis/
stackaddrleak.c 10 } // expected-warning{{Address of stack memory associated with local variable 'str' is still referred to by the global variable 'p' upon returning to the caller. This will be a dangling reference}}
20 } // expected-warning{{Address of stack memory allocated by call to alloca() on line 19 is still referred to by the global variable 'p' upon returning to the caller. This will be a dangling reference}}
22 // PR 7383 - previosly the stack address checker would crash on this example
36 } // expected-warning{{Address of stack memory associated with local variable 'x' is still referred to by the global variable 'a' upon returning}} expected-warning{{Address of stack memory associated with local variable 'x' is still referred to by the global variable 'b' upon returning}}
40 return (intptr_t)&x; // expected-warning{{Address of stack memory associated with local variable 'x' returned to caller}}
52 } // expected-warning{{Address of stack memory associated with local variable 'x' is still referred to by the global variable 'ip' upon returning}}
  /external/compiler-rt/lib/asan/lit_tests/TestCases/Linux/
swapcontext_test.cc 35 char x[32] = {0}; // Stack gets poisoned.
39 // (b) Jump into the original function. Stack remains poisoned unless we do
50 printf("Child stack: %p\n", child_stack);
63 // Touch childs's stack to make sure it's unpoisoned.
71 char stack[kStackSize + 1]; local
74 ret += Run(argc - 1, 0, stack);
77 ret += Run(argc - 1, 1, stack);
  /external/llvm/test/CodeGen/X86/
win_chkstk.ll 9 ; allocated on the stack. Windows uses __chkstk and mingw uses __alloca. __alloca
10 ; and the 32-bit version of __chkstk will probe the stack and adjust the stack pointer.
11 ; The 64-bit version of __chkstk is only responsible for probing the stack. The 64-bit
12 ; prologue is responsible for adjusting the stack pointer.
14 ; Stack allocation >= 4096 bytes will require call to __chkstk in the Windows ABI.
26 ; Make sure we don't call __chkstk or __alloca when we have less than a 4096 stack
  /libcore/libart/src/main/java/dalvik/system/
VMStack.java 20 * Provides a limited interface to the Dalvik VM stack. This class is mostly
51 * Returns the first ClassLoader on the call stack that isn't either of
58 * Retrieves the stack trace from the specified thread.
62 * @return an array of stack trace elements, or null if the thread
63 * doesn't have a stack trace (e.g. because it exited)
68 * Retrieves a partial stack trace from the specified thread into
74 * preallocated array for use when only the top of stack is
  /external/compiler-rt/lib/asan/
asan_stack.h 24 void PrintStack(StackTrace *stack);
28 // Get the stack trace with the given pc and bp.
29 // The pc will be in the position 0 of the resulting stack trace.
33 StackTrace stack; \
34 GetStackTrace(&stack, max_s, pc, bp, 0, 0, fast)
37 StackTrace stack; \
45 GetStackTrace(&stack, max_s, pc, bp, \
50 // NOTE: A Rule of thumb is to retrieve stack trace in the interceptors
52 // don't want stack trace to contain functions from ASan internals.
78 PrintStack(&stack); \
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/data/
UniqueStack.java 25 * The {@code ResourceStack} represents a LIFO stack of unique objects (resources).
28 * An attempt to insert on a stack an object that is already there will fail and result with a
43 // Contains a stack of all stored objects.
45 // A HashSet allowing quick look-ups on the stack.
80 * Add an object to a stack. Object will be added only if it is not already on the stack.
123 * Removes last added object from the stack.
126 * @throws NoSuchElementException - if the stack is empty
146 * Returns {@code true} if this stack contains no elements.
148 * @return {@code true} if this stack contains no elements
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
StreamUtil.java 96 byte[] stack = new byte[5];
97 int pos = stack.length;
99 stack[--pos] = (byte)(tagNo & 0x7F);
104 stack[--pos] = (byte)(tagNo & 0x7F | 0x80);
108 length += stack.length - pos;
  /external/guava/guava-testlib/src/com/google/common/testing/
TearDownStack.java 29 * A {@code TearDownStack} contains a stack of {@link TearDown} instances.
40 final LinkedList<TearDown> stack = new LinkedList<TearDown>(); field in class:TearDownStack
54 stack.addFirst(tearDown);
62 for (TearDown tearDown : stack) {
74 stack.clear();
  /external/llvm/unittests/Support/
ManagedStatic.cpp 31 // Valgrind's leak checker complains glibc's stack allocation.
32 // To appease valgrind, we provide our own stack for each thread.
34 void *stack = malloc(n); local
37 pthread_attr_setstack(&a, stack, n);
39 return stack;
  /external/valgrind/main/drd/tests/
bar_bad_xml.stderr.exp 38 <stack>
55 </stack>
65 <stack>
82 </stack>
86 <stack>
103 </stack>
114 <stack>
131 </stack>
135 <stack>
152 </stack>
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/stack/stack.cons.alloc/
ctor_alloc.pass.cpp 10 // <stack>
13 // explicit stack(const Alloc& a);
15 #include <stack>
21 : private std::stack<int, std::deque<int, test_allocator<int> > >
23 typedef std::stack<int, std::deque<int, test_allocator<int> > > base;
  /external/v8/src/
json.js 64 function SerializeArray(value, replacer, stack, indent, gap) {
65 if (!%PushIfAbsent(stack, value)) {
73 var strP = JSONSerialize($String(i), value, replacer, stack,
90 stack.pop();
94 function SerializeObject(value, replacer, stack, indent, gap) {
95 if (!%PushIfAbsent(stack, value)) {
106 var strP = JSONSerialize(p, value, replacer, stack, indent, gap);
118 var strP = JSONSerialize(p, value, replacer, stack, indent, gap);
138 stack.pop();
142 function JSONSerialize(key, holder, replacer, stack, indent, gap)
    [all...]
  /external/llvm/test/CodeGen/SystemZ/
args-01.ll 1 ; Test the handling of GPR, FPR and stack arguments when no extension
9 ; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s -check-prefix=CHECK-STACK
20 ; The order of the CHECK-STACK stores doesn't matter. It would be OK to reorder
55 ; CHECK-STACK-LABEL: foo:
56 ; CHECK-STACK: aghi %r15, -256
57 ; CHECK-STACK: la [[REGISTER:%r[0-5]+]], {{224|240}}(%r15)
58 ; CHECK-STACK: stg [[REGISTER]], 216(%r15)
59 ; CHECK-STACK: mvghi 208(%r15), 0
60 ; CHECK-STACK: mvhi 204(%r15), 0
61 ; CHECK-STACK: mvghi 192(%r15),
    [all...]
args-02.ll 1 ; Test the handling of GPR, FPR and stack arguments when integers are
9 ; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s -check-prefix=CHECK-STACK
21 ; The order of the CHECK-STACK stores doesn't matter. It would be OK to reorder
56 ; CHECK-STACK-LABEL: foo:
57 ; CHECK-STACK: aghi %r15, -256
58 ; CHECK-STACK: la [[REGISTER:%r[0-5]+]], {{224|240}}(%r15)
59 ; CHECK-STACK: stg [[REGISTER]], 216(%r15)
60 ; CHECK-STACK: mvghi 208(%r15), 0
61 ; CHECK-STACK: mvhi 204(%r15), 0
62 ; CHECK-STACK: mvghi 192(%r15), -
    [all...]
  /external/chromium_org/chrome/browser/ui/panels/
stacked_panel_browsertest.cc 24 StackedPanelCollection* stack = panel_manager->CreateStack(); local
26 Panel* panel1 = CreateStackedPanel("1", panel1_initial_bounds, stack);
28 Panel* panel2 = CreateStackedPanel("2", panel2_initial_bounds, stack);
30 Panel* panel3 = CreateStackedPanel("3", panel3_initial_bounds, stack);
39 // Check that all 3 panels are in a stack.
43 ASSERT_EQ(3, stack->num_panels());
44 EXPECT_EQ(stack, panel1->stack());
45 EXPECT_EQ(stack, panel2->stack());
118 StackedPanelCollection* stack = panel_manager->CreateStack(); local
215 StackedPanelCollection* stack = panel_manager->CreateStack(); local
298 StackedPanelCollection* stack = panel_manager->CreateStack(); local
345 StackedPanelCollection* stack = panel_manager->CreateStack(); local
452 StackedPanelCollection* stack = panel_manager->CreateStack(); local
500 StackedPanelCollection* stack = panel_manager->CreateStack(); local
575 StackedPanelCollection* stack = panel_manager->CreateStack(); local
601 StackedPanelCollection* stack = panel_manager->CreateStack(); local
817 StackedPanelCollection* stack = panel_manager->stacks().front(); local
844 StackedPanelCollection* stack = panel_manager->stacks().front(); local
859 StackedPanelCollection* stack = panel_manager->CreateStack(); local
930 StackedPanelCollection* stack = panel_manager->stacks().front(); local
946 StackedPanelCollection* stack = panel_manager->CreateStack(); local
1170 StackedPanelCollection* stack = panel_manager->CreateStack(); local
1203 StackedPanelCollection* stack = panel_manager->CreateStack(); local
1267 StackedPanelCollection* stack = panel_manager->CreateStack(); local
1302 StackedPanelCollection* stack = panel_manager->CreateStack(); local
1328 StackedPanelCollection* stack = panel_manager->CreateStack(); local
1369 StackedPanelCollection* stack = panel_manager->CreateStack(); local
1397 StackedPanelCollection* stack = panel_manager->CreateStack(); local
    [all...]

Completed in 1449 milliseconds

<<11121314151617181920>>