Searched refs:_FP_W_TYPE_SIZE (Results 1 - 16 of 16) sorted by relevance

/linux-master/include/math-emu/
H A Dop-8.h37 _skip = (N) / _FP_W_TYPE_SIZE; \
38 _up = (N) % _FP_W_TYPE_SIZE; \
39 _down = _FP_W_TYPE_SIZE - _up; \
57 _skip = (N) / _FP_W_TYPE_SIZE; \
58 _down = (N) % _FP_W_TYPE_SIZE; \
59 _up = _FP_W_TYPE_SIZE - _down; \
84 _skip = (N) / _FP_W_TYPE_SIZE; \
85 _down = (N) % _FP_W_TYPE_SIZE; \
86 _up = _FP_W_TYPE_SIZE - _down; \
H A Dquad.h28 #if _FP_W_TYPE_SIZE < 32
32 #if _FP_W_TYPE_SIZE < 64
33 #define _FP_FRACTBITS_Q (4*_FP_W_TYPE_SIZE)
35 #define _FP_FRACTBITS_Q (2*_FP_W_TYPE_SIZE)
47 ((_FP_W_TYPE)1 << (_FP_FRACBITS_Q-2) % _FP_W_TYPE_SIZE)
49 ((_FP_W_TYPE)1 << (_FP_FRACBITS_Q-1) % _FP_W_TYPE_SIZE)
51 ((_FP_W_TYPE)1 << (_FP_WFRACBITS_Q % _FP_W_TYPE_SIZE))
53 #if _FP_W_TYPE_SIZE < 64
63 unsigned long frac3 : _FP_FRACBITS_Q - (_FP_IMPLBIT_Q != 0)-(_FP_W_TYPE_SIZE * 3);
64 unsigned long frac2 : _FP_W_TYPE_SIZE;
[all...]
H A Ddouble.h28 #if _FP_W_TYPE_SIZE < 32
32 #if _FP_W_TYPE_SIZE < 64
33 #define _FP_FRACTBITS_D (2 * _FP_W_TYPE_SIZE)
35 #define _FP_FRACTBITS_D _FP_W_TYPE_SIZE
47 ((_FP_W_TYPE)1 << (_FP_FRACBITS_D-2) % _FP_W_TYPE_SIZE)
49 ((_FP_W_TYPE)1 << (_FP_FRACBITS_D-1) % _FP_W_TYPE_SIZE)
51 ((_FP_W_TYPE)1 << _FP_WFRACBITS_D % _FP_W_TYPE_SIZE)
53 #if _FP_W_TYPE_SIZE < 64
62 unsigned frac1 : _FP_FRACBITS_D - (_FP_IMPLBIT_D != 0) - _FP_W_TYPE_SIZE;
63 unsigned frac0 : _FP_W_TYPE_SIZE;
[all...]
H A Dop-2.h35 (void) (((N) < _FP_W_TYPE_SIZE) \
43 (_FP_W_TYPE_SIZE - (N)); \
49 X##_f1 = X##_f0 << ((N) - _FP_W_TYPE_SIZE); \
55 (void) (((N) < _FP_W_TYPE_SIZE) \
57 X##_f0 = X##_f0 >> (N) | X##_f1 << (_FP_W_TYPE_SIZE - (N)); \
61 X##_f0 = X##_f1 >> ((N) - _FP_W_TYPE_SIZE); \
68 (void) (((N) < _FP_W_TYPE_SIZE) \
70 X##_f0 = (X##_f1 << (_FP_W_TYPE_SIZE - (N)) | X##_f0 >> (N) \
73 : (X##_f0 << (_FP_W_TYPE_SIZE - (N))) != 0)); \
77 X##_f0 = (X##_f1 >> ((N) - _FP_W_TYPE_SIZE) \
[all...]
H A Dop-4.h40 _skip = (N) / _FP_W_TYPE_SIZE; \
41 _up = (N) % _FP_W_TYPE_SIZE; \
42 _down = _FP_W_TYPE_SIZE - _up; \
61 _skip = (N) / _FP_W_TYPE_SIZE; \
62 _down = (N) % _FP_W_TYPE_SIZE; \
63 _up = _FP_W_TYPE_SIZE - _down; \
88 _skip = (N) / _FP_W_TYPE_SIZE; \
89 _down = (N) % _FP_W_TYPE_SIZE; \
90 _up = _FP_W_TYPE_SIZE - _down; \
169 R += _FP_W_TYPE_SIZE; \
[all...]
H A Dop-1.h50 ? X & 1 : (X << (_FP_W_TYPE_SIZE - (N))) != 0)))
156 _xh = X##_f >> (_FP_W_TYPE_SIZE/2); \
157 _xl = X##_f & (((_FP_W_TYPE)1 << (_FP_W_TYPE_SIZE/2)) - 1); \
158 _yh = Y##_f >> (_FP_W_TYPE_SIZE/2); \
159 _yl = Y##_f & (((_FP_W_TYPE)1 << (_FP_W_TYPE_SIZE/2)) - 1); \
169 _z_f1 += (_FP_W_TYPE)1 << (_FP_W_TYPE_SIZE/2); \
170 _a_f1 = _a_f0 >> (_FP_W_TYPE_SIZE/2); \
171 _a_f0 = _a_f0 << (_FP_W_TYPE_SIZE/2); \
220 _nl = X##_f << (_FP_W_TYPE_SIZE - 1); \
H A Dsoft-fp.h191 #define W_TYPE_SIZE _FP_W_TYPE_SIZE
197 #if _FP_W_TYPE_SIZE == 32
199 #elif _FP_W_TYPE_SIZE == 64
H A Dsingle.h28 #if _FP_W_TYPE_SIZE < 32
33 #define _FP_FRACXBITS_S (_FP_W_TYPE_SIZE - _FP_FRACBITS_S)
35 #define _FP_WFRACXBITS_S (_FP_W_TYPE_SIZE - _FP_WFRACBITS_S)
H A Dop-common.h702 if (_FP_W_TYPE_SIZE*wc < rsize) \
806 (void) (((rsize) <= _FP_W_TYPE_SIZE) \
809 __FP_CLZ_2(X##_e, (_FP_W_TYPE)(ur_ >> _FP_W_TYPE_SIZE), \
812 if (rsize < _FP_W_TYPE_SIZE) \
813 X##_e -= (_FP_W_TYPE_SIZE - rsize); \
844 #if _FP_W_TYPE_SIZE < 64
849 r = _FP_W_TYPE_SIZE - 1; \
860 #else /* not _FP_W_TYPE_SIZE < 64 */
864 r = _FP_W_TYPE_SIZE - 1; \
877 #endif /* not _FP_W_TYPE_SIZE < 6
[all...]
/linux-master/arch/powerpc/math-emu/
H A Dudivmodti4.c59 n1 = (n1 << bm) | (n0 >> (_FP_W_TYPE_SIZE - bm));
95 b = _FP_W_TYPE_SIZE - bm;
163 b = _FP_W_TYPE_SIZE - bm;
/linux-master/arch/alpha/include/asm/
H A Dsfp-machine.h27 #define _FP_W_TYPE_SIZE 64 macro
/linux-master/arch/sh/include/asm/
H A Dsfp-machine.h24 #define _FP_W_TYPE_SIZE 32 macro
/linux-master/arch/sparc/include/asm/
H A Dsfp-machine_64.h27 #define _FP_W_TYPE_SIZE 64 macro
H A Dsfp-machine_32.h29 #define _FP_W_TYPE_SIZE 32 macro
/linux-master/arch/sh/math-emu/
H A Dmath.c359 FRn ^= (1 << (_FP_W_TYPE_SIZE - 1));
365 FRn &= ~(1 << (_FP_W_TYPE_SIZE - 1));
/linux-master/arch/powerpc/include/asm/
H A Dsfp-machine.h31 #define _FP_W_TYPE_SIZE 32 macro

Completed in 337 milliseconds