Home
last modified time | relevance | path

Searched refs:is_zero_or_subnormal (Results 1 – 11 of 11) sorted by relevance

/dports/biology/iqtree/IQ-TREE-2.0.6/vectorclass/
H A Dvectorf256e.h1057 static inline Vec8fb is_zero_or_subnormal(Vec8f const & a) { in is_zero_or_subnormal() function
1058 return Vec8fb(is_zero_or_subnormal(a.get_low()), is_zero_or_subnormal(a.get_high())); in is_zero_or_subnormal()
1683 static inline Vec4db is_zero_or_subnormal(Vec4d const & a) { in is_zero_or_subnormal() function
1684 return Vec4db(is_zero_or_subnormal(a.get_low()),is_zero_or_subnormal(a.get_high())); in is_zero_or_subnormal()
H A Dvectorf512e.h860 static inline Vec16fb is_zero_or_subnormal(Vec16f const & a) { in is_zero_or_subnormal() function
861 return Vec16fb(is_zero_or_subnormal(a.get_low()), is_zero_or_subnormal(a.get_high())); in is_zero_or_subnormal()
1508 static inline Vec8db is_zero_or_subnormal(Vec8d const & a) { in is_zero_or_subnormal() function
1509 return Vec8db(is_zero_or_subnormal(a.get_low()), is_zero_or_subnormal(a.get_high())); in is_zero_or_subnormal()
H A Dvectorf256.h1312 static inline Vec8fb is_zero_or_subnormal(Vec8f const & a) { in is_zero_or_subnormal() function
1318 return Vec8fb(is_zero_or_subnormal(a.get_low()), is_zero_or_subnormal(a.get_high())); in is_zero_or_subnormal()
2122 static inline Vec4db is_zero_or_subnormal(Vec4d const & a) { in is_zero_or_subnormal() function
2128 return Vec4db(is_zero_or_subnormal(a.get_low()),is_zero_or_subnormal(a.get_high())); in is_zero_or_subnormal()
H A Dvectormath_exp.h1441 xzero = is_zero_or_subnormal(x0); in pow_template_d()
1678 xzero = is_zero_or_subnormal(x0); in pow_template_f()
H A Dvectorf128.h1297 static inline Vec4fb is_zero_or_subnormal(Vec4f const & a) { in is_zero_or_subnormal() function
2293 static inline Vec2db is_zero_or_subnormal(Vec2d const & a) { in is_zero_or_subnormal() function
H A Dvectorf512.h980 static inline Vec16fb is_zero_or_subnormal(Vec16f const & a) { in is_zero_or_subnormal() function
1696 static inline Vec8db is_zero_or_subnormal(Vec8d const & a) { in is_zero_or_subnormal() function
/dports/graphics/librsvg2-rust/librsvg-2.52.8/vendor/wide/src/
H A Df64x2_.rs1286 fn is_zero_or_subnormal(self) -> Self { in is_zero_or_subnormal() method
1366 let iszero = self.is_zero_or_subnormal(); in ln()
1471 let xzero = self.is_zero_or_subnormal(); in pow_f64x2()
H A Df32x4_.rs1269 fn is_zero_or_subnormal(self) -> Self { in is_zero_or_subnormal() method
1336 let is_zero = self.is_zero_or_subnormal(); in ln()
1436 let x_zero = self.is_zero_or_subnormal(); in pow_f32x4()
H A Df64x4_.rs1412 fn is_zero_or_subnormal(self) -> Self { in is_zero_or_subnormal() method
1501 let iszero = self.is_zero_or_subnormal(); in ln()
1606 let xzero = self.is_zero_or_subnormal(); in pow_f64x4()
H A Df32x8_.rs1466 fn is_zero_or_subnormal(self) -> Self { in is_zero_or_subnormal() method
1557 let is_zero = self.is_zero_or_subnormal(); in ln()
1650 let x_zero = self.is_zero_or_subnormal(); in pow_f32x8()
/dports/devel/py-demjson/demjson-2.2.4/
H A Ddemjson.py257 is_zero_or_subnormal = lambda n: n.is_zero() or n.is_subnormal() function
261 is_zero_or_subnormal = lambda n: n==0 function
303 if not f or not str(f)[0].isdigit() or is_zero_or_subnormal(f) or f==f0:
334 elif is_zero_or_subnormal(f) or f==f0: