HomeSort by relevance Sort by last modified time
    Searched defs:IsNormal (Results 1 - 6 of 6) sorted by null

  /external/ceres-solver/include/ceres/
fpclassify.h 52 inline bool IsNormal (double x) {
63 inline bool IsNormal (double x) { return isnormal(x); }
85 inline bool IsNormal (double x) { return std::isnormal(x); }
jet.h 555 // these classifications. This picks that IsFinite and isnormal are "all"
608 bool IsNormal(const Jet<T, N>& f) {
609 if (!IsNormal(f.a)) {
613 if (!IsNormal(f.v[i])) {
  /external/lzma/CPP/Windows/
FileFind.h 52 bool IsNormal() const { return MatchesMask(FILE_ATTRIBUTE_NORMAL); }
  /external/llvm/lib/Transforms/Utils/
LowerInvoke.cpp 494 Value *IsNormal = new ICmpInst(EntryBB->getTerminator(),
502 BranchInst::Create(ContBlock, CatchBB, IsNormal, EntryBB);
  /external/chromium_org/v8/src/
property.h 206 if (IsNormal()) return true;
301 bool IsNormal() {
  /external/clang/lib/CodeGen/
CGBuiltin.cpp 516 // isnormal(x) --> x == x && fabsf(x) < infinity && fabsf(x) >= float_min
525 Value *IsNormal =
527 "isnormal");
529 V = Builder.CreateAnd(V, IsNormal, "and");
590 Value *IsNormal =
592 "isnormal");
594 Builder.CreateSelect(IsNormal, EmitScalarExpr(E->getArg(2)),
    [all...]

Completed in 266 milliseconds