OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FE_TONEAREST
(Results
1 - 25
of
30
) sorted by null
1
2
/external/tensorflow/tensorflow/core/platform/
setround.cc
27
original_mode_ =
FE_TONEAREST
;
setround_test.cc
74
port::ScopedSetRound round(
FE_TONEAREST
);
89
std::fesetround(
FE_TONEAREST
);
/bionic/libm/upstream-freebsd/lib/msun/src/
s_fmaf.c
57
fegetround() !=
FE_TONEAREST
) /* not round-to-nearest */
67
fesetround(
FE_TONEAREST
);
s_fmal.c
199
* modes other than
FE_TONEAREST
are painful.
206
case
FE_TONEAREST
:
230
fesetround(
FE_TONEAREST
);
257
if (oround !=
FE_TONEAREST
) {
s_fma.c
211
* modes other than
FE_TONEAREST
are painful.
218
case
FE_TONEAREST
:
242
fesetround(
FE_TONEAREST
);
269
if (oround !=
FE_TONEAREST
) {
e_sqrtl.c
151
if (r ==
FE_TONEAREST
) {
/device/linaro/bootloader/edk2/StdLib/Include/Aarch64/machine/
fenv.h
26
#define
FE_TONEAREST
0 /* round to nearest representable number */
ieeefp.h
35
FP_RN=
FE_TONEAREST
, /* round to nearest representable number */
/device/linaro/bootloader/edk2/StdLib/Include/Arm/machine/
fenv.h
42
#define
FE_TONEAREST
0 /* round to nearest representable number */
ieeefp.h
48
FP_RN=
FE_TONEAREST
, /* round to nearest representable number */
/bionic/libc/include/bits/
fenv_mips.h
90
#define
FE_TONEAREST
0x0000
fenv_arm.h
69
#define
FE_TONEAREST
0x0
fenv_x86.h
61
#define
FE_TONEAREST
0x0000
fenv_x86_64.h
60
#define
FE_TONEAREST
0x000
/external/libcxx/test/std/depr/depr.c.headers/
fenv_h.pass.cpp
45
#ifndef
FE_TONEAREST
46
#error
FE_TONEAREST
not defined
/bionic/tests/headers/posix/
fenv_h.c
46
MACRO(
FE_TONEAREST
);
/external/libcxx/test/std/numerics/cfenv/cfenv.syn/
cfenv.pass.cpp
45
#ifndef
FE_TONEAREST
46
#error
FE_TONEAREST
not defined
/external/deqp/framework/delibs/debase/
deMath.c
59
case
FE_TONEAREST
: return DE_ROUNDINGMODE_TO_NEAREST_EVEN;
95
case DE_ROUNDINGMODE_TO_NEAREST_EVEN: flag =
FE_TONEAREST
; break;
/external/libpng/contrib/tools/
cvtcolor.c
56
/*
FE_TONEAREST
is the IEEE754 round to nearest, preferring even, mode; i.e.
60
fesetround(
FE_TONEAREST
);
/external/tensorflow/tensorflow/core/grappler/optimizers/
evaluation_utils.cc
39
port::ScopedSetRound round(
FE_TONEAREST
);
/bionic/tests/
fenv_test.cpp
41
fesetround(
FE_TONEAREST
);
42
ASSERT_EQ(
FE_TONEAREST
, fegetround());
/device/linaro/bootloader/edk2/ArmPkg/Library/ArmSoftFloatLib/Arm/
softfloat.h
55
#define
FE_TONEAREST
0 /* round to nearest representable number */
73
FP_RN=
FE_TONEAREST
, /* round to nearest representable number */
/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)
/external/tensorflow/tensorflow/core/lib/core/
threadpool.cc
57
port::ScopedSetRound round(
FE_TONEAREST
);
Completed in 1419 milliseconds
1
2