Lines Matching refs:__user
50 void __user *dump_start; in aout_core_dump()
54 # define START_DATA(u) ((void __user *)u.start_data) in aout_core_dump()
56 # define START_DATA(u) ((void __user *)((u.u_tsize << PAGE_SHIFT) + \ in aout_core_dump()
59 # define START_STACK(u) ((void __user *)u.start_stack) in aout_core_dump()
144 static unsigned long __user *create_aout_tables(char __user *p, struct linux_binprm * bprm) in create_aout_tables()
146 char __user * __user *argv; in create_aout_tables()
147 char __user * __user *envp; in create_aout_tables()
148 unsigned long __user *sp; in create_aout_tables()
152 sp = (void __user *)((-(unsigned long)sizeof(char *)) & (unsigned long) p); in create_aout_tables()
167 envp = (char __user * __user *) sp; in create_aout_tables()
169 argv = (char __user * __user *) sp; in create_aout_tables()
329 (unsigned long) create_aout_tables((char __user *) bprm->p, bprm); in load_aout_binary()