OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:CUTOFF
(Results
1 - 3
of
3
) sorted by relevancy
/src/lib/libm/complex/
catrig.c
563
#define
CUTOFF
(DBL_MANT_DIG / 2 + 1) /* just half or 1 guard digit */
564
if (ix - iy >=
CUTOFF
<< 20 || isinf(x))
566
if (iy - ix >=
CUTOFF
<< 20)
568
if (ix <= (BIAS + DBL_MAX_EXP / 2 -
CUTOFF
) << 20)
catrigf.c
338
#define
CUTOFF
(FLT_MANT_DIG / 2 + 1)
339
if (ix - iy >=
CUTOFF
<< 23 || isinf(x))
341
if (iy - ix >=
CUTOFF
<< 23)
343
if (ix <= (BIAS + FLT_MAX_EXP / 2 -
CUTOFF
) << 23)
catrigl.c
365
#define
CUTOFF
(LDBL_MANT_DIG / 2 + 1)
366
if (ix - iy >=
CUTOFF
|| isinf(x))
368
if (iy - ix >=
CUTOFF
)
370
if (ix <= BIAS + LDBL_MAX_EXP / 2 -
CUTOFF
)
Completed in 13 milliseconds
Indexes created Thu Sep 25 08:09:54 GMT 2025