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

  /external/ceres-solver/include/ceres/
fpclassify.h 50 inline bool IsNormal (double x) {
61 inline bool IsNormal (double x) { return isnormal(x); }
83 inline bool IsNormal (double x) { return std::isnormal(x); }
jet.h 489 // these classifications. This picks that IsFinite and isnormal are "all"
542 bool IsNormal(const Jet<T, N>& f) {
543 if (!IsNormal(f.a)) {
547 if (!IsNormal(f.v[i])) {
  /external/ceres-solver/internal/ceres/
jet_test.cc 296 EXPECT_FALSE(IsNormal(a));
307 EXPECT_FALSE(IsNormal(a));
318 EXPECT_FALSE(IsNormal(a));
329 EXPECT_TRUE(IsNormal(a));
  /frameworks/compile/slang/
slang_rs_spec_table.cpp 141 bool IsNormal,
145 mIsNormal(IsNormal),
152 inline bool isNormal() const { return mIsNormal; }
286 ((DataElements[i]->isNormal()) ? "true" : "false"),
359 /* IsNormal = */true, /* VectorSize = */1),
  /external/llvm/lib/Transforms/Utils/
LowerInvoke.cpp 496 Value *IsNormal = new ICmpInst(EntryBB->getTerminator(),
504 BranchInst::Create(ContBlock, CatchBB, IsNormal, EntryBB);
  /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 419 milliseconds