Searched refs:huge (Results 1 – 14 of 14) sorted by relevance
/lk-master/external/lib/libm/ |
A D | s_scalbnf.c | 24 huge = 1.0e+30, variable 42 if (k > 0xfe) return huge*copysignf(huge,x); /* overflow */ in scalbnf() 47 return huge*copysignf(huge,x); /*overflow*/ in scalbnf()
|
A D | s_scalbn.c | 29 huge = 1.0e+300, variable 47 if (k > 0x7fe) return huge*copysign(huge,x); /* overflow */ in scalbn() 53 return huge*copysign(huge,x); /*overflow*/ in scalbn()
|
A D | e_pow.c | 72 huge = 1.0e300, variable 189 if(ix<=0x3fefffff) return (hy<0)? huge*huge:tiny*tiny; in __ieee754_pow() 190 if(ix>=0x3ff00000) return (hy>0)? huge*huge:tiny*tiny; in __ieee754_pow() 193 if(ix<0x3fefffff) return (hy<0)? s*huge*huge:s*tiny*tiny; in __ieee754_pow() 194 if(ix>0x3ff00000) return (hy>0)? s*huge*huge:s*tiny*tiny; in __ieee754_pow() 263 return s*huge*huge; /* overflow */ in __ieee754_pow() 265 if(p_l+ovt>z-p_h) return s*huge*huge; /* overflow */ in __ieee754_pow()
|
A D | s_trunc.c | 30 static const double huge = 1.0e300; variable 41 if(huge+x>0.0) {/* |x|<1, so return 0*sign(x) */ in trunc() 48 if(huge+x>0.0) { /* raise inexact flag */ in trunc() 58 if(huge+x>0.0) /* raise inexact flag */ in trunc()
|
A D | s_ceil.c | 30 static const double huge = 1.0e300; variable 41 if(huge+x>0.0) {/* return 0*sign(x) if |x|<1 */ in ceil() 48 if(huge+x>0.0) { /* raise inexact flag */ in ceil() 59 if(huge+x>0.0) { /* raise inexact flag */ in ceil()
|
A D | s_floor.c | 30 static const double huge = 1.0e300; variable 41 if (huge+x>0.0) { /* return 0*sign(x) if |x|<1 */ in floor() 49 if (huge+x>0.0) { /* raise inexact flag */ in floor() 61 if (huge+x>0.0) { /* raise inexact flag */ in floor()
|
A D | s_ceilf.c | 22 static const float huge = 1.0e30; variable 34 if(huge+x>(float)0.0) {/* return 0*sign(x) if |x|<1 */ in ceilf() 41 if(huge+x>(float)0.0) { /* raise inexact flag */ in ceilf()
|
A D | s_floorf.c | 31 static const float huge = 1.0e30; variable 42 if(huge+x>(float)0.0) {/* return 0*sign(x) if |x|<1 */ in floorf() 50 if(huge+x>(float)0.0) { /* raise inexact flag */ in floorf()
|
A D | e_powf.c | 31 huge = 1.0e30, variable 134 if(ix<0x3f7ffff8) return (hy<0)? sn*huge*huge:sn*tiny*tiny; in __ieee754_powf() 135 if(ix>0x3f800007) return (hy>0)? sn*huge*huge:sn*tiny*tiny; in __ieee754_powf() 208 return sn*huge*huge; /* overflow */ in __ieee754_powf() 210 if(p_l+ovt>z-p_h) return sn*huge*huge; /* overflow */ in __ieee754_powf()
|
A D | e_exp.c | 101 huge = 1.0e+300, variable 124 if(x > o_threshold) return huge*huge; /* overflow */ in __ieee754_exp() 141 if(huge+x>one) return one+x;/* trigger inexact */ in __ieee754_exp()
|
A D | s_atan.c | 71 huge = 1.0e300; variable 91 if(huge+x>one) return x; /* raise inexact */ in atan()
|
A D | e_asin.c | 54 huge = 1.000e+300, variable 86 if(huge+x>one) return x;/* return x with inexact if x!=0*/ in __ieee754_asin()
|
A D | e_asinf.c | 25 huge = 1.000e+30, variable 55 if(huge+x>one) return x;/* return x with inexact if x!=0*/ in __ieee754_asinf()
|
/lk-master/external/platform/nrfx/doc/ |
A D | nrfx.doxyfile | 70 # option can be useful when feeding doxygen a huge amount of source files, where
|
Completed in 36 milliseconds