OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:_FPCLASS_NINF
(Results
1 - 14
of
14
) sorted by null
/external/libxml2/include/
win32config.h
55
: ((_fpclass(d) ==
_FPCLASS_NINF
) ? -1 : 0))
/external/libxml2/win32/VC10/
config.h
54
: ((_fpclass(d) ==
_FPCLASS_NINF
) ? -1 : 0))
/external/protobuf/src/google/protobuf/stubs/
mathlimits.h
228
static bool IsInf(const Type x) { return (_fpclass(x) & (
_FPCLASS_NINF
| _FPCLASS_PINF)) != 0; } \
230
static bool IsNegInf(const Type x) { return _fpclass(x) ==
_FPCLASS_NINF
; }
/external/mesa3d/include/
c99_math.h
164
case
_FPCLASS_NINF
: /* negative infinity */
/prebuilts/ndk/r10/sources/cxx-stl/llvm-libc++/libcxx/include/support/win32/
math_win32.h
83
case
_FPCLASS_NINF
:
/prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/include/support/win32/
math_win32.h
83
case
_FPCLASS_NINF
:
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/include/support/win32/
math_win32.h
85
case
_FPCLASS_NINF
:
/external/eigen/test/
fastmath.cpp
25
template<typename T> bool (isinf)(T x) { return _fpclass(x)==
_FPCLASS_NINF
|| _fpclass(x)==_FPCLASS_PINF; }
/external/libxml2/
trionan.c
470
: ((_fpclass(number) ==
_FPCLASS_NINF
) ? -1 : 0));
609
# define TRIO_NEGATIVE_INFINITY
_FPCLASS_NINF
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
float.h
192
#define
_FPCLASS_NINF
0x0004 /* Negative Infinity */
math.h
62
#define
_FPCLASS_NINF
0x0004 /* Negative Infinity */
332
#define FP_NINF
_FPCLASS_NINF
[
all
...]
/prebuilts/ndk/r11/sources/cxx-stl/stlport/src/
num_put_float.cpp
152
return fclass ==
_FPCLASS_NINF
|| fclass == _FPCLASS_PINF;
154
static inline bool _Stl_is_neg_inf(double x) { return _fpclass(x) ==
_FPCLASS_NINF
; }
[
all
...]
/prebuilts/ndk/r13/sources/cxx-stl/stlport/src/
num_put_float.cpp
152
return fclass ==
_FPCLASS_NINF
|| fclass == _FPCLASS_PINF;
154
static inline bool _Stl_is_neg_inf(double x) { return _fpclass(x) ==
_FPCLASS_NINF
; }
[
all
...]
/external/eigen/Eigen/src/Core/
MathFunctions.h
779
return _fpclass(x)==
_FPCLASS_NINF
|| _fpclass(x)==_FPCLASS_PINF;
[
all
...]
Completed in 1509 milliseconds