/external/libunwind/tests/ |
ia64-test-rbs.h | 3 #define STACK_SIZE (1 << STACK_SIZE_SHIFT)
|
ia64-test-stack.h | 3 #define STACK_SIZE (1 << STACK_SIZE_SHIFT)
|
ia64-test-stack-asm.S | 28 .common stackmem, NSTACKS*STACK_SIZE, 16 54 addl r3 = STACK_SIZE-FRAME_SIZE, r2 // r3 = &stackframe
|
ia64-test-rbs-asm.S | 28 .common stackmem, NSTACKS*STACK_SIZE, 16 60 addl r3 = STACK_SIZE-FRAME_SIZE, r2; /* r3 = &stackframe */ \
|
/external/ltrace/testsuite/ltrace.minor/ |
trace-clone.c | 21 #define STACK_SIZE 1024 26 static __attribute__ ((aligned (16))) char stack[STACK_SIZE]; 29 pid = __clone2((myfunc)&child, stack, STACK_SIZE, CLONE_FS, NULL); 31 pid = clone((myfunc)&child, stack + STACK_SIZE, CLONE_FS, NULL);
|
/ndk/tests/device/clone/jni/ |
clone.c | 16 #define STACK_SIZE 1024 29 child_stack = (void **) malloc(STACK_SIZE * sizeof(void *)); 32 clone(child_proc, child_stack + STACK_SIZE, CLONE_VM|CLONE_FILES, NULL);
|
/external/valgrind/memcheck/tests/linux/ |
stack_switch.c | 17 #define STACK_SIZE 8192 40 if ( ( stack = mmap( NULL, 2* STACK_SIZE, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0 ) ) == MAP_FAILED ) 46 stackid = VALGRIND_STACK_REGISTER( stack, stack + STACK_SIZE ); 48 if ( ( pid = clone( thread_main, stack + STACK_SIZE, CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|SIGCHLD, NULL ) ) == -1 )
|
stack_changes.c | 8 #define STACK_SIZE (10 * 4096) 37 stack = (void *)mmap(0, STACK_SIZE, PROT_READ|PROT_WRITE|PROT_EXEC, 45 ret = VALGRIND_STACK_REGISTER(stack, stack + STACK_SIZE); 49 uc->uc_stack.ss_size = STACK_SIZE;
|
/art/runtime/interpreter/mterp/mips64/ |
entry.S | 40 daddu sp, sp, -STACK_SIZE 41 .cfi_adjust_cfa_offset STACK_SIZE
|
footer.S | 168 daddu sp, sp, STACK_SIZE 169 .cfi_adjust_cfa_offset -STACK_SIZE
|
header.S | 270 #define STACK_SIZE 64
|
/external/valgrind/memcheck/tests/solaris/ |
thr_daemon_exit_standalone.c | 225 #define STACK_SIZE 16384 227 void *stack = allocate_stack(STACK_SIZE); 228 id_t tid = lwp_create((char *) stack + STACK_SIZE);
|
/art/runtime/interpreter/mterp/mips/ |
entry.S | 24 .frame sp, STACK_SIZE, ra 38 /* Save to the stack. Frame size = STACK_SIZE */
|
header.S | 445 #define STACK_SIZE 128 461 #define STACK_STORE_FULL() CREATE_STACK(STACK_SIZE); \ 484 DELETE_STACK(STACK_SIZE)
|
/ndk/tests/device/test-stlport_shared-exception/jni/ |
badalloc1.cpp | 15 // Assume that STACK_SIZE defined implies a system that does not have a 18 #ifdef STACK_SIZE
|
/ndk/tests/device/test-stlport_static-exception/jni/ |
badalloc1.cpp | 15 // Assume that STACK_SIZE defined implies a system that does not have a 18 #ifdef STACK_SIZE
|
/external/libdivsufsort/include/ |
divsufsort_private.h | 156 assert(ssize < STACK_SIZE);\ 162 assert(ssize < STACK_SIZE);\
|
/cts/hostsidetests/services/activitymanager/src/android/server/cts/ |
ActivityManagerDockedStackTests.java | 32 private static final int STACK_SIZE = 300; 287 resizeDockedStack(STACK_SIZE, STACK_SIZE, TASK_SIZE, TASK_SIZE); 293 assertEquals(new Rectangle(0, 0, STACK_SIZE, STACK_SIZE),
|
/prebuilts/go/darwin-x86/test/bench/shootout/ |
chameneosredux.c | 53 const int STACK_SIZE = 32*1024; 239 pthread_attr_setstacksize( &cr->stack_att, STACK_SIZE );
|
/prebuilts/go/linux-x86/test/bench/shootout/ |
chameneosredux.c | 53 const int STACK_SIZE = 32*1024; 239 pthread_attr_setstacksize( &cr->stack_att, STACK_SIZE );
|
/external/libpcap/msdos/ |
ndis2.c | 67 #define STACK_SIZE 256
806 free (freeStacks[i] - STACK_SIZE);
819 freeStacks[i] = malloc (STACK_SIZE);
822 freeStacks[i] += STACK_SIZE;
|
/external/libdivsufsort/lib/ |
sssort.c | 313 #define STACK_SIZE SS_MISORT_STACKSIZE 314 struct { saidx_t *a, *b, c; saint_t d; } stack[STACK_SIZE]; 440 #undef STACK_SIZE 657 #define STACK_SIZE SS_SMERGE_STACKSIZE 669 struct { saidx_t *a, *b, *c; saint_t d; } stack[STACK_SIZE]; 735 #undef STACK_SIZE
|
trsort.c | 330 #define STACK_SIZE TR_STACKSIZE 331 struct { const saidx_t *a; saidx_t *b, *c; saint_t d, e; }stack[STACK_SIZE]; 544 #undef STACK_SIZE
|
/external/mdnsresponder/mDNSShared/ |
CommonServices.h | 536 #define _beginthreadex_compat( SECURITY_PTR, STACK_SIZE, START_ADDRESS, ARG_LIST, FLAGS, THREAD_ID_PTR ) \ 537 (uintptr_t) CreateThread( SECURITY_PTR, STACK_SIZE, (LPTHREAD_START_ROUTINE) START_ADDRESS, ARG_LIST, FLAGS, \ [all...] |
/external/selinux/libsepol/src/ |
module_to_cil.c | 55 #define STACK_SIZE 16 413 s->stack = malloc(sizeof(*s->stack) * STACK_SIZE); 419 s->size = STACK_SIZE; [all...] |