HomeSort by: relevance | last modified time | path
    Searched refs:isNormal (Results 1 - 10 of 10) sorted by relevancy

  /src/external/gpl3/gcc.old/dist/libphobos/src/std/math/
traits.d 203 bool isNormal(X)(X x) @trusted pure nothrow @nogc
222 assert(isNormal(f));
223 assert(isNormal(d));
224 assert(isNormal(e));
226 assert(!isNormal(f));
227 assert(!isNormal(d));
228 assert(!isNormal(e));
229 assert(!isNormal(real.infinity));
230 assert(isNormal(-real.max));
231 assert(!isNormal(real.min_normal/4))
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Lex/
ModuleLoader.h 59 bool isNormal() const { return Storage.getInt() == Normal; }
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGCleanup.h 287 EHCleanupScope(bool isNormal, bool isEH, unsigned cleanupSize,
294 CleanupBits.IsNormalCleanup = isNormal;
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
APFloat.h 342 /// IEEE-754R isNormal: Returns true if and only if the current value is normal.
346 bool isNormal() const { return !isDenormal() && isFiniteNonZero(); }
1221 bool isNormal() const { return !isDenormal() && isFiniteNonZero(); }
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUInstCombineIntrinsic.cpp 352 ((Mask & N_NORMAL) && Val.isNormal() && Val.isNegative()) ||
357 ((Mask & P_NORMAL) && Val.isNormal() && !Val.isNegative()) ||
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/
numeric.d 1728 See_Also: $(LREF findRoot), $(REF isNormal, std,math)
1744 assert(isNormal(relTolerance), "relTolerance is not normal floating point number");
1745 assert(isNormal(absTolerance), "absTolerance is not normal floating point number");
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Constants.cpp 243 return CFP->getValueAPF().isNormal();
249 if (!CFP || !CFP->getValueAPF().isNormal())
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
CompilerInstance.cpp 1873 if (!Result.isNormal())
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineAddSub.cpp 1514 if (match(XY, m_APFloat(C)) && !C->isNormal())
  /src/external/apache2/llvm/dist/clang/lib/AST/
ExprConstant.cpp 11745 Success(Val.isNormal() ? 1 : 0, E);

Completed in 79 milliseconds