HomeSort by relevance Sort by last modified time
    Searched refs:stack (Results 76 - 100 of 2132) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/compiler-rt/lib/msan/
msan_poisoning.h 32 void CopyOrigin(const void *dst, const void *src, uptr size, StackTrace *stack);
37 StackTrace *stack);
42 StackTrace *stack);
46 void CopyMemory(void *dst, const void *src, uptr size, StackTrace *stack);
55 void PoisonMemory(const void *dst, uptr size, StackTrace *stack);
  /external/skia/tests/
ClipStackTest.cpp 54 // Build up a clip stack with a path, an empty clip, and a rect.
146 static void assert_count(skiatest::Reporter* reporter, const SkClipStack& stack,
148 SkClipStack::B2TIter iter(stack);
159 SkClipStack stack; local
170 stack.clipRect(gRects[i], SkMatrix::I(), kUnion_SkClipOp, false);
173 assert_count(reporter, stack, 4);
179 SkClipStack::B2TIter iter(stack);
195 SkClipStack::Iter iter(stack, SkClipStack::Iter::kTop_IterStart);
211 SkClipStack::Iter iter(stack, SkClipStack::Iter::kBottom_IterStart);
276 SkClipStack stack; local
852 SkClipStack stack; local
996 SkClipStack stack; local
1106 SkClipStack stack; local
1128 SkClipStack stack; local
1225 SkClipStack stack; local
1331 SkClipStack stack; local
1432 SkClipStack stack; local
1450 SkClipStack stack; local
1464 SkClipStack stack; local
1530 SkClipStack stack; local
    [all...]
  /external/skqp/tests/
ClipStackTest.cpp 54 // Build up a clip stack with a path, an empty clip, and a rect.
146 static void assert_count(skiatest::Reporter* reporter, const SkClipStack& stack,
148 SkClipStack::B2TIter iter(stack);
159 SkClipStack stack; local
170 stack.clipRect(gRects[i], SkMatrix::I(), kUnion_SkClipOp, false);
173 assert_count(reporter, stack, 4);
179 SkClipStack::B2TIter iter(stack);
195 SkClipStack::Iter iter(stack, SkClipStack::Iter::kTop_IterStart);
211 SkClipStack::Iter iter(stack, SkClipStack::Iter::kBottom_IterStart);
276 SkClipStack stack; local
852 SkClipStack stack; local
996 SkClipStack stack; local
1106 SkClipStack stack; local
1128 SkClipStack stack; local
1225 SkClipStack stack; local
1331 SkClipStack stack; local
1429 SkClipStack stack; local
1494 SkClipStack stack; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
ifdef.py 55 stack = []
80 stack.append((ok, ko, word))
83 stack.append((ok, not ko, word))
86 stack.append((ok, -1, word))
89 stack.append((ok, -1, ''))
91 elif keyword == 'else' and stack:
92 s_ok, s_ko, s_word = stack[-1]
99 stack[-1] = s_ok, s_ko, s_word
100 elif keyword == 'endif' and stack:
101 s_ok, s_ko, s_word = stack[-1]
    [all...]
  /external/python/cpython2/Tools/scripts/
ifdef.py 55 stack = []
80 stack.append((ok, ko, word))
83 stack.append((ok, not ko, word))
86 stack.append((ok, -1, word))
89 stack.append((ok, -1, ''))
91 elif keyword == 'else' and stack:
92 s_ok, s_ko, s_word = stack[-1]
99 stack[-1] = s_ok, s_ko, s_word
100 elif keyword == 'endif' and stack:
101 s_ok, s_ko, s_word = stack[-1
    [all...]
  /external/python/cpython3/Tools/scripts/
ifdef.py 55 stack = []
80 stack.append((ok, ko, word))
83 stack.append((ok, not ko, word))
86 stack.append((ok, -1, word))
89 stack.append((ok, -1, ''))
91 elif keyword == 'else' and stack:
92 s_ok, s_ko, s_word = stack[-1]
99 stack[-1] = s_ok, s_ko, s_word
100 elif keyword == 'endif' and stack:
101 s_ok, s_ko, s_word = stack[-1
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
ExecutionStack.java 26 * Representation of a Java method execution stack.
33 /** {@code non-null;} array of stack contents */
34 private final TypeBearer[] stack; field in class:ExecutionStack
37 * {@code non-null;} array specifying whether stack contents have entries
42 * {@code >= 0;} stack pointer (points one past the end) / current stack
50 * @param maxStack {@code >= 0;} the maximum size of the stack for this
55 stack = new TypeBearer[maxStack];
66 ExecutionStack result = new ExecutionStack(stack.length);
68 System.arraycopy(stack, 0, result.stack, 0, stack.length)
    [all...]
  /external/libdivsufsort/include/
divsufsort_private.h 157 stack[ssize].a = (_a), stack[ssize].b = (_b),\
158 stack[ssize].c = (_c), stack[ssize++].d = (_d);\
163 stack[ssize].a = (_a), stack[ssize].b = (_b),\
164 stack[ssize].c = (_c), stack[ssize].d = (_d), stack[ssize++].e = (_e);\
170 (_a) = stack[--ssize].a, (_b) = stack[ssize].b,
    [all...]
  /device/linaro/bootloader/edk2/StdLib/LibC/CRT/Ia32/
lldiv.c 39 ; Arguments are passed on the stack:
45 ; NOTE: this routine removes the parameters from the stack.
47 ; Original local stack when calling _alldiv
64 ; Set up the local stack for NULL Reminder pointer
70 ; Set up the local stack for Divisor parameter
78 ; Set up the local stack for Dividend parameter
91 ; Adjust stack local
llmul.c 35 ; Original local stack when calling _allmul
52 ; Set up the local stack for Multiplicand parameter
60 ; Set up the local stack for Multiplier parameter
73 ; Adjust stack local
  /external/compiler-rt/lib/asan/
asan_malloc_mac.cc 31 void *p = asan_memalign(alignment, size, &stack, FROM_MALLOC)
34 void *p = asan_malloc(size, &stack)
37 void *p = asan_realloc(ptr, size, &stack);
40 void *p = asan_calloc(count, size, &stack);
43 void *p = asan_memalign(GetPageSizeCached(), size, &stack, FROM_MALLOC);
46 asan_free(ptr, &stack, FROM_MALLOC);
56 ReportMacMzReallocUnknown((uptr)ptr, (uptr)zone_ptr, zone_name, &stack);
  /external/libnetfilter_conntrack/src/conntrack/
stack.c 15 #include "internal/stack.h"
17 struct stack { struct
24 struct stack *stack_create(size_t elem_size, int max_elems)
26 struct stack *s;
28 s = calloc(sizeof(struct stack), 1);
43 void stack_destroy(struct stack *s)
49 int stack_push(struct stack *s, void *data)
60 int stack_pop(struct stack *s, void *data)
  /external/linux-kselftest/tools/testing/selftests/vDSO/
vdso_standalone_test_x86.c 75 __attribute__((externally_visible)) void c_main(void **stack)
77 /* Parse the stack */
78 long argc = (long)*stack;
79 stack += argc + 2;
82 while(*stack)
83 stack++;
84 stack++;
87 vdso_init_from_auxv((void *)stack);
112 * This is the real entry point. It passes the initial stack into
  /external/mesa3d/src/compiler/glsl/tests/
sexps.py 51 stack = [[]]
55 stack.append([])
57 if len(stack) == 1:
59 sexp = stack.pop()
60 stack[-1].append(sexp)
62 stack[-1].append(token)
63 if len(stack) != 1:
65 if len(stack[0]) != 1:
67 return stack[0][0]
  /external/guava/guava-testlib/test/com/google/common/testing/
TearDownStackTest.java 32 final TearDownStack stack = buildTearDownStack(); local
35 stack.addTearDown(tearDown);
39 stack.runTearDown();
45 final TearDownStack stack = buildTearDownStack(); local
48 stack.addTearDown(tearDownOne);
59 stack.addTearDown(tearDownTwo);
64 stack.runTearDown();
71 final TearDownStack stack = buildTearDownStack(); local
74 stack.addTearDown(tearDownOne);
77 stack.addTearDown(tearDownTwo)
    [all...]
  /external/proguard/src/proguard/classfile/attribute/preverification/
FullFrame.java 37 public VerificationType[] stack; field in class:FullFrame
49 * Creates a FullFrame with the given variables and stack.
53 VerificationType[] stack)
58 stack.length,
59 stack);
64 * Creates a FullFrame with the given variables and stack.
70 VerificationType[] stack)
76 this.stack = stack;
93 * Applies the given verification type visitor to all stack
    [all...]
  /external/libopus/celt/
stack_alloc.h 5 @brief Temporary memory allocation on stack
55 * @def ALIGN(stack, size)
57 * Aligns the stack to a 'size' boundary
59 * @param stack Stack
64 * @def PUSH(stack, size, type)
66 * Allocates 'size' elements of type 'type' on the stack
68 * @param stack Stack
76 * Declare variable on stack
    [all...]
  /external/libffi/src/pa/
ffi.c 84 /* PA has a downward growing stack, which looks like this:
101 The first four argument words on the stack are reserved for use by
113 The registers are allocated in the same manner as stack slots.
114 This allows the callee to save its arguments on the stack if
125 The rest of the arguments are passed on the stack starting at SP-52,
129 or in the stack. */
131 /* ffi_prep_args is called by the assembly routine once stack space
134 The following code will put everything into the stack frame
142 void ffi_prep_args_pa32(UINT32 *stack, extended_cif *ecif, unsigned bytes)
151 debug(1, "%s: stack = %p, ecif = %p, bytes = %u\n", __FUNCTION__, stack
    [all...]
  /external/python/cpython2/Modules/_ctypes/libffi/src/pa/
ffi.c 84 /* PA has a downward growing stack, which looks like this:
101 The first four argument words on the stack are reserved for use by
113 The registers are allocated in the same manner as stack slots.
114 This allows the callee to save its arguments on the stack if
125 The rest of the arguments are passed on the stack starting at SP-52,
129 or in the stack. */
131 /* ffi_prep_args is called by the assembly routine once stack space
134 The following code will put everything into the stack frame
142 void ffi_prep_args_pa32(UINT32 *stack, extended_cif *ecif, unsigned bytes)
151 debug(1, "%s: stack = %p, ecif = %p, bytes = %u\n", __FUNCTION__, stack
    [all...]
  /cts/tools/dasm/src/dasm/
parser.java 812 java.util.Stack stack,
817 return action_obj.CUP$do_action(act_num, parser, stack, top);
    [all...]
  /external/clang/test/CodeGen/
2002-12-15-StructParameters.c 5 void *stack; member in struct:__anon16947
  /external/libunwind/src/ppc/
longjmp.S 34 /* We do not need executable stack. */
35 .section .note.GNU-stack,"",@progbits
  /external/libunwind/src/x86_64/
longjmp.S 33 /* We do not need executable stack. */
34 .section .note.GNU-stack,"",@progbits
siglongjmp.S 31 /* We do not need executable stack. */
32 .section .note.GNU-stack,"",@progbits
  /external/linux-kselftest/tools/testing/selftests/proc/
thread-self.c 51 void *stack; local
56 stack = mmap(NULL, 2 * PAGE_SIZE, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0);
57 assert(stack != MAP_FAILED);
59 pid = clone(f, stack + PAGE_SIZE, CLONE_THREAD|CLONE_SIGHAND|CLONE_VM, (void *)1);

Completed in 2242 milliseconds

1 2 34 5 6 7 8 91011>>