OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FE_TOWARDZERO
(Results
1 - 25
of
28
) sorted by null
1
2
/bionic/libc/upstream-openbsd/lib/libc/gdtoa/
gdtoa_fltrnds.h
8
case
FE_TOWARDZERO
: Rounding = 0; break;
/device/linaro/bootloader/edk2/StdLib/Include/Aarch64/machine/
fenv.h
29
#define
FE_TOWARDZERO
3 /* round to zero (truncate) */
ieeefp.h
38
FP_RZ=
FE_TOWARDZERO
/* round to zero (truncate) */
/device/linaro/bootloader/edk2/StdLib/Include/Arm/machine/
fenv.h
45
#define
FE_TOWARDZERO
3 /* round to zero (truncate) */
ieeefp.h
51
FP_RZ=
FE_TOWARDZERO
/* round to zero (truncate) */
/bionic/libc/include/bits/
fenv_mips.h
91
#define
FE_TOWARDZERO
0x0001
fenv_arm.h
72
#define
FE_TOWARDZERO
0x3
fenv_x86.h
64
#define
FE_TOWARDZERO
0x0c00
fenv_x86_64.h
63
#define
FE_TOWARDZERO
0xc00
/bionic/libm/upstream-freebsd/lib/msun/src/
s_fmaf.c
64
fesetround(
FE_TOWARDZERO
);
e_sqrtl.c
139
fesetround(
FE_TOWARDZERO
); /* Set to round-toward-zero. */
s_fmal.c
208
case
FE_TOWARDZERO
:
s_fma.c
220
case
FE_TOWARDZERO
:
/external/libcxx/test/std/depr/depr.c.headers/
fenv_h.pass.cpp
49
#ifndef
FE_TOWARDZERO
50
#error
FE_TOWARDZERO
not defined
/bionic/libm/arm64/
fenv.c
120
return ((fpcr >> FPCR_RMODE_SHIFT) &
FE_TOWARDZERO
);
126
round &=
FE_TOWARDZERO
;
128
new_fpcr = fpcr & ~(
FE_TOWARDZERO
<< FPCR_RMODE_SHIFT);
/bionic/tests/headers/posix/
fenv_h.c
47
MACRO(
FE_TOWARDZERO
);
/external/libcxx/test/std/numerics/cfenv/cfenv.syn/
cfenv.pass.cpp
49
#ifndef
FE_TOWARDZERO
50
#error
FE_TOWARDZERO
not defined
/external/deqp/framework/delibs/debase/
deMath.c
56
case
FE_TOWARDZERO
: return DE_ROUNDINGMODE_TO_ZERO;
92
case DE_ROUNDINGMODE_TO_ZERO: flag =
FE_TOWARDZERO
; break;
/external/tensorflow/tensorflow/core/platform/
setround_test.cc
79
port::ScopedSetRound round(
FE_TOWARDZERO
);
/bionic/tests/
fenv_test.cpp
47
fesetround(
FE_TOWARDZERO
);
48
ASSERT_EQ(
FE_TOWARDZERO
, fegetround());
math_test.cpp
1018
fesetround(
FE_TOWARDZERO
); // lrint/lrintf/lrintl obey the rounding mode.
1027
fesetround(
FE_TOWARDZERO
); // llrint/llrintf/llrintl obey the rounding mode.
1055
fesetround(
FE_TOWARDZERO
); // rint/rintf obey the rounding mode.
1082
fesetround(
FE_TOWARDZERO
); // nearbyint/nearbyintf/nearbyintl obey the rounding mode.
1202
fesetround(
FE_TOWARDZERO
); // round ignores the rounding mode and always rounds away from zero.
1214
fesetround(
FE_TOWARDZERO
); // roundf ignores the rounding mode and always rounds away from zero.
[
all
...]
/device/linaro/bootloader/edk2/ArmPkg/Library/ArmSoftFloatLib/Arm/
softfloat.h
58
#define
FE_TOWARDZERO
3 /* round to zero (truncate) */
76
FP_RZ=
FE_TOWARDZERO
/* round to zero (truncate) */
/bionic/libm/amd64/
fenv.c
46
#define X87_ROUND_MASK (FE_TONEAREST | FE_DOWNWARD | FE_UPWARD |
FE_TOWARDZERO
)
/bionic/libm/i387/
fenv.c
33
#define ROUND_MASK (FE_TONEAREST | FE_DOWNWARD | FE_UPWARD |
FE_TOWARDZERO
)
/device/linaro/bootloader/edk2/StdLib/LibC/gdtoa/
strtod.c
143
#if defined(FE_DOWNWARD) && defined(FE_TONEAREST) && defined(
FE_TOWARDZERO
) && defined(FE_UPWARD)
146
case
FE_TOWARDZERO
: fpi1.rounding = 0; break;
Completed in 1336 milliseconds
1
2