HomeSort by relevance Sort by last modified time
    Searched refs:stack (Results 126 - 150 of 1681) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/compiler-rt/lib/sanitizer_common/
sanitizer_stacktrace.cc 72 // PCs in stack traces are actually the return addresses, that is,
75 uptr addr_frames_num = 0; // The number of stack frames for current
158 // On 32-bits we don't compress stack traces.
159 // On 64-bits we compress stack traces: if a given pc differes slightly from
162 uptr StackTrace::CompressStack(StackTrace *stack, u32 *compressed, uptr size) {
166 for (uptr i = 0; i < stack->size && i < size; i++) {
167 compressed[i] = stack->trace[i];
170 if (stack->size < size)
171 compressed[stack->size] = 0;
177 for (uptr i = 0, n = stack->size; i < n; i++)
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_suppressions.h 22 uptr IsSuppressed(ReportType typ, const ReportStack *stack);
  /external/grub/docs/
boot.S.texi 53 /* @r{Initialize the stack pointer.} */
54 movl $(stack + STACK_SIZE), %esp
78 /* @r{Our stack area.} */
79 .comm stack, STACK_SIZE
  /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/test/MC/ELF/
call-abs.s 16 .section .note.GNU-stack,"",@progbits
  /external/nist-sip/java/gov/nist/javax/sip/
EventWrapper.java 28 import gov.nist.javax.sip.stack.*;
  /external/nist-sip/java/gov/nist/javax/sip/stack/
SIPDialogErrorEvent.java 16 package gov.nist.javax.sip.stack;
SIPTransactionErrorEvent.java 26 package gov.nist.javax.sip.stack;
ServerResponseInterface.java 29 package gov.nist.javax.sip.stack;
39 * This is implemented by the application. The stack calls the message
StackMessageFactory.java 29 package gov.nist.javax.sip.stack;
34 * by the application and called by the stack for processing requests
35 * and responses. When a Request comes in off the wire, the stack calls
37 * When a response comes off the wire, the stack calls newSIPServerResponse
61 * Generate a new server response for the stack.
  /external/skia/src/gpu/
GrReducedClip.h 22 * This function takes a clip stack and a query rectangle and it produces a reduced set of
23 * SkClipStack::Elements that are equivalent to applying the full stack to the rectangle. The
33 void ReduceClipStack(const SkClipStack& stack,
  /external/stlport/stlport/
stack 42 # include_next <stack>
44 # include _STLP_NATIVE_HEADER(stack)
  /external/valgrind/main/drd/tests/
sem_as_mutex3.stderr.exp 7 (thread finished, call stack no longer available)
9 (thread finished, call stack no longer available)
sem_open3.stderr.exp 7 (thread finished, call stack no longer available)
9 (thread finished, call stack no longer available)
  /external/valgrind/main/memcheck/tests/
badfree-2trace.stderr.exp 4 Address 0x........ is not stack'd, malloc'd or (recently) free'd
9 Address 0x........ is on thread 1's stack
badfree.stderr.exp 4 Address 0x........ is not stack'd, malloc'd or (recently) free'd
9 Address 0x........ is on thread 1's stack
badfree3.stderr.exp 4 Address 0x........ is not stack'd, malloc'd or (recently) free'd
9 Address 0x........ is on thread 1's stack
buflen_check.stderr.exp 4 Address 0x........ is not stack'd, malloc'd or (recently) free'd
9 Address 0x........ is not stack'd, malloc'd or (recently) free'd
  /external/webkit/LayoutTests/fast/js/resources/
script-line-number.js 12 if (e.stack) {
14 parts = e.stack.split(":");
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
StackActivity.java 36 setContentView(R.layout.stack);
38 StackView stack = (StackView) findViewById(R.id.stack_view); local
39 stack.setAdapter(new ArrayAdapter<Drawable>(this, android.R.layout.simple_list_item_1,
57 stack.setDisplayedChild(0);
  /libcore/json/src/main/java/org/json/
JSONStringer.java 111 * Unlike the original implementation, this stack isn't limited to 20
114 private final List<Scope> stack = new ArrayList<Scope>(); field in class:JSONStringer
175 if (stack.isEmpty() && out.length() > 0) {
179 stack.add(empty);
194 stack.remove(stack.size() - 1);
203 * Returns the value on the top of the stack.
206 if (stack.isEmpty()) {
209 return stack.get(stack.size() - 1)
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/
stack 42 # include_next <stack>
44 # include _STLP_NATIVE_HEADER(stack)
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/asm/
smp.h 31 void *stack; member in struct:secondary_data
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/asm/
smp.h 31 void *stack; member in struct:secondary_data
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/asm/
smp.h 31 void *stack; member in struct:secondary_data

Completed in 2621 milliseconds

1 2 3 4 56 7 8 91011>>