tag | line | file | source code |
temp_real | 138 | include/linux/math_emu.h | void frndint(const temp_real * __a, temp_real * __b); |
temp_real | 139 | include/linux/math_emu.h | void short_to_temp(const short_real * __a, temp_real * __b); |
temp_real | 140 | include/linux/math_emu.h | void long_to_temp(const long_real * __a, temp_real * __b); |
temp_real | 141 | include/linux/math_emu.h | void temp_to_short(const temp_real * __a, short_real * __b); |
temp_real | 142 | include/linux/math_emu.h | void temp_to_long(const temp_real * __a, long_real * __b); |
temp_real | 143 | include/linux/math_emu.h | void real_to_int(const temp_real * __a, temp_int * __b); |
temp_real | 144 | include/linux/math_emu.h | void int_to_real(const temp_int * __a, temp_real * __b); |
temp_real | 148 | include/linux/math_emu.h | void get_short_real(temp_real *, struct info *, unsigned short); |
temp_real | 149 | include/linux/math_emu.h | void get_long_real(temp_real *, struct info *, unsigned short); |
temp_real | 150 | include/linux/math_emu.h | void get_temp_real(temp_real *, struct info *, unsigned short); |
temp_real | 151 | include/linux/math_emu.h | void get_short_int(temp_real *, struct info *, unsigned short); |
temp_real | 152 | include/linux/math_emu.h | void get_long_int(temp_real *, struct info *, unsigned short); |
temp_real | 153 | include/linux/math_emu.h | void get_longlong_int(temp_real *, struct info *, unsigned short); |
temp_real | 154 | include/linux/math_emu.h | void get_BCD(temp_real *, struct info *, unsigned short); |
temp_real | 155 | include/linux/math_emu.h | void put_short_real(const temp_real *, struct info *, unsigned short); |
temp_real | 156 | include/linux/math_emu.h | void put_long_real(const temp_real *, struct info *, unsigned short); |
temp_real | 157 | include/linux/math_emu.h | void put_temp_real(const temp_real *, struct info *, unsigned short); |
temp_real | 158 | include/linux/math_emu.h | void put_short_int(const temp_real *, struct info *, unsigned short); |
temp_real | 159 | include/linux/math_emu.h | void put_long_int(const temp_real *, struct info *, unsigned short); |
temp_real | 160 | include/linux/math_emu.h | void put_longlong_int(const temp_real *, struct info *, unsigned short); |
temp_real | 161 | include/linux/math_emu.h | void put_BCD(const temp_real *, struct info *, unsigned short); |
temp_real | 165 | include/linux/math_emu.h | void fadd(const temp_real *, const temp_real *, temp_real *); |
temp_real | 169 | include/linux/math_emu.h | void fmul(const temp_real *, const temp_real *, temp_real *); |
temp_real | 173 | include/linux/math_emu.h | void fdiv(const temp_real *, const temp_real *, temp_real *); |
temp_real | 177 | include/linux/math_emu.h | void fsqrt(const temp_real *, temp_real *); |
temp_real | 181 | include/linux/math_emu.h | void fcom(const temp_real *, const temp_real *); |
temp_real | 182 | include/linux/math_emu.h | void fucom(const temp_real *, const temp_real *); |
temp_real | 183 | include/linux/math_emu.h | void ftst(const temp_real *); |
temp_real | 27 | kernel/math/add.c | static void signify(temp_real * a) |
temp_real | 38 | kernel/math/add.c | static void unsignify(temp_real * a) |
temp_real | 57 | kernel/math/add.c | void fadd(const temp_real * src1, const temp_real * src2, temp_real * result) |
temp_real | 59 | kernel/math/add.c | temp_real a,b; |
temp_real | 15 | kernel/math/compare.c | static void normalize(temp_real * a) |
temp_real | 33 | kernel/math/compare.c | void ftst(const temp_real * a) |
temp_real | 35 | kernel/math/compare.c | temp_real b; |
temp_real | 47 | kernel/math/compare.c | void fcom(const temp_real * src1, const temp_real * src2) |
temp_real | 49 | kernel/math/compare.c | temp_real a; |
temp_real | 57 | kernel/math/compare.c | void fucom(const temp_real * src1, const temp_real * src2) |
temp_real | 21 | kernel/math/convert.c | void short_to_temp(const short_real * a, temp_real * b) |
temp_real | 38 | kernel/math/convert.c | void long_to_temp(const long_real * a, temp_real * b) |
temp_real | 55 | kernel/math/convert.c | void temp_to_short(const temp_real * a, short_real * b) |
temp_real | 81 | kernel/math/convert.c | void temp_to_long(const temp_real * a, long_real * b) |
temp_real | 116 | kernel/math/convert.c | void frndint(const temp_real * a, temp_real * b) |
temp_real | 183 | kernel/math/convert.c | void real_to_int(const temp_real * a, temp_int * b) |
temp_real | 238 | kernel/math/convert.c | void int_to_real(const temp_int * a, temp_real * b) |
temp_real | 63 | kernel/math/div.c | void fdiv(const temp_real * src1, const temp_real * src2, temp_real * result) |
temp_real | 44 | kernel/math/emulate.c | #define PST(x) ((const temp_real *) __st((x))) |
temp_real | 57 | kernel/math/emulate.c | temp_real tmp; |
temp_real | 17 | kernel/math/get_put.c | void get_short_real(temp_real * tmp, |
temp_real | 28 | kernel/math/get_put.c | void get_long_real(temp_real * tmp, |
temp_real | 40 | kernel/math/get_put.c | void get_temp_real(temp_real * tmp, |
temp_real | 51 | kernel/math/get_put.c | void get_short_int(temp_real * tmp, |
temp_real | 65 | kernel/math/get_put.c | void get_long_int(temp_real * tmp, |
temp_real | 79 | kernel/math/get_put.c | void get_longlong_int(temp_real * tmp, |
temp_real | 109 | kernel/math/get_put.c | void get_BCD(temp_real * tmp, struct info * info, unsigned short code) |
temp_real | 130 | kernel/math/get_put.c | void put_short_real(const temp_real * tmp, |
temp_real | 142 | kernel/math/get_put.c | void put_long_real(const temp_real * tmp, |
temp_real | 155 | kernel/math/get_put.c | void put_temp_real(const temp_real * tmp, |
temp_real | 167 | kernel/math/get_put.c | void put_short_int(const temp_real * tmp, |
temp_real | 181 | kernel/math/get_put.c | void put_long_int(const temp_real * tmp, |
temp_real | 195 | kernel/math/get_put.c | void put_longlong_int(const temp_real * tmp, |
temp_real | 218 | kernel/math/get_put.c | void put_BCD(const temp_real * tmp,struct info * info, unsigned short code) |
temp_real | 22 | kernel/math/mul.c | static void mul64(const temp_real * a, const temp_real * b, int * c) |
temp_real | 46 | kernel/math/mul.c | void fmul(const temp_real * src1, const temp_real * src2, temp_real * result) |
temp_real | 44 | kernel/math/sqrt.c | void fsqrt(const temp_real * s, temp_real * d) |