HomeSort by relevance Sort by last modified time
    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])) {
  /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 {
  /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 179 milliseconds