OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:IsInfinite
(Results
1 - 4
of
4
) sorted by null
/external/ceres-solver/include/ceres/
fpclassify.h
51
inline bool
IsInfinite
(double x) { return _finite(x) == 0 && _isnan(x) == 0; }
67
inline bool
IsInfinite
(double x) {
72
return !isnan(x) && !
IsInfinite
(x);
79
inline bool
IsInfinite
(double x) { return std::isinf(x); }
jet.h
489
// to be finite (or normal). For IsNaN and
IsInfinite
, the answer is less
490
// clear. This takes a "any" approach for IsNaN and
IsInfinite
such that if any
492
// to strange situations like a jet can be both
IsInfinite
and IsNaN, but in
512
bool
IsInfinite
(const Jet<T, N>& f) {
513
if (
IsInfinite
(f.a)) {
517
if (
IsInfinite
(f.v[i])) {
/external/v8/src/
double.h
110
bool
IsInfinite
() const {
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
gdiplusimpl.h
[
all
...]
Completed in 545 milliseconds