Home
last modified time | relevance | path

Searched refs:reg_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
54 reg_args = argc > 8 ? 8 : argc; in __makecontext()
55 for (i = 0; i < reg_args; i++) in __makecontext()
58 stack_args = argc - reg_args; in __makecontext()
/glibc-2.36/sysdeps/unix/sysv/linux/riscv/
Dmakecontext.c61 long reg_args = argc < REG_NARGS ? argc : REG_NARGS; in __makecontext() local
62 for (i = 5; i < reg_args; i++) in __makecontext()
65 long int stack_args = argc - reg_args; in __makecontext()
/glibc-2.36/sysdeps/unix/sysv/linux/loongarch/
Dmakecontext.c63 long int reg_args = argc < LARCH_REG_NARGS ? argc : LARCH_REG_NARGS; in __makecontext() local
64 for (long int i = 5; i < reg_args; i++) in __makecontext()
67 long int stack_args = argc - reg_args; in __makecontext()