FPU_REG           179 arch/x86/math-emu/errors.c 		FPU_REG *r = &st(i);
FPU_REG           374 arch/x86/math-emu/errors.c int real_1op_NaN(FPU_REG *a)
FPU_REG           413 arch/x86/math-emu/errors.c int real_2op_NaN(FPU_REG const *b, u_char tagb,
FPU_REG           414 arch/x86/math-emu/errors.c 		 int deststnr, FPU_REG const *defaultNaN)
FPU_REG           416 arch/x86/math-emu/errors.c 	FPU_REG *dest = &st(deststnr);
FPU_REG           417 arch/x86/math-emu/errors.c 	FPU_REG const *a = dest;
FPU_REG           419 arch/x86/math-emu/errors.c 	FPU_REG const *x;
FPU_REG           514 arch/x86/math-emu/errors.c 	FPU_REG *dest = &st(deststnr);
FPU_REG           573 arch/x86/math-emu/errors.c asmlinkage __visible int arith_overflow(FPU_REG *dest)
FPU_REG           601 arch/x86/math-emu/errors.c asmlinkage __visible int arith_underflow(FPU_REG *dest)
FPU_REG           104 arch/x86/math-emu/fpu_aux.c 	FPU_REG *st_new_ptr;
FPU_REG           133 arch/x86/math-emu/fpu_aux.c 	FPU_REG t;
FPU_REG           135 arch/x86/math-emu/fpu_aux.c 	FPU_REG *st0_ptr = &st(0), *sti_ptr = &st(i);
FPU_REG           177 arch/x86/math-emu/fpu_aux.c 	FPU_REG *st0_ptr = &st(0);
FPU_REG           178 arch/x86/math-emu/fpu_aux.c 	FPU_REG *sti_ptr = &st(i);
FPU_REG           126 arch/x86/math-emu/fpu_emu.h typedef void (*FUNC_ST0) (FPU_REG *st0_ptr, u_char st0_tag);
FPU_REG           146 arch/x86/math-emu/fpu_emu.h #define fpu_register(x)  ( * ((FPU_REG *)( register_base + 10 * (x & 7) )) )
FPU_REG           147 arch/x86/math-emu/fpu_emu.h #define	st(x)      ( * ((FPU_REG *)( register_base + 10 * ((top+x) & 7) )) )
FPU_REG           170 arch/x86/math-emu/fpu_emu.h static inline void reg_copy(FPU_REG const *x, FPU_REG *y)
FPU_REG           191 arch/x86/math-emu/fpu_emu.h asmlinkage int FPU_normalize(FPU_REG *x);
FPU_REG           192 arch/x86/math-emu/fpu_emu.h asmlinkage int FPU_normalize_nuo(FPU_REG *x);
FPU_REG           193 arch/x86/math-emu/fpu_emu.h asmlinkage int FPU_u_sub(FPU_REG const *arg1, FPU_REG const *arg2,
FPU_REG           194 arch/x86/math-emu/fpu_emu.h 			 FPU_REG * answ, unsigned int control_w, u_char sign,
FPU_REG           196 arch/x86/math-emu/fpu_emu.h asmlinkage int FPU_u_mul(FPU_REG const *arg1, FPU_REG const *arg2,
FPU_REG           197 arch/x86/math-emu/fpu_emu.h 			 FPU_REG * answ, unsigned int control_w, u_char sign,
FPU_REG           199 arch/x86/math-emu/fpu_emu.h asmlinkage int FPU_u_div(FPU_REG const *arg1, FPU_REG const *arg2,
FPU_REG           200 arch/x86/math-emu/fpu_emu.h 			 FPU_REG * answ, unsigned int control_w, u_char sign);
FPU_REG           201 arch/x86/math-emu/fpu_emu.h asmlinkage int FPU_u_add(FPU_REG const *arg1, FPU_REG const *arg2,
FPU_REG           202 arch/x86/math-emu/fpu_emu.h 			 FPU_REG * answ, unsigned int control_w, u_char sign,
FPU_REG           204 arch/x86/math-emu/fpu_emu.h asmlinkage int wm_sqrt(FPU_REG *n, int dummy1, int dummy2,
FPU_REG           209 arch/x86/math-emu/fpu_emu.h asmlinkage int FPU_round(FPU_REG *arg, unsigned int extent, int dummy,
FPU_REG           107 arch/x86/math-emu/fpu_entry.c 	FPU_REG loaded_data;
FPU_REG           108 arch/x86/math-emu/fpu_entry.c 	FPU_REG *st0_ptr;
FPU_REG           679 arch/x86/math-emu/fpu_entry.c 			    FPU_tagof((FPU_REG *) ((u_char *) S387->st_space +
FPU_REG            20 arch/x86/math-emu/fpu_etc.c static void fchs(FPU_REG *st0_ptr, u_char st0tag)
FPU_REG            29 arch/x86/math-emu/fpu_etc.c static void fabs(FPU_REG *st0_ptr, u_char st0tag)
FPU_REG            38 arch/x86/math-emu/fpu_etc.c static void ftst_(FPU_REG *st0_ptr, u_char st0tag)
FPU_REG            89 arch/x86/math-emu/fpu_etc.c static void fxam(FPU_REG *st0_ptr, u_char st0tag)
FPU_REG             9 arch/x86/math-emu/fpu_proto.h extern int real_1op_NaN(FPU_REG *a);
FPU_REG            10 arch/x86/math-emu/fpu_proto.h extern int real_2op_NaN(FPU_REG const *b, u_char tagb, int deststnr,
FPU_REG            11 arch/x86/math-emu/fpu_proto.h 			FPU_REG const *defaultNaN);
FPU_REG            18 arch/x86/math-emu/fpu_proto.h asmlinkage int arith_overflow(FPU_REG *dest);
FPU_REG            19 arch/x86/math-emu/fpu_proto.h asmlinkage int arith_underflow(FPU_REG *dest);
FPU_REG            74 arch/x86/math-emu/fpu_proto.h extern int FPU_Special(FPU_REG const *ptr);
FPU_REG            75 arch/x86/math-emu/fpu_proto.h extern int isNaN(FPU_REG const *ptr);
FPU_REG            78 arch/x86/math-emu/fpu_proto.h extern int FPU_stackoverflow(FPU_REG ** st_new_ptr);
FPU_REG            79 arch/x86/math-emu/fpu_proto.h extern void FPU_copy_to_regi(FPU_REG const *r, u_char tag, int stnr);
FPU_REG            80 arch/x86/math-emu/fpu_proto.h extern void FPU_copy_to_reg1(FPU_REG const *r, u_char tag);
FPU_REG            81 arch/x86/math-emu/fpu_proto.h extern void FPU_copy_to_reg0(FPU_REG const *r, u_char tag);
FPU_REG            96 arch/x86/math-emu/fpu_proto.h extern int poly_2xm1(u_char sign, FPU_REG * arg, FPU_REG *result);
FPU_REG            98 arch/x86/math-emu/fpu_proto.h extern void poly_atan(FPU_REG * st0_ptr, u_char st0_tag, FPU_REG *st1_ptr,
FPU_REG           101 arch/x86/math-emu/fpu_proto.h extern void poly_l2(FPU_REG *st0_ptr, FPU_REG *st1_ptr, u_char st1_sign);
FPU_REG           102 arch/x86/math-emu/fpu_proto.h extern int poly_l2p1(u_char s0, u_char s1, FPU_REG *r0, FPU_REG *r1,
FPU_REG           103 arch/x86/math-emu/fpu_proto.h 		     FPU_REG * d);
FPU_REG           105 arch/x86/math-emu/fpu_proto.h extern void poly_sine(FPU_REG *st0_ptr);
FPU_REG           106 arch/x86/math-emu/fpu_proto.h extern void poly_cos(FPU_REG *st0_ptr);
FPU_REG           108 arch/x86/math-emu/fpu_proto.h extern void poly_tan(FPU_REG *st0_ptr);
FPU_REG           110 arch/x86/math-emu/fpu_proto.h extern int FPU_add(FPU_REG const *b, u_char tagb, int destrnr, int control_w);
FPU_REG           113 arch/x86/math-emu/fpu_proto.h extern int FPU_compare_st_data(FPU_REG const *loaded_data, u_char loaded_tag);
FPU_REG           128 arch/x86/math-emu/fpu_proto.h extern int FPU_load_double(double __user *dfloat, FPU_REG *loaded_data);
FPU_REG           129 arch/x86/math-emu/fpu_proto.h extern int FPU_load_single(float __user *single, FPU_REG *loaded_data);
FPU_REG           131 arch/x86/math-emu/fpu_proto.h extern int FPU_load_int32(long __user *_s, FPU_REG *loaded_data);
FPU_REG           132 arch/x86/math-emu/fpu_proto.h extern int FPU_load_int16(short __user *_s, FPU_REG *loaded_data);
FPU_REG           134 arch/x86/math-emu/fpu_proto.h extern int FPU_store_extended(FPU_REG *st0_ptr, u_char st0_tag,
FPU_REG           136 arch/x86/math-emu/fpu_proto.h extern int FPU_store_double(FPU_REG *st0_ptr, u_char st0_tag,
FPU_REG           138 arch/x86/math-emu/fpu_proto.h extern int FPU_store_single(FPU_REG *st0_ptr, u_char st0_tag,
FPU_REG           140 arch/x86/math-emu/fpu_proto.h extern int FPU_store_int64(FPU_REG *st0_ptr, u_char st0_tag,
FPU_REG           142 arch/x86/math-emu/fpu_proto.h extern int FPU_store_int32(FPU_REG *st0_ptr, u_char st0_tag, long __user *d);
FPU_REG           143 arch/x86/math-emu/fpu_proto.h extern int FPU_store_int16(FPU_REG *st0_ptr, u_char st0_tag, short __user *d);
FPU_REG           144 arch/x86/math-emu/fpu_proto.h extern int FPU_store_bcd(FPU_REG *st0_ptr, u_char st0_tag, u_char __user *d);
FPU_REG           145 arch/x86/math-emu/fpu_proto.h extern int FPU_round_to_int(FPU_REG *r, u_char tag);
FPU_REG           150 arch/x86/math-emu/fpu_proto.h extern int FPU_tagof(FPU_REG *ptr);
FPU_REG           152 arch/x86/math-emu/fpu_proto.h extern int FPU_mul(FPU_REG const *b, u_char tagb, int deststnr, int control_w);
FPU_REG           156 arch/x86/math-emu/fpu_proto.h extern int FPU_to_exp16(FPU_REG const *a, FPU_REG *x);
FPU_REG            62 arch/x86/math-emu/fpu_tags.c int FPU_Special(FPU_REG const *ptr)
FPU_REG            75 arch/x86/math-emu/fpu_tags.c int isNaN(FPU_REG const *ptr)
FPU_REG            88 arch/x86/math-emu/fpu_tags.c int FPU_stackoverflow(FPU_REG ** st_new_ptr)
FPU_REG            95 arch/x86/math-emu/fpu_tags.c void FPU_copy_to_regi(FPU_REG const *r, u_char tag, int stnr)
FPU_REG           101 arch/x86/math-emu/fpu_tags.c void FPU_copy_to_reg1(FPU_REG const *r, u_char tag)
FPU_REG           107 arch/x86/math-emu/fpu_tags.c void FPU_copy_to_reg0(FPU_REG const *r, u_char tag)
FPU_REG            34 arch/x86/math-emu/fpu_trig.c static int trig_arg(FPU_REG *st0_ptr, int even)
FPU_REG            36 arch/x86/math-emu/fpu_trig.c 	FPU_REG tmp;
FPU_REG           157 arch/x86/math-emu/fpu_trig.c 	FPU_REG *dest = &st(deststnr);
FPU_REG           180 arch/x86/math-emu/fpu_trig.c static void single_arg_error(FPU_REG *st0_ptr, u_char st0_tag)
FPU_REG           192 arch/x86/math-emu/fpu_trig.c static void single_arg_2_error(FPU_REG *st0_ptr, u_char st0_tag)
FPU_REG           233 arch/x86/math-emu/fpu_trig.c static void f2xm1(FPU_REG *st0_ptr, u_char tag)
FPU_REG           235 arch/x86/math-emu/fpu_trig.c 	FPU_REG a;
FPU_REG           276 arch/x86/math-emu/fpu_trig.c static void fptan(FPU_REG *st0_ptr, u_char st0_tag)
FPU_REG           278 arch/x86/math-emu/fpu_trig.c 	FPU_REG *st_new_ptr;
FPU_REG           355 arch/x86/math-emu/fpu_trig.c static void fxtract(FPU_REG *st0_ptr, u_char st0_tag)
FPU_REG           357 arch/x86/math-emu/fpu_trig.c 	FPU_REG *st_new_ptr;
FPU_REG           359 arch/x86/math-emu/fpu_trig.c 	register FPU_REG *st1_ptr = st0_ptr;	/* anticipate */
FPU_REG           448 arch/x86/math-emu/fpu_trig.c static void fsqrt_(FPU_REG *st0_ptr, u_char st0_tag)
FPU_REG           506 arch/x86/math-emu/fpu_trig.c static void frndint_(FPU_REG *st0_ptr, u_char st0_tag)
FPU_REG           550 arch/x86/math-emu/fpu_trig.c static int fsin(FPU_REG *st0_ptr, u_char tag)
FPU_REG           611 arch/x86/math-emu/fpu_trig.c static int f_cos(FPU_REG *st0_ptr, u_char tag)
FPU_REG           681 arch/x86/math-emu/fpu_trig.c static void fcos(FPU_REG *st0_ptr, u_char st0_tag)
FPU_REG           686 arch/x86/math-emu/fpu_trig.c static void fsincos(FPU_REG *st0_ptr, u_char st0_tag)
FPU_REG           688 arch/x86/math-emu/fpu_trig.c 	FPU_REG *st_new_ptr;
FPU_REG           689 arch/x86/math-emu/fpu_trig.c 	FPU_REG arg;
FPU_REG           779 arch/x86/math-emu/fpu_trig.c static void do_fprem(FPU_REG *st0_ptr, u_char st0_tag, int round)
FPU_REG           781 arch/x86/math-emu/fpu_trig.c 	FPU_REG *st1_ptr = &st(1);
FPU_REG           785 arch/x86/math-emu/fpu_trig.c 		FPU_REG tmp, st0, st1;
FPU_REG          1021 arch/x86/math-emu/fpu_trig.c static void fyl2x(FPU_REG *st0_ptr, u_char st0_tag)
FPU_REG          1023 arch/x86/math-emu/fpu_trig.c 	FPU_REG *st1_ptr = &st(1), exponent;
FPU_REG          1192 arch/x86/math-emu/fpu_trig.c static void fpatan(FPU_REG *st0_ptr, u_char st0_tag)
FPU_REG          1194 arch/x86/math-emu/fpu_trig.c 	FPU_REG *st1_ptr = &st(1);
FPU_REG          1302 arch/x86/math-emu/fpu_trig.c static void fprem(FPU_REG *st0_ptr, u_char st0_tag)
FPU_REG          1307 arch/x86/math-emu/fpu_trig.c static void fprem1(FPU_REG *st0_ptr, u_char st0_tag)
FPU_REG          1312 arch/x86/math-emu/fpu_trig.c static void fyl2xp1(FPU_REG *st0_ptr, u_char st0_tag)
FPU_REG          1315 arch/x86/math-emu/fpu_trig.c 	FPU_REG *st1_ptr = &st(1), a, b;
FPU_REG          1481 arch/x86/math-emu/fpu_trig.c static void fscale(FPU_REG *st0_ptr, u_char st0_tag)
FPU_REG          1483 arch/x86/math-emu/fpu_trig.c 	FPU_REG *st1_ptr = &st(1);
FPU_REG          1491 arch/x86/math-emu/fpu_trig.c 		FPU_REG tmp;
FPU_REG            70 arch/x86/math-emu/load_store.c 	FPU_REG loaded_data;
FPU_REG            71 arch/x86/math-emu/load_store.c 	FPU_REG *st0_ptr;
FPU_REG            53 arch/x86/math-emu/poly_2xm1.c int poly_2xm1(u_char sign, FPU_REG *arg, FPU_REG *result)
FPU_REG            52 arch/x86/math-emu/poly_atan.c void poly_atan(FPU_REG *st0_ptr, u_char st0_tag,
FPU_REG            53 arch/x86/math-emu/poly_atan.c 	       FPU_REG *st1_ptr, u_char st1_tag)
FPU_REG            21 arch/x86/math-emu/poly_l2.c static void log2_kernel(FPU_REG const *arg, u_char argsign,
FPU_REG            27 arch/x86/math-emu/poly_l2.c void poly_l2(FPU_REG *st0_ptr, FPU_REG *st1_ptr, u_char st1_sign)
FPU_REG            32 arch/x86/math-emu/poly_l2.c 	FPU_REG x;
FPU_REG           107 arch/x86/math-emu/poly_l2.c 	      FPU_REG * st0_ptr, FPU_REG * st1_ptr, FPU_REG * dest)
FPU_REG           182 arch/x86/math-emu/poly_l2.c static void log2_kernel(FPU_REG const *arg, u_char argsign, Xsig *accum_result,
FPU_REG            58 arch/x86/math-emu/poly_sin.c void poly_sine(FPU_REG *st0_ptr)
FPU_REG            64 arch/x86/math-emu/poly_sin.c 	FPU_REG result;
FPU_REG           201 arch/x86/math-emu/poly_sin.c void poly_cos(FPU_REG *st0_ptr)
FPU_REG           203 arch/x86/math-emu/poly_sin.c 	FPU_REG result;
FPU_REG            51 arch/x86/math-emu/poly_tan.c void poly_tan(FPU_REG *st0_ptr)
FPU_REG            29 arch/x86/math-emu/reg_add_sub.c int add_sub_specials(FPU_REG const *a, u_char taga, u_char signa,
FPU_REG            30 arch/x86/math-emu/reg_add_sub.c 		     FPU_REG const *b, u_char tagb, u_char signb,
FPU_REG            31 arch/x86/math-emu/reg_add_sub.c 		     FPU_REG * dest, int deststnr, int control_w);
FPU_REG            37 arch/x86/math-emu/reg_add_sub.c int FPU_add(FPU_REG const *b, u_char tagb, int deststnr, int control_w)
FPU_REG            39 arch/x86/math-emu/reg_add_sub.c 	FPU_REG *a = &st(0);
FPU_REG            40 arch/x86/math-emu/reg_add_sub.c 	FPU_REG *dest = &st(deststnr);
FPU_REG           103 arch/x86/math-emu/reg_add_sub.c 		FPU_REG x, y;
FPU_REG           131 arch/x86/math-emu/reg_add_sub.c 	FPU_REG const *a, *b;
FPU_REG           132 arch/x86/math-emu/reg_add_sub.c 	FPU_REG *dest;
FPU_REG           141 arch/x86/math-emu/reg_add_sub.c 		b = (FPU_REG *) rm;
FPU_REG           234 arch/x86/math-emu/reg_add_sub.c 		FPU_REG x, y;
FPU_REG           250 arch/x86/math-emu/reg_add_sub.c 		FPU_REG const *d1, *d2;
FPU_REG           271 arch/x86/math-emu/reg_add_sub.c int add_sub_specials(FPU_REG const *a, u_char taga, u_char signa,
FPU_REG           272 arch/x86/math-emu/reg_add_sub.c 		     FPU_REG const *b, u_char tagb, u_char signb,
FPU_REG           273 arch/x86/math-emu/reg_add_sub.c 		     FPU_REG * dest, int deststnr, int control_w)
FPU_REG            24 arch/x86/math-emu/reg_compare.c static int compare(FPU_REG const *b, int tagb)
FPU_REG            28 arch/x86/math-emu/reg_compare.c 	FPU_REG *st0_ptr;
FPU_REG            29 arch/x86/math-emu/reg_compare.c 	FPU_REG x, y;
FPU_REG           170 arch/x86/math-emu/reg_compare.c int FPU_compare_st_data(FPU_REG const *loaded_data, u_char loaded_tag)
FPU_REG           210 arch/x86/math-emu/reg_compare.c 	FPU_REG *st_ptr;
FPU_REG           256 arch/x86/math-emu/reg_compare.c 	FPU_REG *st_ptr;
FPU_REG           304 arch/x86/math-emu/reg_compare.c 	FPU_REG *st_ptr;
FPU_REG           354 arch/x86/math-emu/reg_compare.c 	FPU_REG *st_ptr;
FPU_REG            23 arch/x86/math-emu/reg_constant.c FPU_REG const CONST_1 = MAKE_REG(POS, 0, 0x00000000, 0x80000000);
FPU_REG            25 arch/x86/math-emu/reg_constant.c FPU_REG const CONST_2 = MAKE_REG(POS, 1, 0x00000000, 0x80000000);
FPU_REG            26 arch/x86/math-emu/reg_constant.c FPU_REG const CONST_HALF = MAKE_REG(POS, -1, 0x00000000, 0x80000000);
FPU_REG            28 arch/x86/math-emu/reg_constant.c static FPU_REG const CONST_L2T = MAKE_REG(POS, 1, 0xcd1b8afe, 0xd49a784b);
FPU_REG            29 arch/x86/math-emu/reg_constant.c static FPU_REG const CONST_L2E = MAKE_REG(POS, 0, 0x5c17f0bc, 0xb8aa3b29);
FPU_REG            30 arch/x86/math-emu/reg_constant.c FPU_REG const CONST_PI = MAKE_REG(POS, 1, 0x2168c235, 0xc90fdaa2);
FPU_REG            31 arch/x86/math-emu/reg_constant.c FPU_REG const CONST_PI2 = MAKE_REG(POS, 0, 0x2168c235, 0xc90fdaa2);
FPU_REG            32 arch/x86/math-emu/reg_constant.c FPU_REG const CONST_PI4 = MAKE_REG(POS, -1, 0x2168c235, 0xc90fdaa2);
FPU_REG            33 arch/x86/math-emu/reg_constant.c static FPU_REG const CONST_LG2 = MAKE_REG(POS, -2, 0xfbcff799, 0x9a209a84);
FPU_REG            34 arch/x86/math-emu/reg_constant.c static FPU_REG const CONST_LN2 = MAKE_REG(POS, -1, 0xd1cf79ac, 0xb17217f7);
FPU_REG            37 arch/x86/math-emu/reg_constant.c FPU_REG const CONST_PI2extra = MAKE_REG(NEG, -66,
FPU_REG            41 arch/x86/math-emu/reg_constant.c FPU_REG const CONST_Z = MAKE_REG(POS, EXP_UNDER, 0x0, 0x0);
FPU_REG            48 arch/x86/math-emu/reg_constant.c FPU_REG const CONST_QNaN = MAKE_REG(NEG, EXP_OVER, 0x00000000, 0xC0000000);
FPU_REG            51 arch/x86/math-emu/reg_constant.c FPU_REG const CONST_INF = MAKE_REG(POS, EXP_OVER, 0x00000000, 0x80000000);
FPU_REG            53 arch/x86/math-emu/reg_constant.c static void fld_const(FPU_REG const * c, int adj, u_char tag)
FPU_REG            55 arch/x86/math-emu/reg_constant.c 	FPU_REG *st_new_ptr;
FPU_REG            15 arch/x86/math-emu/reg_constant.h extern FPU_REG const CONST_1;
FPU_REG            16 arch/x86/math-emu/reg_constant.h extern FPU_REG const CONST_PI;
FPU_REG            17 arch/x86/math-emu/reg_constant.h extern FPU_REG const CONST_PI2;
FPU_REG            18 arch/x86/math-emu/reg_constant.h extern FPU_REG const CONST_PI2extra;
FPU_REG            19 arch/x86/math-emu/reg_constant.h extern FPU_REG const CONST_PI4;
FPU_REG            20 arch/x86/math-emu/reg_constant.h extern FPU_REG const CONST_Z;
FPU_REG            21 arch/x86/math-emu/reg_constant.h extern FPU_REG const CONST_PINF;
FPU_REG            22 arch/x86/math-emu/reg_constant.h extern FPU_REG const CONST_INF;
FPU_REG            23 arch/x86/math-emu/reg_constant.h extern FPU_REG const CONST_MINF;
FPU_REG            24 arch/x86/math-emu/reg_constant.h extern FPU_REG const CONST_QNaN;
FPU_REG            17 arch/x86/math-emu/reg_convert.c int FPU_to_exp16(FPU_REG const *a, FPU_REG *x)
FPU_REG            30 arch/x86/math-emu/reg_divide.c 	FPU_REG x, y;
FPU_REG            31 arch/x86/math-emu/reg_divide.c 	FPU_REG const *a, *b, *st0_ptr, *st_ptr;
FPU_REG            32 arch/x86/math-emu/reg_divide.c 	FPU_REG *dest;
FPU_REG            46 arch/x86/math-emu/reg_divide.c 			a = (FPU_REG *) rm;
FPU_REG            58 arch/x86/math-emu/reg_divide.c 			b = (FPU_REG *) rm;
FPU_REG           133 arch/x86/math-emu/reg_divide.c 			return real_2op_NaN((FPU_REG *) rm, flags & 0x0f, 0,
FPU_REG            39 arch/x86/math-emu/reg_ld_str.c static u_char normalize_no_excep(FPU_REG *r, int exp, int sign)
FPU_REG            53 arch/x86/math-emu/reg_ld_str.c int FPU_tagof(FPU_REG *ptr)
FPU_REG            84 arch/x86/math-emu/reg_ld_str.c 	FPU_REG *sti_ptr = &st(stnr);
FPU_REG            95 arch/x86/math-emu/reg_ld_str.c int FPU_load_double(double __user *dfloat, FPU_REG *loaded_data)
FPU_REG           156 arch/x86/math-emu/reg_ld_str.c int FPU_load_single(float __user *single, FPU_REG *loaded_data)
FPU_REG           214 arch/x86/math-emu/reg_ld_str.c 	FPU_REG *st0_ptr = &st(0);
FPU_REG           240 arch/x86/math-emu/reg_ld_str.c int FPU_load_int32(long __user *_s, FPU_REG *loaded_data)
FPU_REG           269 arch/x86/math-emu/reg_ld_str.c int FPU_load_int16(short __user *_s, FPU_REG *loaded_data)
FPU_REG           300 arch/x86/math-emu/reg_ld_str.c 	FPU_REG *st0_ptr = &st(0);
FPU_REG           337 arch/x86/math-emu/reg_ld_str.c int FPU_store_extended(FPU_REG *st0_ptr, u_char st0_tag,
FPU_REG           379 arch/x86/math-emu/reg_ld_str.c int FPU_store_double(FPU_REG *st0_ptr, u_char st0_tag, double __user *dfloat)
FPU_REG           385 arch/x86/math-emu/reg_ld_str.c 	FPU_REG tmp;
FPU_REG           564 arch/x86/math-emu/reg_ld_str.c int FPU_store_single(FPU_REG *st0_ptr, u_char st0_tag, float __user *single)
FPU_REG           570 arch/x86/math-emu/reg_ld_str.c 	FPU_REG tmp;
FPU_REG           753 arch/x86/math-emu/reg_ld_str.c int FPU_store_int64(FPU_REG *st0_ptr, u_char st0_tag, long long __user *d)
FPU_REG           755 arch/x86/math-emu/reg_ld_str.c 	FPU_REG t;
FPU_REG           803 arch/x86/math-emu/reg_ld_str.c int FPU_store_int32(FPU_REG *st0_ptr, u_char st0_tag, long __user *d)
FPU_REG           805 arch/x86/math-emu/reg_ld_str.c 	FPU_REG t;
FPU_REG           849 arch/x86/math-emu/reg_ld_str.c int FPU_store_int16(FPU_REG *st0_ptr, u_char st0_tag, short __user *d)
FPU_REG           851 arch/x86/math-emu/reg_ld_str.c 	FPU_REG t;
FPU_REG           895 arch/x86/math-emu/reg_ld_str.c int FPU_store_bcd(FPU_REG *st0_ptr, u_char st0_tag, u_char __user *d)
FPU_REG           897 arch/x86/math-emu/reg_ld_str.c 	FPU_REG t;
FPU_REG           970 arch/x86/math-emu/reg_ld_str.c int FPU_round_to_int(FPU_REG *r, u_char tag)
FPU_REG            30 arch/x86/math-emu/reg_mul.c int FPU_mul(FPU_REG const *b, u_char tagb, int deststnr, int control_w)
FPU_REG            32 arch/x86/math-emu/reg_mul.c 	FPU_REG *a = &st(deststnr);
FPU_REG            33 arch/x86/math-emu/reg_mul.c 	FPU_REG *dest = a;
FPU_REG            61 arch/x86/math-emu/reg_mul.c 		FPU_REG x, y;