HomeSort by: relevance | last modified time | path
    Searched refs:STACK_SIZE (Results 1 - 25 of 30) sorted by relevancy

1 2

  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.threads/
clone-attach-detach.c 27 #define STACK_SIZE 0x1000
48 stack = malloc (STACK_SIZE);
54 clone_pid = __clone2 (clone_fn, stack, STACK_SIZE, CLONE_FLAGS, NULL);
56 clone_pid = clone (clone_fn, stack + STACK_SIZE, CLONE_FLAGS, NULL);
clone-thread_db.c 30 #define STACK_SIZE 0x1000
46 stack = malloc (STACK_SIZE);
50 clone_pid = __clone2 (clone_fn, stack, STACK_SIZE, CLONE_VM, NULL);
52 clone_pid = clone (clone_fn, stack + STACK_SIZE, CLONE_VM, NULL);
current-lwp-dead.c 47 #define STACK_SIZE 0x1000
64 stack = malloc (STACK_SIZE);
67 new_pid = clone (fn, stack + STACK_SIZE, CLONE_FILES | CLONE_VM,
clone-new-thread-event.c 38 #define STACK_SIZE 0x1000
65 stack = malloc (STACK_SIZE);
68 new_pid = clone (fn, stack + STACK_SIZE, CLONE_FILES
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.threads/
clone-attach-detach.c 27 #define STACK_SIZE 0x1000
48 stack = malloc (STACK_SIZE);
54 clone_pid = __clone2 (clone_fn, stack, STACK_SIZE, CLONE_FLAGS, NULL);
56 clone_pid = clone (clone_fn, stack + STACK_SIZE, CLONE_FLAGS, NULL);
clone-thread_db.c 30 #define STACK_SIZE 0x1000
46 stack = malloc (STACK_SIZE);
50 clone_pid = __clone2 (clone_fn, stack, STACK_SIZE, CLONE_VM, NULL);
52 clone_pid = clone (clone_fn, stack + STACK_SIZE, CLONE_VM, NULL);
current-lwp-dead.c 47 #define STACK_SIZE 0x1000
64 stack = malloc (STACK_SIZE);
67 new_pid = clone (fn, stack + STACK_SIZE, CLONE_FILES | CLONE_VM,
clone-new-thread-event.c 38 #define STACK_SIZE 0x1000
65 stack = malloc (STACK_SIZE);
68 new_pid = clone (fn, stack + STACK_SIZE, CLONE_FILES
  /src/sys/arch/evbmips/stand/sbmips/common/
start.S 35 #define STACK_SIZE 8192
42 .comm stack_bottom,STACK_SIZE
50 la sp,stack_bottom+STACK_SIZE-32
  /src/sys/arch/sbmips/stand/common/
start.S 35 #define STACK_SIZE 8192
42 .comm stack_bottom,STACK_SIZE
50 la sp,stack_bottom+STACK_SIZE-32
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
step-over-clone.c 28 #define STACK_SIZE 0x1000
66 stack[i] = malloc (STACK_SIZE);
72 pid = clone (clone_fn, stack[i] + STACK_SIZE, CLONE_FILES | CLONE_VM,
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
step-over-clone.c 28 #define STACK_SIZE 0x1000
66 stack[i] = malloc (STACK_SIZE);
72 pid = clone (clone_fn, stack[i] + STACK_SIZE, CLONE_FILES | CLONE_VM,
  /src/external/gpl3/gdb.old/dist/gdb/nat/
linux-ptrace.c 276 #define STACK_SIZE 4096
279 child_stack = (gdb_byte *) xmalloc (STACK_SIZE * 4);
283 child_pid = __clone2 (function, child_stack, STACK_SIZE,
284 CLONE_VM | SIGCHLD, child_stack + STACK_SIZE * 2);
286 child_pid = clone (function, child_stack + STACK_SIZE,
287 CLONE_VM | SIGCHLD, child_stack + STACK_SIZE * 2);
  /src/external/gpl3/gdb/dist/gdb/nat/
linux-ptrace.c 280 #define STACK_SIZE 4096
283 child_stack = (gdb_byte *) xmalloc (STACK_SIZE * 4);
287 child_pid = __clone2 (function, child_stack, STACK_SIZE,
288 CLONE_VM | SIGCHLD, child_stack + STACK_SIZE * 2);
290 child_pid = clone (function, child_stack + STACK_SIZE,
291 CLONE_VM | SIGCHLD, child_stack + STACK_SIZE * 2);
  /src/sys/arch/mvmeppc/stand/libsa/
srt0.S 37 #define STACK_SIZE 8192
143 addi %r1,%r1,STACK_SIZE-0x10
180 .comm stack,STACK_SIZE,4
  /src/external/gpl3/binutils/dist/libctf/
ctf-qsort_r.c 68 #define STACK_SIZE (CHAR_BIT * sizeof(size_t))
114 stack_node stack[STACK_SIZE];
  /src/external/gpl3/binutils.old/dist/libctf/
ctf-qsort_r.c 68 #define STACK_SIZE (CHAR_BIT * sizeof(size_t))
114 stack_node stack[STACK_SIZE];
  /src/external/gpl3/gdb.old/dist/libctf/
ctf-qsort_r.c 68 #define STACK_SIZE (CHAR_BIT * sizeof(size_t))
114 stack_node stack[STACK_SIZE];
  /src/external/gpl3/gdb/dist/libctf/
ctf-qsort_r.c 68 #define STACK_SIZE (CHAR_BIT * sizeof(size_t))
114 stack_node stack[STACK_SIZE];
  /src/tests/lib/libc/sys/
t_futex_robust.c 44 #define STACK_SIZE 65536
77 lwp_data.stack_base = mmap(NULL, STACK_SIZE,
82 &lwp_data, NULL, lwp_data.stack_base, STACK_SIZE);
91 (void) munmap(lwp_data.stack_base, STACK_SIZE);
t_futex_ops.c 63 #define STACK_SIZE 65536
161 REQUIRE_LIBC(d->stack_base = mmap(NULL, STACK_SIZE,
166 STACK_SIZE);
268 (void) munmap(d->stack_base, STACK_SIZE);
  /src/sys/arch/x68k/stand/common/
start.S 20 #ifndef STACK_SIZE
21 #define STACK_SIZE 65536 /* stack size in bytes */
236 moveal #STACK_SYMBOL+STACK_SIZE,%a7
494 .space STACK_SIZE
496 .comm STACK_SYMBOL,STACK_SIZE
  /src/sys/arch/hppa/stand/xxboot/
main.c 34 #define STACK_SIZE ((unsigned) (64*1024))
288 loadadr = (sptop + STACK_SIZE + LOAD_ALIGN - 1) & (-LOAD_ALIGN);
  /src/sys/arch/sparc/stand/ofwboot/
srt0.s 362 #define STACK_SIZE 0x14000
363 .skip STACK_SIZE
  /src/external/bsd/zstd/dist/lib/dictBuilder/
divsufsort.c 104 assert(ssize < STACK_SIZE);\
110 assert(ssize < STACK_SIZE);\
403 #define STACK_SIZE SS_MISORT_STACKSIZE
404 struct { int *a, *b, c; int d; } stack[STACK_SIZE];
530 #undef STACK_SIZE
747 #define STACK_SIZE SS_SMERGE_STACKSIZE
759 struct { int *a, *b, *c; int d; } stack[STACK_SIZE];
825 #undef STACK_SIZE
1178 #define STACK_SIZE TR_STACKSIZE
1179 struct { const int *a; int *b, *c; int d, e; }stack[STACK_SIZE];
    [all...]

Completed in 84 milliseconds

1 2