Searched refs:stnr (Results 1 – 3 of 3) sorted by relevance
/linux-6.3-rc2/arch/x86/math-emu/ |
A D | fpu_tags.c | 29 int FPU_gettagi(int stnr) in FPU_gettagi() argument 31 return (fpu_tag_word >> (((top + stnr) & 7) * 2)) & 3; in FPU_gettagi() 47 void FPU_settagi(int stnr, int tag) in FPU_settagi() argument 49 int regnr = stnr + top; in FPU_settagi() 81 int FPU_empty_i(int stnr) in FPU_empty_i() argument 83 int regnr = (top + stnr) & 7; in FPU_empty_i() 95 void FPU_copy_to_regi(FPU_REG const *r, u_char tag, int stnr) in FPU_copy_to_regi() argument 97 reg_copy(r, &st(stnr)); in FPU_copy_to_regi() 98 FPU_settagi(stnr, tag); in FPU_copy_to_regi()
|
A D | fpu_proto.h | 69 extern int FPU_gettagi(int stnr); 72 extern void FPU_settagi(int stnr, int tag); 77 extern int FPU_empty_i(int stnr); 79 extern void FPU_copy_to_regi(FPU_REG const *r, u_char tag, int stnr); 127 extern int FPU_load_extended(long double __user *s, int stnr);
|
A D | reg_ld_str.c | 82 int FPU_load_extended(long double __user *s, int stnr) in FPU_load_extended() argument 84 FPU_REG *sti_ptr = &st(stnr); in FPU_load_extended()
|
Completed in 6 milliseconds