Home
last modified time | relevance | path

Searched refs:stack_args (Results 1 – 3 of 3) sorted by relevance

/glibc-2.36/sysdeps/unix/sysv/linux/arc/
Dmakecontext.c30 int i, reg_args, stack_args; in __makecontext() local
58 stack_args = argc - reg_args; in __makecontext()
60 if (__glibc_unlikely (stack_args > 0)) in __makecontext()
62 sp -= stack_args * sizeof (unsigned long int); in __makecontext()
66 for (i = 0; i < stack_args; i++) in __makecontext()
/glibc-2.36/sysdeps/unix/sysv/linux/riscv/
Dmakecontext.c65 long int stack_args = argc - reg_args; in __makecontext() local
66 if (stack_args > 0) in __makecontext()
68 sp = (sp - stack_args * sizeof (long int)) & ALMASK; in __makecontext()
70 for (i = 0; i < stack_args; i++) in __makecontext()
/glibc-2.36/sysdeps/unix/sysv/linux/loongarch/
Dmakecontext.c67 long int stack_args = argc - reg_args; in __makecontext() local
68 if (stack_args > 0) in __makecontext()
71 (((uintptr_t) sp - stack_args * sizeof (long int)) & ALMASK); in __makecontext()
73 for (long int i = 0; i < stack_args; i++) in __makecontext()