/lk-master/external/lib/libm/ |
A D | s_atan.c | 70 one = 1.0, variable 91 if(huge+x>one) return x; /* raise inexact */ in atan() 98 id = 0; x = (2.0*x-one)/(2.0+x); in atan() 100 id = 1; x = (x-one)/(x+one); in atan() 104 id = 2; x = (x-1.5)/(one+1.5*x); in atan()
|
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() 91 if (z>=one) { in __ieee754_sqrtf() 92 z = one+tiny; in __ieee754_sqrtf() 93 if (z>one) in __ieee754_sqrtf()
|
A D | e_acos.c | 46 one= 1.00000000000000000000e+00, /* 0x3FF00000, 0x00000000 */ variable 81 q = one+z*(qS1+z*(qS2+z*(qS3+z*qS4))); in __ieee754_acos() 85 z = (one+x)*0.5; in __ieee754_acos() 87 q = one+z*(qS1+z*(qS2+z*(qS3+z*qS4))); in __ieee754_acos() 93 z = (one-x)*0.5; in __ieee754_acos() 99 q = one+z*(qS1+z*(qS2+z*(qS3+z*qS4))); in __ieee754_acos()
|
A D | e_acosf.c | 24 one = 1.0000000000e+00, /* 0x3F800000 */ variable 56 q = one+z*(qS1+z*(qS2+z*(qS3+z*qS4))); in __ieee754_acosf() 60 z = (one+x)*(float)0.5; in __ieee754_acosf() 62 q = one+z*(qS1+z*(qS2+z*(qS3+z*qS4))); in __ieee754_acosf() 69 z = (one-x)*(float)0.5; in __ieee754_acosf() 76 q = one+z*(qS1+z*(qS2+z*(qS3+z*qS4))); in __ieee754_acosf()
|
A D | e_exp.c | 85 one = 1.0, variable 141 if(huge+x>one) return one+x;/* trigger inexact */ in __ieee754_exp() 152 if(k==0) return one-((x*c)/(c-2.0)-x); in __ieee754_exp() 153 else y = one-((lo-(x*c)/(2.0-c))-hi); in __ieee754_exp()
|
A D | e_asin.c | 53 one = 1.00000000000000000000e+00, /* 0x3FF00000, 0x00000000 */ variable 86 if(huge+x>one) return x;/* return x with inexact if x!=0*/ in __ieee754_asin() 90 q = one+t*(qS1+t*(qS2+t*(qS3+t*qS4))); in __ieee754_asin() 95 w = one-fabs(x); in __ieee754_asin() 98 q = one+t*(qS1+t*(qS2+t*(qS3+t*qS4))); in __ieee754_asin()
|
A D | e_asinf.c | 24 one = 1.0000000000e+00, /* 0x3F800000 */ variable 55 if(huge+x>one) return x;/* return x with inexact if x!=0*/ in __ieee754_asinf() 59 q = one+t*(qS1+t*(qS2+t*(qS3+t*qS4))); in __ieee754_asinf() 64 w = one-fabsf(x); in __ieee754_asinf() 67 q = one+t*(qS1+t*(qS2+t*(qS3+t*qS4))); in __ieee754_asinf()
|
A D | k_cos.c | 60 one = 1.00000000000000000000e+00, /* 0x3FF00000, 0x00000000 */ variable 77 w = one-hz; in __kernel_cos() 78 return w + (((one-w)-hz) + (z*r-x*y)); in __kernel_cos()
|
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() 188 if (z>=one) { in __ieee754_sqrt() 189 z = one+tiny; in __ieee754_sqrt() 191 else if (z>one) { in __ieee754_sqrt()
|
A D | e_pow.c | 69 one = 1.0, variable 111 if((iy|ly)==0) return one; in __ieee754_pow() 149 if(hy<0) return one/x; else return x; in __ieee754_pow() 163 if(hy<0) z = one/z; /* z = (1/|x|) */ in __ieee754_pow() 183 s = one; /* s (sign of result -ve**odd) = -1 else = 1 */ in __ieee754_pow() 184 if((n|(yisint-1))==0) s = -one;/* (-ve)**(odd int) */ in __ieee754_pow() 197 t = ax-one; /* t has 20 trailing zeros */ in __ieee754_pow() 221 v = one/(ax+bp[k]); in __ieee754_pow() 298 z = one-(r-z); in __ieee754_pow()
|
A D | e_powf.c | 28 one = 1.0, variable 69 if(iy==0) return one; in __ieee754_powf() 101 if(hy<0) return one/x; else return x; in __ieee754_powf() 113 if(hy<0) z = one/z; /* z = (1/|x|) */ in __ieee754_powf() 128 sn = one; /* s (sign of result -ve**odd) = -1 else = 1 */ in __ieee754_powf() 129 if((n|(yisint-1))==0) sn = -one;/* (-ve)**(odd int) */ in __ieee754_powf() 163 v = one/(ax+bp[k]); in __ieee754_powf() 241 z = one-(r-z); in __ieee754_powf()
|
A D | k_cosf.c | 27 one = 1.0, variable 45 return ((one+z*C0) + w*C1) + (w*z)*r; in __kernel_cosdf()
|
A D | k_rem_pio2.c | 289 one = 1.0, variable 366 z = one - z; in __kernel_rem_pio2() 367 if (carry!=0) z -= scalbn(one,q0); in __kernel_rem_pio2() 405 fw = scalbn(one,q0); in __kernel_rem_pio2()
|
A D | e_fmod.c | 26 static const double one = 1.0, Zero[] = {0.0, -0.0,}; variable 129 x *= one; /* create necessary signal */ in __ieee754_fmod()
|
A D | k_tan.c | 72 #define one xxx[13] macro
|
/lk-master/scripts/ |
A D | codestyle | 13 --keep-one-line-blocks --pad-header --convert-tabs $@
|
/lk-master/platform/pc/include/ |
A D | pcnet.h | 75 uint32_t one : 1; member
|
/lk-master/external/platform/lpc15xx/lpcopen/periph_systick/example/ |
A D | readme.dox | 40 * While one would expect a clock divider to delay an interrupt occurrence this implementation 43 * to 2, one would expect to see half the interrupt count however twice the interrupts occure as
|
/lk-master/external/platform/nrfx/ |
A D | README.md | 46 and run one of the scripts: `generate_html_doc.bat` or `generate_html_doc.sh`. Generated
|
/lk-master/arch/or1k/ |
A D | linker.ld | 61 /* in one segment binaries, the rom data address is on top of the ram data address */
|
/lk-master/external/platform/nrfx/doc/ |
A D | nrfx.doxyfile | 45 # Using the PROJECT_BRIEF tag one can provide an optional one line description 53 # With the PROJECT_LOGO tag one can specify a logo or an icon that is included 152 # Stripping is only done if one of the specified strings matches the left-hand 279 # language is one of the parsers supported by doxygen: IDL, Java, Javascript, 365 # is disabled and one has to add nested compounds explicitly via \ingroup. 613 # only one candidate or it is obvious which candidate to choose by doing a 851 # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude 859 # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names 1470 # doxygen will group on one line in the generated HTML documentation. 1547 # The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax [all …]
|
/lk-master/external/platform/lpc15xx/lpcopen/periph_mrt/example/ |
A D | readme.dox | 37 * blink LEDs 0 and 1. Timer 2 is configured as a one-shot interrupt that gets
|
/lk-master/arch/arm/ |
A D | system-onesegment.ld | 72 /* in one segment binaries, the rom data address is on top of the ram data address */
|
/lk-master/arch/arm64/ |
A D | system-onesegment.ld | 74 /* in one segment binaries, the rom data address is on top of the ram data address */
|
/lk-master/arch/microblaze/ |
A D | linker.ld | 71 /* in one segment binaries, the rom data address is on top of the ram data address */
|