HomeSort by relevance Sort by last modified time
    Searched refs:IsNormal (Results 1 - 10 of 10) 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])) {
  /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/lzma/CPP/Windows/
FileFind.h 52 bool IsNormal() const { return MatchesMask(FILE_ATTRIBUTE_NORMAL); }
  /external/chromium_org/v8/src/
property.h 254 bool IsNormal() const {
ic.cc     [all...]
hydrogen.cc     [all...]
runtime.cc     [all...]
objects.cc     [all...]
  /external/clang/lib/CodeGen/
CGBuiltin.cpp 527 // isnormal(x) --> x == x && fabsf(x) < infinity && fabsf(x) >= float_min
536 Value *IsNormal =
538 "isnormal");
540 V = Builder.CreateAnd(V, IsNormal, "and");
601 Value *IsNormal =
603 "isnormal");
605 Builder.CreateSelect(IsNormal, EmitScalarExpr(E->getArg(2)),
    [all...]

Completed in 437 milliseconds