Lines Matching refs:prev
32 extern asmlinkage struct task_struct *resume(struct task_struct *prev,
52 #define __mips_mt_fpaff_switch_to(prev) \ argument
54 struct thread_info *__prev_ti = task_thread_info(prev); \
58 (!(KSTK_STATUS(prev) & ST0_CU1))) { \
60 prev->cpus_allowed = prev->thread.user_cpus_allowed; \
66 #define __mips_mt_fpaff_switch_to(prev) do { (void) (prev); } while (0) argument
84 #define switch_to(prev, next, last) \ argument
86 __mips_mt_fpaff_switch_to(prev); \
87 lose_fpu_inatomic(1, prev); \
89 __save_dsp(prev); \
94 if ((KSTK_STATUS(prev) & ST0_CU2)) { \
96 KSTK_STATUS(prev) &= ~ST0_CU2; \
97 cop2_save(prev); \
109 (last) = resume(prev, next, task_thread_info(next)); \