Home
last modified time | relevance | path

Searched refs:isNormal (Results 1 – 12 of 12) sorted by relevance

/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/math/
H A Dtraits.d203 bool isNormal(X)(X x) @trusted pure nothrow @nogc in isNormal() function
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 …]
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Lex/
H A DModuleLoader.h59 bool isNormal() const { return Storage.getInt() == Normal; } in isNormal() function
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGCleanup.h287 EHCleanupScope(bool isNormal, bool isEH, unsigned cleanupSize, in EHCleanupScope() argument
294 CleanupBits.IsNormalCleanup = isNormal; in EHCleanupScope()
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/
H A Dmath.d5836 bool isNormal(X)(X x) @trusted pure nothrow @nogc
5842 return isNormal((cast(double*)&x)[MANTISSA_LSB]);
5858 assert(isNormal(f));
5859 assert(isNormal(d));
5860 assert(isNormal(e));
5862 assert(!isNormal(f));
5863 assert(!isNormal(d));
5864 assert(!isNormal(e));
5865 assert(!isNormal(real.infinity));
5866 assert(isNormal(-real.max));
[all …]
H A Dnumeric.d1429 See_Also: $(LREF findRoot), $(REF isNormal, std,math)
1445 assert(isNormal(relTolerance), "relTolerance is not normal floating point number");
1446 assert(isNormal(absTolerance), "absTolerance is not normal floating point number");
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DAMDGPUInstCombineIntrinsic.cpp352 ((Mask & N_NORMAL) && Val.isNormal() && Val.isNegative()) || in instCombineIntrinsic()
357 ((Mask & P_NORMAL) && Val.isNormal() && !Val.isNegative()) || in instCombineIntrinsic()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A DAPFloat.h346 bool isNormal() const { return !isDenormal() && isFiniteNonZero(); } in isNormal() function
1221 bool isNormal() const { return !isDenormal() && isFiniteNonZero(); } in isNormal() function
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/
H A Dnumeric.d1728 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");
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DConstants.cpp243 return CFP->getValueAPF().isNormal(); in isNormalFP()
249 if (!CFP || !CFP->getValueAPF().isNormal()) in isNormalFP()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Frontend/
H A DCompilerInstance.cpp1873 if (!Result.isNormal()) in loadModule()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
H A DInstCombineAddSub.cpp1514 if (match(XY, m_APFloat(C)) && !C->isNormal()) in factorizeFAddFSub()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DExprConstant.cpp11745 Success(Val.isNormal() ? 1 : 0, E); in VisitBuiltinCallExpr()