Searched refs:fp_ext (Results 1 – 9 of 9) sorted by relevance
/linux-2.4.37.9/arch/m68k/math-emu/ |
D | fp_trig.c | 21 struct fp_ext * 22 fp_fsin(struct fp_ext *dest, struct fp_ext *src) in fp_fsin() 31 struct fp_ext * 32 fp_fcos(struct fp_ext *dest, struct fp_ext *src) in fp_fcos() 41 struct fp_ext * 42 fp_ftan(struct fp_ext *dest, struct fp_ext *src) in fp_ftan() 51 struct fp_ext * 52 fp_fasin(struct fp_ext *dest, struct fp_ext *src) in fp_fasin() 61 struct fp_ext * 62 fp_facos(struct fp_ext *dest, struct fp_ext *src) in fp_facos() [all …]
|
D | fp_arith.h | 21 struct fp_ext * 22 fp_fabs(struct fp_ext *dest, struct fp_ext *src); 23 struct fp_ext * 24 fp_fneg(struct fp_ext *dest, struct fp_ext *src); 27 struct fp_ext * 28 fp_fadd(struct fp_ext *dest, struct fp_ext *src); 29 struct fp_ext * 30 fp_fsub(struct fp_ext *dest, struct fp_ext *src); 31 struct fp_ext * 32 fp_fcmp(struct fp_ext *dest, struct fp_ext *src); [all …]
|
D | fp_log.c | 20 static const struct fp_ext fp_one = 25 extern struct fp_ext *fp_fadd(struct fp_ext *dest, const struct fp_ext *src); 26 extern struct fp_ext *fp_fdiv(struct fp_ext *dest, const struct fp_ext *src); 27 extern struct fp_ext *fp_fmul(struct fp_ext *dest, const struct fp_ext *src); 29 struct fp_ext * 30 fp_fsqrt(struct fp_ext *dest, struct fp_ext *src) in fp_fsqrt() 32 struct fp_ext tmp, src2; in fp_fsqrt() 102 struct fp_ext * 103 fp_fetoxm1(struct fp_ext *dest, struct fp_ext *src) in fp_fetoxm1() 115 struct fp_ext * [all …]
|
D | fp_arith.c | 20 const struct fp_ext fp_QNaN = 25 const struct fp_ext fp_Inf = 32 struct fp_ext * 33 fp_fabs(struct fp_ext *dest, struct fp_ext *src) in fp_fabs() 44 struct fp_ext * 45 fp_fneg(struct fp_ext *dest, struct fp_ext *src) in fp_fneg() 61 struct fp_ext * 62 fp_fadd(struct fp_ext *dest, struct fp_ext *src) in fp_fadd() 121 struct fp_ext * 122 fp_fsub(struct fp_ext *dest, struct fp_ext *src) in fp_fsub() [all …]
|
D | fp_emu.h | 65 register struct fp_ext *reg asm ("a0") = fpreg; \ 93 extern const struct fp_ext fp_QNaN; 94 extern const struct fp_ext fp_Inf; 109 register struct fp_ext *__src asm ("a0") = src; \ 119 register struct fp_ext *__dest asm ("a0") = dest; \
|
D | fp_util.S | 96 | %a0 = destination (ptr to struct fp_ext) 127 | %a0 = dest (struct fp_ext *) 141 9: move.l %d1,(%a0)+ | fp_ext.sign, fp_ext.exp 142 move.l %d0,(%a0)+ | high lword of fp_ext.mant 179 9: move.l %d1,(%a0)+ | fp_ext.sign, fp_ext.exp
|
D | multi_arith.h | 262 static inline void fp_denormalize(struct fp_ext *reg, unsigned int cnt) in fp_denormalize() 304 static inline int fp_overnormalize(struct fp_ext *reg) in fp_overnormalize() 322 static inline int fp_addmant(struct fp_ext *dest, struct fp_ext *src) in fp_addmant() 338 static inline int fp_addcarry(struct fp_ext *reg) in fp_addcarry() 355 static inline void fp_submant(struct fp_ext *dest, struct fp_ext *src1, in fp_submant() 356 struct fp_ext *src2) in fp_submant() 406 static inline void fp_multiplymant(union fp_mant128 *dest, struct fp_ext *src1, in fp_multiplymant() 407 struct fp_ext *src2) in fp_multiplymant() 421 static inline void fp_dividemant(union fp_mant128 *dest, struct fp_ext *src, in fp_dividemant() 422 struct fp_ext *div) in fp_dividemant() [all …]
|
D | fp_scan.S | 250 .long fp_ext, fp_pack 264 fp_ext: label
|
/linux-2.4.37.9/include/asm-m68k/ |
D | math-emu.h | 85 struct fp_ext { struct 96 struct fp_ext fpreg[8]; argument 102 struct fp_ext temp[2];
|