Searched refs:tiny (Results 1 – 11 of 11) sorted by relevance
/lk-master/external/lib/libm/ |
A D | e_atan2.c | 51 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 D | e_pow.c | 73 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 D | s_scalbnf.c | 25 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 D | s_scalbn.c | 30 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 D | e_powf.c | 32 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 D | e_sqrtf.c | 23 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 D | e_sqrt.c | 106 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 D | readme.dox | 39 * 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 D | readme.dox | 40 * The tiny joystick that is surface mounted on the eval board has 4 positions
|
/lk-master/external/platform/pico/rp2_common/pico_float/ |
A D | float_aeabi.S | 108 # 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 D | double_aeabi.S | 135 # note fadd, fsub, fmul, fdiv are so tiny and just defer to rom so are lumped together so they can …
|
Completed in 13 milliseconds