OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:isinf
(Results
26 - 50
of
217
) sorted by null
1
2
3
4
5
6
7
8
9
/external/webkit/Source/WebCore/xml/
XPathValue.cpp
132
if (
isinf
(m_number))
/external/stlport/src/
num_put_float.cpp
137
static inline bool _Stl_is_inf(double x) { return
isinf
(x); }
138
// inline bool _Stl_is_neg_inf(double x) { return
isinf
(x) < 0; }
139
static inline bool _Stl_is_neg_inf(double x) { return
isinf
(x) && x < 0; }
144
static inline bool _Stl_is_inf(double x) { return IsNANorINF(x) &&
IsINF
(x); }
145
static inline bool _Stl_is_neg_inf(double x) { return (
IsINF
(x)) && (x < 0.0); }
195
static inline bool _Stl_is_nan_or_inf(double x) { return isnan(x) ||
isinf
(x); }
196
static inline bool _Stl_is_inf(double x) { return
isinf
(x); }
197
static inline bool _Stl_is_neg_inf(double x) { return
isinf
(x) && signbit(x); }
[
all
...]
/ndk/sources/cxx-stl/stlport/src/
num_put_float.cpp
137
static inline bool _Stl_is_inf(double x) { return
isinf
(x); }
138
// inline bool _Stl_is_neg_inf(double x) { return
isinf
(x) < 0; }
139
static inline bool _Stl_is_neg_inf(double x) { return
isinf
(x) && x < 0; }
144
static inline bool _Stl_is_inf(double x) { return IsNANorINF(x) &&
IsINF
(x); }
145
static inline bool _Stl_is_neg_inf(double x) { return (
IsINF
(x)) && (x < 0.0); }
195
static inline bool _Stl_is_nan_or_inf(double x) { return isnan(x) ||
isinf
(x); }
196
static inline bool _Stl_is_inf(double x) { return
isinf
(x); }
197
static inline bool _Stl_is_neg_inf(double x) { return
isinf
(x) && signbit(x); }
[
all
...]
/external/compiler-rt/test/Unit/
divdc3_test.c
30
if (
isinf
(creal(x)) ||
isinf
(cimag(x)))
divsc3_test.c
30
if (
isinf
(crealf(x)) ||
isinf
(cimagf(x)))
divtc3_test.c
33
if (
isinf
(creall(x)) ||
isinf
(cimagl(x)))
divxc3_test.c
33
if (
isinf
(creall(x)) ||
isinf
(cimagl(x)))
muldc3_test.c
30
if (
isinf
(creal(x)) ||
isinf
(cimag(x)))
mulsc3_test.c
30
if (
isinf
(crealf(x)) ||
isinf
(cimagf(x)))
multc3_test.c
33
if (
isinf
(creall(x)) ||
isinf
(cimagl(x)))
mulxc3_test.c
33
if (
isinf
(creall(x)) ||
isinf
(cimagl(x)))
/external/llvm/cmake/
config-ix.cmake
99
check_symbol_exists(
isinf
cmath HAVE_ISINF_IN_CMATH)
100
check_symbol_exists(
isinf
math.h HAVE_ISINF_IN_MATH_H)
/frameworks/compile/libbcc/runtime/test/Unit/
divdc3_test.c
30
if (
isinf
(creal(x)) ||
isinf
(cimag(x)))
divsc3_test.c
30
if (
isinf
(crealf(x)) ||
isinf
(cimagf(x)))
divtc3_test.c
33
if (
isinf
(creall(x)) ||
isinf
(cimagl(x)))
divxc3_test.c
33
if (
isinf
(creall(x)) ||
isinf
(cimagl(x)))
muldc3_test.c
30
if (
isinf
(creal(x)) ||
isinf
(cimag(x)))
mulsc3_test.c
30
if (
isinf
(crealf(x)) ||
isinf
(cimagf(x)))
multc3_test.c
33
if (
isinf
(creall(x)) ||
isinf
(cimagl(x)))
mulxc3_test.c
33
if (
isinf
(creall(x)) ||
isinf
(cimagl(x)))
/bionic/libm/
Android.mk
4
isinf
.c \
/external/libxml2/
trionan.c
448
* DECC has an
isinf
() macro, but it works differently than that
455
#elif defined(
isinf
)
457
* C99 defines
isinf
() as a macro.
459
return
isinf
(number)
/external/stlport/stlport/stl/
_cmath.h
537
template<typename _Tp> inline int __capture_isinf(_Tp __f) { return
isinf
(__f); }
542
#undef
isinf
macro
547
template<typename _Tp> inline int
isinf
(_Tp __f) { return __capture_isinf(__f); }
function in namespace:__captured
578
using __captured::
isinf
;
/external/webkit/Source/WebCore/bindings/v8/custom/
V8HTMLOptionsCollectionCustom.cpp
103
if (!isnan(v) && !
isinf
(v)) {
/ndk/sources/cxx-stl/stlport/stlport/stl/
_cmath.h
537
template<typename _Tp> inline int __capture_isinf(_Tp __f) { return
isinf
(__f); }
542
#undef
isinf
macro
547
template<typename _Tp> inline int
isinf
(_Tp __f) { return __capture_isinf(__f); }
function in namespace:__captured
578
using __captured::
isinf
;
Completed in 869 milliseconds
1
2
3
4
5
6
7
8
9