OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:IsNormal
(Results
1 - 5
of
5
) sorted by null
/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); }
jet.h
487
// these classifications. This picks that IsFinite and
isnormal
are "all"
540
bool
IsNormal
(const Jet<T, N>& f) {
541
if (!
IsNormal
(f.a)) {
545
if (!
IsNormal
(f.v[i])) {
/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/lzma/CPP/Windows/
FileFind.h
54
bool
IsNormal
() const { return MatchesMask(FILE_ATTRIBUTE_NORMAL); }
/external/clang/lib/CodeGen/
CGBuiltin.cpp
781
//
isnormal
(x) --> x == x && fabsf(x) < infinity && fabsf(x) >= float_min
790
Value *
IsNormal
=
792
"
isnormal
");
794
V = Builder.CreateAnd(V,
IsNormal
, "and");
[
all
...]
Completed in 189 milliseconds