OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:isnormal
(Results
1 - 25
of
265
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
/external/v8/src/base/
qnx-math.h
14
#undef
isnormal
macro
/external/ceres-solver/include/ceres/
fpclassify.h
53
inline bool
IsNormal
(double x) {
61
// On Android, when using the STLPort, the C++ isnan and
isnormal
functions
64
inline bool
IsNormal
(double x) { return
isnormal
(x); }
81
inline bool
IsNormal
(double x) { return std::
isnormal
(x); }
/prebuilts/gdb/darwin-x86/lib/python2.7/test/decimaltestdata/
extra.decTest
[
all
...]
/prebuilts/gdb/linux-x86/lib/python2.7/test/decimaltestdata/
extra.decTest
[
all
...]
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/decimaltestdata/
extra.decTest
[
all
...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/decimaltestdata/
extra.decTest
[
all
...]
/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/internal/
ieee754.h
43
bool
IsNormal
() const { return (u_ & kExponentMask) != 0 || Significand() == 0; }
46
uint64_t IntegerSignificand() const { return
IsNormal
() ? Significand() | kHiddenBit : Significand(); }
47
int IntegerExponent() const { return (
IsNormal
() ? Exponent() : kDenormalExponent) - kSignificandSize; }
/external/ceres-solver/internal/ceres/
jet_test.cc
328
EXPECT_FALSE(
IsNormal
(a));
339
EXPECT_FALSE(
IsNormal
(a));
350
EXPECT_FALSE(
IsNormal
(a));
361
EXPECT_TRUE(
IsNormal
(a));
/external/libcxx/include/support/win32/
math_win32.h
39
_LIBCPP_ALWAYS_INLINE bool
isnormal
( double num )
function
/external/lzma/CPP/Windows/
FileFind.h
54
bool
IsNormal
() const { return MatchesMask(FILE_ATTRIBUTE_NORMAL); }
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/win32/
math_win32.h
37
_LIBCPP_ALWAYS_INLINE bool
isnormal
( double num )
function
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/libcxx/include/support/win32/
math_win32.h
37
_LIBCPP_ALWAYS_INLINE bool
isnormal
( double num )
function
/external/libcxx/include/
cmath
147
bool
isnormal
(arithmetic x);
432
//
isnormal
434
#ifdef
isnormal
441
return
isnormal
(__lcpp_x);
444
#undef
isnormal
449
isnormal
(_A1 __lcpp_x) _NOEXCEPT
454
#endif //
isnormal
643
using ::
isnormal
;
[
all
...]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
cmath
147
bool
isnormal
(arithmetic x);
432
//
isnormal
434
#ifdef
isnormal
441
return
isnormal
(__x);
444
#undef
isnormal
449
isnormal
(_A1 __x) _NOEXCEPT
454
#endif //
isnormal
643
using ::
isnormal
;
[
all
...]
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/libcxx/include/
cmath
147
bool
isnormal
(arithmetic x);
432
//
isnormal
434
#ifdef
isnormal
441
return
isnormal
(__x);
444
#undef
isnormal
449
isnormal
(_A1 __x) _NOEXCEPT
454
#endif //
isnormal
643
using ::
isnormal
;
[
all
...]
/bionic/benchmarks/
math_benchmark.cpp
131
d +=
isnormal
(v);
/bionic/libc/bionic/
fpclassify.cpp
108
__strong_alias(
isnormal
, __isnormal);
/bionic/libc/tools/
check-symbols-glibc.py
154
'
isnormal
',
/development/ndk/platforms/android-21/arch-arm64/symbols/
libc.so.functions.txt
432
isnormal
/development/ndk/platforms/android-21/arch-mips64/symbols/
libc.so.functions.txt
432
isnormal
/development/ndk/platforms/android-21/arch-x86_64/symbols/
libc.so.functions.txt
432
isnormal
/device/google/dragon/audio/hal/dsp/
drc_math.h
197
* return x != 0 && !
isnormal
(x);
/external/guava/guava/src/com/google/common/math/
DoubleUtils.java
78
static boolean
isNormal
(double d) {
/bionic/tests/
math_test.cpp
149
TEST(math,
isnormal
) {
150
ASSERT_TRUE(
isnormal
(123.0f));
151
ASSERT_TRUE(
isnormal
(123.0));
152
ASSERT_TRUE(
isnormal
(123.0L));
153
ASSERT_FALSE(
isnormal
(float_subnormal()));
154
ASSERT_FALSE(
isnormal
(double_subnormal()));
155
ASSERT_FALSE(
isnormal
(ldouble_subnormal()));
[
all
...]
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/
cmath
546
#undef
isnormal
636
isnormal
(float __x)
640
isnormal
(double __x)
644
isnormal
(long double __x)
650
isnormal
(_Tp __x)
845
isnormal
(_Tp __f)
[
all
...]
Completed in 752 milliseconds
1
2
3
4
5
6
7
8
9
10
11