Symbol: _FP_W_TYPE_SIZE
arch/powerpc/math-emu/udivmodti4.c
163
b = _FP_W_TYPE_SIZE - bm;
arch/powerpc/math-emu/udivmodti4.c
59
n1 = (n1 << bm) | (n0 >> (_FP_W_TYPE_SIZE - bm));
arch/powerpc/math-emu/udivmodti4.c
95
b = _FP_W_TYPE_SIZE - bm;
arch/sh/math-emu/math.c
361
FRn ^= (1 << (_FP_W_TYPE_SIZE - 1));
arch/sh/math-emu/math.c
367
FRn &= ~(1 << (_FP_W_TYPE_SIZE - 1));
include/math-emu/double.h
28
#if _FP_W_TYPE_SIZE < 32
include/math-emu/double.h
32
#if _FP_W_TYPE_SIZE < 64
include/math-emu/double.h
33
#define _FP_FRACTBITS_D (2 * _FP_W_TYPE_SIZE)
include/math-emu/double.h
35
#define _FP_FRACTBITS_D _FP_W_TYPE_SIZE
include/math-emu/double.h
47
((_FP_W_TYPE)1 << (_FP_FRACBITS_D-2) % _FP_W_TYPE_SIZE)
include/math-emu/double.h
49
((_FP_W_TYPE)1 << (_FP_FRACBITS_D-1) % _FP_W_TYPE_SIZE)
include/math-emu/double.h
51
((_FP_W_TYPE)1 << _FP_WFRACBITS_D % _FP_W_TYPE_SIZE)
include/math-emu/double.h
53
#if _FP_W_TYPE_SIZE < 64
include/math-emu/double.h
62
unsigned frac1 : _FP_FRACBITS_D - (_FP_IMPLBIT_D != 0) - _FP_W_TYPE_SIZE;
include/math-emu/double.h
63
unsigned frac0 : _FP_W_TYPE_SIZE;
include/math-emu/double.h
65
unsigned frac0 : _FP_W_TYPE_SIZE;
include/math-emu/double.h
66
unsigned frac1 : _FP_FRACBITS_D - (_FP_IMPLBIT_D != 0) - _FP_W_TYPE_SIZE;
include/math-emu/op-1.h
156
_xh = X##_f >> (_FP_W_TYPE_SIZE/2); \
include/math-emu/op-1.h
157
_xl = X##_f & (((_FP_W_TYPE)1 << (_FP_W_TYPE_SIZE/2)) - 1); \
include/math-emu/op-1.h
158
_yh = Y##_f >> (_FP_W_TYPE_SIZE/2); \
include/math-emu/op-1.h
159
_yl = Y##_f & (((_FP_W_TYPE)1 << (_FP_W_TYPE_SIZE/2)) - 1); \
include/math-emu/op-1.h
169
_z_f1 += (_FP_W_TYPE)1 << (_FP_W_TYPE_SIZE/2); \
include/math-emu/op-1.h
170
_a_f1 = _a_f0 >> (_FP_W_TYPE_SIZE/2); \
include/math-emu/op-1.h
171
_a_f0 = _a_f0 << (_FP_W_TYPE_SIZE/2); \
include/math-emu/op-1.h
220
_nl = X##_f << (_FP_W_TYPE_SIZE - 1); \
include/math-emu/op-1.h
50
? X & 1 : (X << (_FP_W_TYPE_SIZE - (N))) != 0)))
include/math-emu/op-2.h
104
R += _FP_W_TYPE_SIZE; \
include/math-emu/op-2.h
136
R += _FP_W_TYPE_SIZE; \
include/math-emu/op-2.h
35
(void) (((N) < _FP_W_TYPE_SIZE) \
include/math-emu/op-2.h
429
_n_f1 = X##_f1 << (_FP_W_TYPE_SIZE - 1) | X##_f0 >> 1; \
include/math-emu/op-2.h
43
(_FP_W_TYPE_SIZE - (N)); \
include/math-emu/op-2.h
430
_n_f0 = X##_f0 << (_FP_W_TYPE_SIZE - 1); \
include/math-emu/op-2.h
49
X##_f1 = X##_f0 << ((N) - _FP_W_TYPE_SIZE); \
include/math-emu/op-2.h
499
_x[1] = (X##_f0 << (_FP_WFRACBITS_##fs-1 - _FP_W_TYPE_SIZE) | \
include/math-emu/op-2.h
500
X##_f1 >> (_FP_W_TYPE_SIZE - \
include/math-emu/op-2.h
501
(_FP_WFRACBITS_##fs-1 - _FP_W_TYPE_SIZE))); \
include/math-emu/op-2.h
502
_x[2] = X##_f1 << (_FP_WFRACBITS_##fs-1 - _FP_W_TYPE_SIZE); \
include/math-emu/op-2.h
506
_x[1] = (X##_f0 << (_FP_WFRACBITS_##fs - _FP_W_TYPE_SIZE) | \
include/math-emu/op-2.h
507
X##_f1 >> (_FP_W_TYPE_SIZE - \
include/math-emu/op-2.h
508
(_FP_WFRACBITS_##fs - _FP_W_TYPE_SIZE))); \
include/math-emu/op-2.h
509
_x[2] = X##_f1 << (_FP_WFRACBITS_##fs - _FP_W_TYPE_SIZE); \
include/math-emu/op-2.h
538
q = (_FP_W_TYPE)1 << (_FP_W_TYPE_SIZE - 1); \
include/math-emu/op-2.h
55
(void) (((N) < _FP_W_TYPE_SIZE) \
include/math-emu/op-2.h
57
X##_f0 = X##_f0 >> (N) | X##_f1 << (_FP_W_TYPE_SIZE - (N)); \
include/math-emu/op-2.h
570
(void) (((rsize) <= _FP_W_TYPE_SIZE) \
include/math-emu/op-2.h
574
(r) <<= _FP_W_TYPE_SIZE; \
include/math-emu/op-2.h
581
X##_f1 = (rsize <= _FP_W_TYPE_SIZE ? 0 : r >> _FP_W_TYPE_SIZE); \
include/math-emu/op-2.h
61
X##_f0 = X##_f1 >> ((N) - _FP_W_TYPE_SIZE); \
include/math-emu/op-2.h
68
(void) (((N) < _FP_W_TYPE_SIZE) \
include/math-emu/op-2.h
70
X##_f0 = (X##_f1 << (_FP_W_TYPE_SIZE - (N)) | X##_f0 >> (N) \
include/math-emu/op-2.h
73
: (X##_f0 << (_FP_W_TYPE_SIZE - (N))) != 0)); \
include/math-emu/op-2.h
77
X##_f0 = (X##_f1 >> ((N) - _FP_W_TYPE_SIZE) \
include/math-emu/op-2.h
78
| ((((N) == _FP_W_TYPE_SIZE \
include/math-emu/op-2.h
80
: (X##_f1 << (2*_FP_W_TYPE_SIZE - (N)))) \
include/math-emu/op-4.h
169
R += _FP_W_TYPE_SIZE; \
include/math-emu/op-4.h
174
R += _FP_W_TYPE_SIZE*2; \
include/math-emu/op-4.h
179
R += _FP_W_TYPE_SIZE*3; \
include/math-emu/op-4.h
362
_n_f[3] = X##_f[0] << (_FP_W_TYPE_SIZE - 1); \
include/math-emu/op-4.h
40
_skip = (N) / _FP_W_TYPE_SIZE; \
include/math-emu/op-4.h
41
_up = (N) % _FP_W_TYPE_SIZE; \
include/math-emu/op-4.h
42
_down = _FP_W_TYPE_SIZE - _up; \
include/math-emu/op-4.h
443
q = (_FP_W_TYPE)1 << (_FP_W_TYPE_SIZE - 1); \
include/math-emu/op-4.h
460
q = (_FP_W_TYPE)1 << (_FP_W_TYPE_SIZE - 1); \
include/math-emu/op-4.h
480
q = (_FP_W_TYPE)1 << (_FP_W_TYPE_SIZE - 1); \
include/math-emu/op-4.h
61
_skip = (N) / _FP_W_TYPE_SIZE; \
include/math-emu/op-4.h
62
_down = (N) % _FP_W_TYPE_SIZE; \
include/math-emu/op-4.h
63
_up = _FP_W_TYPE_SIZE - _down; \
include/math-emu/op-4.h
642
if (rsize <= _FP_W_TYPE_SIZE) \
include/math-emu/op-4.h
644
else if (rsize <= 2*_FP_W_TYPE_SIZE) \
include/math-emu/op-4.h
647
r <<= _FP_W_TYPE_SIZE; \
include/math-emu/op-4.h
655
r <<= _FP_W_TYPE_SIZE; \
include/math-emu/op-4.h
657
r <<= _FP_W_TYPE_SIZE; \
include/math-emu/op-4.h
659
r <<= _FP_W_TYPE_SIZE; \
include/math-emu/op-4.h
672
X##_f[1] = (rsize <= _FP_W_TYPE_SIZE ? 0 : r >> _FP_W_TYPE_SIZE); \
include/math-emu/op-4.h
673
X##_f[2] = (rsize <= 2*_FP_W_TYPE_SIZE ? 0 : r >> 2*_FP_W_TYPE_SIZE); \
include/math-emu/op-4.h
674
X##_f[3] = (rsize <= 3*_FP_W_TYPE_SIZE ? 0 : r >> 3*_FP_W_TYPE_SIZE); \
include/math-emu/op-4.h
88
_skip = (N) / _FP_W_TYPE_SIZE; \
include/math-emu/op-4.h
89
_down = (N) % _FP_W_TYPE_SIZE; \
include/math-emu/op-4.h
90
_up = _FP_W_TYPE_SIZE - _down; \
include/math-emu/op-8.h
37
_skip = (N) / _FP_W_TYPE_SIZE; \
include/math-emu/op-8.h
38
_up = (N) % _FP_W_TYPE_SIZE; \
include/math-emu/op-8.h
39
_down = _FP_W_TYPE_SIZE - _up; \
include/math-emu/op-8.h
57
_skip = (N) / _FP_W_TYPE_SIZE; \
include/math-emu/op-8.h
58
_down = (N) % _FP_W_TYPE_SIZE; \
include/math-emu/op-8.h
59
_up = _FP_W_TYPE_SIZE - _down; \
include/math-emu/op-8.h
84
_skip = (N) / _FP_W_TYPE_SIZE; \
include/math-emu/op-8.h
85
_down = (N) % _FP_W_TYPE_SIZE; \
include/math-emu/op-8.h
86
_up = _FP_W_TYPE_SIZE - _down; \
include/math-emu/op-common.h
702
if (_FP_W_TYPE_SIZE*wc < rsize) \
include/math-emu/op-common.h
806
(void) (((rsize) <= _FP_W_TYPE_SIZE) \
include/math-emu/op-common.h
809
__FP_CLZ_2(X##_e, (_FP_W_TYPE)(ur_ >> _FP_W_TYPE_SIZE), \
include/math-emu/op-common.h
812
if (rsize < _FP_W_TYPE_SIZE) \
include/math-emu/op-common.h
813
X##_e -= (_FP_W_TYPE_SIZE - rsize); \
include/math-emu/op-common.h
844
#if _FP_W_TYPE_SIZE < 64
include/math-emu/op-common.h
849
r = _FP_W_TYPE_SIZE - 1; \
include/math-emu/op-common.h
864
r = _FP_W_TYPE_SIZE - 1; \
include/math-emu/quad.h
141
unsigned long frac1 : _FP_FRACBITS_Q-(_FP_IMPLBIT_Q != 0)-_FP_W_TYPE_SIZE;
include/math-emu/quad.h
142
unsigned long frac0 : _FP_W_TYPE_SIZE;
include/math-emu/quad.h
144
unsigned long frac0 : _FP_W_TYPE_SIZE;
include/math-emu/quad.h
145
unsigned long frac1 : _FP_FRACBITS_Q-(_FP_IMPLBIT_Q != 0)-_FP_W_TYPE_SIZE;
include/math-emu/quad.h
28
#if _FP_W_TYPE_SIZE < 32
include/math-emu/quad.h
32
#if _FP_W_TYPE_SIZE < 64
include/math-emu/quad.h
33
#define _FP_FRACTBITS_Q (4*_FP_W_TYPE_SIZE)
include/math-emu/quad.h
35
#define _FP_FRACTBITS_Q (2*_FP_W_TYPE_SIZE)
include/math-emu/quad.h
47
((_FP_W_TYPE)1 << (_FP_FRACBITS_Q-2) % _FP_W_TYPE_SIZE)
include/math-emu/quad.h
49
((_FP_W_TYPE)1 << (_FP_FRACBITS_Q-1) % _FP_W_TYPE_SIZE)
include/math-emu/quad.h
51
((_FP_W_TYPE)1 << (_FP_WFRACBITS_Q % _FP_W_TYPE_SIZE))
include/math-emu/quad.h
53
#if _FP_W_TYPE_SIZE < 64
include/math-emu/quad.h
63
unsigned long frac3 : _FP_FRACBITS_Q - (_FP_IMPLBIT_Q != 0)-(_FP_W_TYPE_SIZE * 3);
include/math-emu/quad.h
64
unsigned long frac2 : _FP_W_TYPE_SIZE;
include/math-emu/quad.h
65
unsigned long frac1 : _FP_W_TYPE_SIZE;
include/math-emu/quad.h
66
unsigned long frac0 : _FP_W_TYPE_SIZE;
include/math-emu/quad.h
68
unsigned long frac0 : _FP_W_TYPE_SIZE;
include/math-emu/quad.h
69
unsigned long frac1 : _FP_W_TYPE_SIZE;
include/math-emu/quad.h
70
unsigned long frac2 : _FP_W_TYPE_SIZE;
include/math-emu/quad.h
71
unsigned long frac3 : _FP_FRACBITS_Q - (_FP_IMPLBIT_Q != 0)-(_FP_W_TYPE_SIZE * 3);
include/math-emu/single.h
28
#if _FP_W_TYPE_SIZE < 32
include/math-emu/single.h
33
#define _FP_FRACXBITS_S (_FP_W_TYPE_SIZE - _FP_FRACBITS_S)
include/math-emu/single.h
35
#define _FP_WFRACXBITS_S (_FP_W_TYPE_SIZE - _FP_WFRACBITS_S)
include/math-emu/soft-fp.h
191
#define W_TYPE_SIZE _FP_W_TYPE_SIZE
include/math-emu/soft-fp.h
197
#if _FP_W_TYPE_SIZE == 32
include/math-emu/soft-fp.h
199
#elif _FP_W_TYPE_SIZE == 64