HomeSort by relevance Sort by last modified time
    Searched refs:IsNormal (Results 1 - 11 of 11) 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/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); }
  /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/chromium_org/v8/src/
property.h 206 if (IsNormal()) return true;
301 bool IsNormal() {
ic.cc     [all...]
hydrogen.cc     [all...]
runtime.cc     [all...]
  /external/llvm/lib/Transforms/Utils/
LowerInvoke.cpp 494 Value *IsNormal = new ICmpInst(EntryBB->getTerminator(),
502 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 1252 milliseconds