stnr               69 arch/x86/math-emu/fpu_proto.h extern int FPU_gettagi(int stnr);
stnr               72 arch/x86/math-emu/fpu_proto.h extern void FPU_settagi(int stnr, int tag);
stnr               77 arch/x86/math-emu/fpu_proto.h extern int FPU_empty_i(int stnr);
stnr               79 arch/x86/math-emu/fpu_proto.h extern void FPU_copy_to_regi(FPU_REG const *r, u_char tag, int stnr);
stnr              127 arch/x86/math-emu/fpu_proto.h extern int FPU_load_extended(long double __user *s, int stnr);
stnr               29 arch/x86/math-emu/fpu_tags.c int FPU_gettagi(int stnr)
stnr               31 arch/x86/math-emu/fpu_tags.c 	return (fpu_tag_word >> (((top + stnr) & 7) * 2)) & 3;
stnr               47 arch/x86/math-emu/fpu_tags.c void FPU_settagi(int stnr, int tag)
stnr               49 arch/x86/math-emu/fpu_tags.c 	int regnr = stnr + top;
stnr               81 arch/x86/math-emu/fpu_tags.c int FPU_empty_i(int stnr)
stnr               83 arch/x86/math-emu/fpu_tags.c 	int regnr = (top + stnr) & 7;
stnr               95 arch/x86/math-emu/fpu_tags.c void FPU_copy_to_regi(FPU_REG const *r, u_char tag, int stnr)
stnr               97 arch/x86/math-emu/fpu_tags.c 	reg_copy(r, &st(stnr));
stnr               98 arch/x86/math-emu/fpu_tags.c 	FPU_settagi(stnr, tag);
stnr               82 arch/x86/math-emu/reg_ld_str.c int FPU_load_extended(long double __user *s, int stnr)
stnr               84 arch/x86/math-emu/reg_ld_str.c 	FPU_REG *sti_ptr = &st(stnr);