OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:arprec
(Results
1 - 8
of
8
) sorted by relevancy
/src/external/gpl3/gcc/dist/libgcc/soft-fp/
fixdfbitint.c
37
USItype
arprec
= rprec < 0 ? -rprec : rprec;
local
38
USItype rn = ((USItype)
arprec
+ BIL_TYPE_SIZE - 1) / BIL_TYPE_SIZE;
40
USItype rsize =
arprec
> DI_BITS ? DI_BITS :
arprec
;
47
if (
arprec
> DI_BITS)
51
else if (A_e >= (_FP_EXPMAX_D < _FP_EXPBIAS_D +
arprec
53
: _FP_EXPBIAS_D +
arprec
- rsigned))
57
&& A_e == _FP_EXPBIAS_D +
arprec
- 1
59
A_e -=
arprec
- DI_BITS;
69
FP_TO_BITINT (r, rn,
arprec
, shift, rv, rsize, rsigned, ovf, DI)
[
all
...]
fixsfbitint.c
37
USItype
arprec
= rprec < 0 ? -rprec : rprec;
local
38
USItype rn = ((USItype)
arprec
+ BIL_TYPE_SIZE - 1) / BIL_TYPE_SIZE;
40
USItype rsize =
arprec
> SI_BITS ? SI_BITS :
arprec
;
47
if (
arprec
> SI_BITS)
51
else if (A_e >= (_FP_EXPMAX_S < _FP_EXPBIAS_S +
arprec
53
: _FP_EXPBIAS_S +
arprec
- rsigned))
57
&& A_e == _FP_EXPBIAS_S +
arprec
- 1
59
A_e -=
arprec
- SI_BITS;
69
FP_TO_BITINT (r, rn,
arprec
, shift, rv, rsize, rsigned, ovf, SI)
[
all
...]
fixtfbitint.c
47
USItype
arprec
= rprec < 0 ? -rprec : rprec;
local
48
USItype rn = ((USItype)
arprec
+ BIL_TYPE_SIZE - 1) / BIL_TYPE_SIZE;
50
USItype rsize =
arprec
> TI_BITS ? TI_BITS :
arprec
;
57
if (
arprec
> TI_BITS)
61
else if (A_e >= (_FP_EXPMAX_Q < _FP_EXPBIAS_Q +
arprec
63
: _FP_EXPBIAS_Q +
arprec
- rsigned))
67
&& A_e == _FP_EXPBIAS_Q +
arprec
- 1
69
A_e -=
arprec
- TI_BITS;
79
FP_TO_BITINT (r, rn,
arprec
, shift, rv, rsize, rsigned, ovf, TI)
[
all
...]
fixxfbitint.c
48
USItype
arprec
= rprec < 0 ? -rprec : rprec;
local
49
USItype rn = ((USItype)
arprec
+ BIL_TYPE_SIZE - 1) / BIL_TYPE_SIZE;
51
USItype rsize =
arprec
> TI_BITS ? TI_BITS :
arprec
;
58
if (
arprec
> TI_BITS)
62
else if (A_e >= (_FP_EXPMAX_E < _FP_EXPBIAS_E +
arprec
64
: _FP_EXPBIAS_E +
arprec
- rsigned))
68
&& A_e == _FP_EXPBIAS_E +
arprec
- 1
70
A_e -=
arprec
- TI_BITS;
80
FP_TO_BITINT (r, rn,
arprec
, shift, rv, rsize, rsigned, ovf, TI)
[
all
...]
fixddbitint.c
37
USItype
arprec
= rprec < 0 ? -rprec : rprec;
local
38
USItype rn = (
arprec
+ BIL_TYPE_SIZE - 1) / BIL_TYPE_SIZE;
78
|= (UBILtype) -1 << ((
arprec
- 1) % BIL_TYPE_SIZE);
81
&= ~((UBILtype) -1 << ((
arprec
- 1) % BIL_TYPE_SIZE));
130
if (exp_bits + mant_bits >
arprec
+ 1)
164
if ((
arprec
% BIL_TYPE_SIZE) != 0
166
& ((UBILtype) -1 << (
arprec
% BIL_TYPE_SIZE))) != 0)
194
& ((UBILtype) 1 << ((
arprec
- 1) % BIL_TYPE_SIZE))) == 0)
199
& ((UBILtype) 1 << ((
arprec
- 1) % BIL_TYPE_SIZE))) != 0)
fixsdbitint.c
37
USItype
arprec
= rprec < 0 ? -rprec : rprec;
local
38
USItype rn = (
arprec
+ BIL_TYPE_SIZE - 1) / BIL_TYPE_SIZE;
78
|= (UBILtype) -1 << ((
arprec
- 1) % BIL_TYPE_SIZE);
81
&= ~((UBILtype) -1 << ((
arprec
- 1) % BIL_TYPE_SIZE));
131
if (exp_bits + mant_bits >
arprec
+ 1)
155
if ((
arprec
% BIL_TYPE_SIZE) != 0
157
& ((UBILtype) -1 << (
arprec
% BIL_TYPE_SIZE))) != 0)
185
& ((UBILtype) 1 << ((
arprec
- 1) % BIL_TYPE_SIZE))) == 0)
190
& ((UBILtype) 1 << ((
arprec
- 1) % BIL_TYPE_SIZE))) != 0)
fixtdbitint.c
37
USItype
arprec
= rprec < 0 ? -rprec : rprec;
local
38
USItype rn = (
arprec
+ BIL_TYPE_SIZE - 1) / BIL_TYPE_SIZE;
85
|= (UBILtype) -1 << ((
arprec
- 1) % BIL_TYPE_SIZE);
88
&= ~((UBILtype) -1 << ((
arprec
- 1) % BIL_TYPE_SIZE));
157
if (exp_bits + mant_bits >
arprec
+ 1)
201
if ((
arprec
% BIL_TYPE_SIZE) != 0
203
& ((UBILtype) -1 << (
arprec
% BIL_TYPE_SIZE))) != 0)
231
& ((UBILtype) 1 << ((
arprec
- 1) % BIL_TYPE_SIZE))) == 0)
236
& ((UBILtype) 1 << ((
arprec
- 1) % BIL_TYPE_SIZE))) != 0)
bitint.h
186
function, RN number of limbs in it,
ARPREC
absolute value of
194
#define FP_TO_BITINT(r, rn,
arprec
, shift, rv, rsize, rsigned, ovf, DI) \
203
|= (UBILtype) -1 << ((
arprec
- 1) % BIL_TYPE_SIZE); \
206
&= ~((UBILtype) -1 << ((
arprec
- 1) % BIL_TYPE_SIZE)); \
214
if (shift + DI##_BITS >
arprec
) \
215
rsize =
arprec
- shift; \
Completed in 27 milliseconds
Indexes created Mon Mar 02 05:31:46 UTC 2026