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

  /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 446 // isnormal(x) --> x == x && fabsf(x) < infinity && fabsf(x) >= float_min
455 Value *IsNormal =
457 "isnormal");
459 V = Builder.CreateAnd(V, IsNormal, "and");
520 Value *IsNormal =
522 "isnormal");
524 Builder.CreateSelect(IsNormal, EmitScalarExpr(E->getArg(2)),
    [all...]

Completed in 716 milliseconds