Searched refs:isNormal (Results 1 – 12 of 12) sorted by relevance
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/math/ |
H A D | traits.d | 203 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 D | ModuleLoader.h | 59 bool isNormal() const { return Storage.getInt() == Normal; } in isNormal() function
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
H A D | CGCleanup.h | 287 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 D | math.d | 5836 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 D | numeric.d | 1429 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 D | AMDGPUInstCombineIntrinsic.cpp | 352 ((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 D | APFloat.h | 346 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 D | 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");
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/ |
H A D | Constants.cpp | 243 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 D | CompilerInstance.cpp | 1873 if (!Result.isNormal()) in loadModule()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineAddSub.cpp | 1514 if (match(XY, m_APFloat(C)) && !C->isNormal()) in factorizeFAddFSub()
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/ |
H A D | ExprConstant.cpp | 11745 Success(Val.isNormal() ? 1 : 0, E); in VisitBuiltinCallExpr()
|