| tag | line | file | source code |
| fpu_reg | 112 | include/linux/sched.h | struct fpu_reg regs[8]; /* 8*16 bytes for each FP-reg = 128 bytes */ |
| fpu_reg | 55 | kernel/FPU-emu/fpu_emu.h | typedef struct fpu_reg FPU_REG; |
| fpu_reg | 5 | kernel/FPU-emu/fpu_proto.h | extern void real_2op_NaN(struct fpu_reg *a, struct fpu_reg *b, struct fpu_reg *dest); |
| fpu_reg | 6 | kernel/FPU-emu/fpu_proto.h | extern void arith_invalid(struct fpu_reg *dest); |
| fpu_reg | 7 | kernel/FPU-emu/fpu_proto.h | extern void divide_by_zero(int sign, struct fpu_reg *dest); |
| fpu_reg | 8 | kernel/FPU-emu/fpu_proto.h | extern void arith_overflow(struct fpu_reg *dest); |
| fpu_reg | 9 | kernel/FPU-emu/fpu_proto.h | extern void arith_underflow(struct fpu_reg *dest); |
| fpu_reg | 46 | kernel/FPU-emu/fpu_proto.h | extern void convert_l2reg(long *arg, struct fpu_reg *dest); |
| fpu_reg | 54 | kernel/FPU-emu/fpu_proto.h | extern int poly_2xm1(struct fpu_reg *arg, struct fpu_reg *result); |
| fpu_reg | 56 | kernel/FPU-emu/fpu_proto.h | extern void poly_atan(struct fpu_reg *arg); |
| fpu_reg | 57 | kernel/FPU-emu/fpu_proto.h | extern void poly_add_1(struct fpu_reg *src); |
| fpu_reg | 59 | kernel/FPU-emu/fpu_proto.h | extern void poly_l2(struct fpu_reg *arg, struct fpu_reg *result); |
| fpu_reg | 60 | kernel/FPU-emu/fpu_proto.h | extern int poly_l2p1(struct fpu_reg *arg, struct fpu_reg *result); |
| fpu_reg | 62 | kernel/FPU-emu/fpu_proto.h | extern void poly_sine(struct fpu_reg *arg, struct fpu_reg *result); |
| fpu_reg | 64 | kernel/FPU-emu/fpu_proto.h | extern void poly_tan(struct fpu_reg *arg, struct fpu_reg *y_reg); |
| fpu_reg | 66 | kernel/FPU-emu/fpu_proto.h | extern void reg_add(struct fpu_reg *a, struct fpu_reg *b, struct fpu_reg *dest); |
| fpu_reg | 67 | kernel/FPU-emu/fpu_proto.h | extern void reg_sub(struct fpu_reg *a, struct fpu_reg *b, struct fpu_reg *dest); |
| fpu_reg | 69 | kernel/FPU-emu/fpu_proto.h | extern int compare(struct fpu_reg *b); |
| fpu_reg | 94 | kernel/FPU-emu/fpu_proto.h | extern int round_to_int(struct fpu_reg *r); |
| fpu_reg | 100 | kernel/FPU-emu/fpu_proto.h | extern void reg_mul(struct fpu_reg *a, struct fpu_reg *b, struct fpu_reg *dest); |