Searched defs:child_stack (Results 1 - 6 of 6) sorted by relevance

/external/compiler-rt/test/asan/TestCases/Linux/
H A Dclone_test.cc25 char child_stack[kStackSize + 1]; local
26 char *sp = child_stack + kStackSize; // Stack grows down.
38 child_stack[i] = i;
39 int ret = child_stack[argc - 1];
H A Dswapcontext_test.cc49 int Run(int arg, int mode, char *child_stack) { argument
50 printf("Child stack: %p\n", child_stack);
53 child_context.uc_stack.ss_sp = child_stack;
65 child_stack[i] = i;
67 return child_stack[arg];
/external/compiler-rt/test/lsan/TestCases/
H A Dswapcontext.cc15 int child_stack; local
16 printf("Child: %p\n", &child_stack);
23 char *child_stack = (argc > 1) ? stack_memory : heap_memory; local
25 printf("Child stack: %p\n", child_stack);
29 child_context.uc_stack.ss_sp = child_stack;
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
H A Dlinux_syscall_support.h897 LSS_INLINE int LSS_NAME(clone)(int (*fn)(void *), void *child_stack, argument
907 /* if (child_stack == NULL)
914 * child_stack = (child_stack & ~0xF) - 20;
929 * %ecx = child_stack,
978 "m"(fn), "m"(child_stack), "m"(flags), "m"(arg),
1159 LSS_INLINE int LSS_NAME(clone)(int (*fn)(void *), void *child_stack, argument
1170 /* if (child_stack == NULL)
1177 * child_stack = (child_stack
1368 clone(int (*fn)(void *), void *child_stack, int flags, void *arg, int *parent_tidptr, void *newtls, int *child_tidptr) argument
1582 clone(int (*fn)(void *), void *child_stack, int flags, void *arg, int *parent_tidptr, void *newtls, int *child_tidptr) argument
1790 clone(int (*fn)(void *), void *child_stack, int flags, void *arg, int *parent_tidptr, void *newtls, int *child_tidptr) argument
[all...]
/external/chromium_org/third_party/tcmalloc/vendor/src/base/
H A Dlinux_syscall_support.h885 LSS_INLINE int LSS_NAME(clone)(int (*fn)(void *), void *child_stack, argument
895 /* if (child_stack == NULL)
902 * child_stack = (child_stack & ~0xF) - 20;
917 * %ecx = child_stack,
966 "m"(fn), "m"(child_stack), "m"(flags), "m"(arg),
1080 LSS_INLINE int LSS_NAME(clone)(int (*fn)(void *), void *child_stack, argument
1091 /* if (child_stack == NULL)
1098 * child_stack = (child_stack
1284 clone(int (*fn)(void *), void *child_stack, int flags, void *arg, int *parent_tidptr, void *newtls, int *child_tidptr) argument
1498 clone(int (*fn)(void *), void *child_stack, int flags, void *arg, int *parent_tidptr, void *newtls, int *child_tidptr) argument
1706 clone(int (*fn)(void *), void *child_stack, int flags, void *arg, int *parent_tidptr, void *newtls, int *child_tidptr) argument
[all...]
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_linux.cc781 uptr internal_clone(int (*fn)(void *), void *child_stack, int flags, void *arg, argument
784 if (!fn || !child_stack)
786 CHECK_EQ(0, (uptr)child_stack % 16);
787 child_stack = (char *)child_stack - 2 * sizeof(unsigned long long);
788 ((unsigned long long *)child_stack)[0] = (uptr)fn;
789 ((unsigned long long *)child_stack)[1] = (uptr)arg;
795 * %rsi = child_stack,
828 "S"(child_stack),

Completed in 1208 milliseconds