Home
last modified time | relevance | path

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

/lk-master/external/lib/libm/
A De_atan2.c51 tiny = 1.0e-300; variable
82 case 2: return pi+tiny;/* atan(+0,-anything) = pi */ in __ieee754_atan2()
83 case 3: return -pi-tiny;/* atan(-0,-anything) =-pi */ in __ieee754_atan2()
87 if((ix|lx)==0) return (hy<0)? -pi_o_2-tiny: pi_o_2+tiny; in __ieee754_atan2()
93 case 0: return pi_o_4+tiny;/* atan(+INF,+INF) */ in __ieee754_atan2()
94 case 1: return -pi_o_4-tiny;/* atan(-INF,+INF) */ in __ieee754_atan2()
95 case 2: return 3.0*pi_o_4+tiny;/*atan(+INF,-INF)*/ in __ieee754_atan2()
96 case 3: return -3.0*pi_o_4-tiny;/*atan(-INF,-INF)*/ in __ieee754_atan2()
102 case 2: return pi+tiny ; /* atan(+...,-INF) */ in __ieee754_atan2()
103 case 3: return -pi-tiny ; /* atan(-...,-INF) */ in __ieee754_atan2()
[all …]
A De_pow.c73 tiny = 1.0e-300, 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()
269 return s*tiny*tiny; /* underflow */ in __ieee754_pow()
271 if(p_l<=z-p_h) return s*tiny*tiny; /* underflow */ in __ieee754_pow()
A Ds_scalbnf.c25 tiny = 1.0e-30; variable
38 if (n< -50000) return tiny*x; /*underflow*/ in scalbnf()
48 else return tiny*copysignf(tiny,x); /*underflow*/ in scalbnf()
A Ds_scalbn.c30 tiny = 1.0e-300; variable
43 if (n< -50000) return tiny*x; /*underflow*/ in scalbn()
55 return tiny*copysign(tiny,x); /*underflow*/ in scalbn()
A De_powf.c32 tiny = 1.0e-30, 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()
213 return sn*tiny*tiny; /* underflow */ in __ieee754_powf()
215 if(p_l<=z-p_h) return sn*tiny*tiny; /* underflow */ in __ieee754_powf()
A De_sqrtf.c23 static const float one = 1.0, tiny=1.0e-30; variable
90 z = one-tiny; /* trigger inexact flag */ in __ieee754_sqrtf()
92 z = one+tiny; in __ieee754_sqrtf()
A De_sqrt.c106 static const double one = 1.0, tiny=1.0e-300; variable
187 z = one-tiny; /* trigger inexact flag */ in __ieee754_sqrt()
189 z = one+tiny; in __ieee754_sqrt()
/lk-master/external/platform/lpc15xx/lpcopen/usbd_rom_hid_mouse/example/
A Dreadme.dox39 * The tiny joystick that is surface mounted on the eval board moves the mouse.
/lk-master/external/platform/lpc15xx/lpcopen/usbd_rom_hid_keyboard/example/
A Dreadme.dox40 * The tiny joystick that is surface mounted on the eval board has 4 positions
/lk-master/external/platform/pico/rp2_common/pico_float/
A Dfloat_aeabi.S108 # note fadd, fsub, fmul, fdiv are so tiny and just defer to rom so are lumped together so they can …
/lk-master/external/platform/pico/rp2_common/pico_double/
A Ddouble_aeabi.S135 # note fadd, fsub, fmul, fdiv are so tiny and just defer to rom so are lumped together so they can …

Completed in 13 milliseconds