/AliOS-Things-master/components/SDL2/src/libm/ |
A D | e_fmod.c | 26 u_int32_t lx,ly,lz; in __ieee754_fmod() local 40 if(lx==ly) in __ieee754_fmod() 69 lx <<= n; in __ieee754_fmod() 71 hx = lx<<(n-32); in __ieee754_fmod() 72 lx = 0; in __ieee754_fmod() 91 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1; in __ieee754_fmod() 92 if(hz<0){hx = hx+hx+(lx>>31); lx = lx+lx;} in __ieee754_fmod() 99 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1; in __ieee754_fmod() 106 hx = hx+hx+(lx>>31); lx = lx+lx; in __ieee754_fmod() 115 lx = (lx>>n)|((u_int32_t)hx<<(32-n)); in __ieee754_fmod() [all …]
|
A D | e_atan2.c | 54 u_int32_t lx,ly; in __ieee754_atan2() local 56 EXTRACT_WORDS(hx,lx,x); in __ieee754_atan2() 60 if(((ix|((lx|-(int32_t)lx)>>31))>0x7ff00000)|| in __ieee754_atan2() 63 if(((hx-0x3ff00000)|lx)==0) return atan(y); /* x=1.0 */ in __ieee754_atan2() 76 if((ix|lx)==0) return (hy<0)? -pi_o_2-tiny: pi_o_2+tiny; in __ieee754_atan2()
|
A D | s_scalbn.c | 35 int32_t k, hx, lx; in scalbln() local 37 EXTRACT_WORDS(hx, lx, x); in scalbln() 40 if ((lx | (hx & 0x7fffffff)) == 0) in scalbln()
|
A D | e_log10.c | 65 u_int32_t lx; in __ieee754_log10() local 67 EXTRACT_WORDS(hx,lx,x); in __ieee754_log10() 71 if (((hx&0x7fffffff)|lx)==0) in __ieee754_log10()
|
A D | e_exp.c | 118 u_int32_t lx; in __ieee754_exp() local 119 GET_LOW_WORD(lx,x); in __ieee754_exp() 120 if(((hx&0xfffff)|lx)!=0) in __ieee754_exp()
|
A D | e_pow.c | 109 u_int32_t lx,ly; in __ieee754_pow() local 111 EXTRACT_WORDS(hx,lx,x); in __ieee754_pow() 113 if (hx==0x3ff00000 && lx==0) { in __ieee754_pow() 125 if(ix > 0x7ff00000 || ((ix==0x7ff00000)&&(lx!=0)) || in __ieee754_pow() 152 if (((ix-0x3ff00000)|lx)==0) in __ieee754_pow() 171 if(lx==0) { in __ieee754_pow()
|
A D | e_log.c | 89 u_int32_t lx; in __ieee754_log() local 91 EXTRACT_WORDS(hx,lx,x); in __ieee754_log() 95 if (((hx&0x7fffffff)|lx)==0) in __ieee754_log()
|
/AliOS-Things-master/components/py_engine/engine/lib/libm_dbl/ |
A D | atan2.c | 49 uint32_t m,lx,ly,ix,iy; in atan2() local 53 EXTRACT_WORDS(ix, lx, x); in atan2() 55 if (((ix-0x3ff00000) | lx) == 0) /* x = 1.0 */ in atan2() 71 if ((ix|lx) == 0) in atan2()
|
A D | acos.c | 69 uint32_t lx; in acos() local 71 GET_LOW_WORD(lx,x); in acos() 72 if (((ix-0x3ff00000) | lx) == 0) { in acos()
|
A D | asin.c | 76 uint32_t lx; in asin() local 77 GET_LOW_WORD(lx, x); in asin() 78 if (((ix-0x3ff00000) | lx) == 0) in asin()
|
A D | pow.c | 98 uint32_t lx,ly; in pow() local 100 EXTRACT_WORDS(hx, lx, x); in pow() 109 if (hx == 0x3ff00000 && lx == 0) in pow() 112 if (ix > 0x7ff00000 || (ix == 0x7ff00000 && lx != 0) || in pow() 142 if (((ix-0x3ff00000)|lx) == 0) /* (-1)**+-inf is 1 */ in pow() 173 if (lx == 0) { in pow()
|
/AliOS-Things-master/components/SDL2/src/image/ |
A D | nanosvgrast.h | 406 left->x = lx; left->y = ly; in nsvg__initClosed() 418 nsvg__addEdge(r, lx, ly, rx, ry); in nsvg__buttCap() 424 left->x = lx; left->y = ly; in nsvg__buttCap() 442 left->x = lx; left->y = ly; in nsvg__squareCap() 471 lx = x; ly = y; in nsvg__roundCap() 482 left->x = lx; left->y = ly; in nsvg__roundCap() 551 float lx, ly, rx, ry; in nsvg__roundJoin() local 560 lx = left->x; in nsvg__roundJoin() 575 lx = lx1; ly = ly1; in nsvg__roundJoin() 579 left->x = lx; left->y = ly; in nsvg__roundJoin() [all …]
|
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/contrib/tools/ |
A D | genpng.c | 558 double lx = x2 - x1; in line_check() local 560 double len2 = lx*lx + ly*ly; in line_check() 571 cross = x * ly - y * lx; in line_check() 587 dot = lx * x + ly * y; in line_check()
|
/AliOS-Things-master/hardware/chip/rtl872xd/bin/ |
A D | km0_boot_all_2nd.bin | 131 oaddr:0x%lx paddr:0x%lx num:%d noff:%lx nsize:%lx poff:%lx psize:%ld status:%d 135 nbpatch complete ret: %d new off:%lx size:0x%lx patch_off:0x%lx
|
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/ |
A D | trees.c | 1071 unsigned lx = 0; /* running index in l_buf */ local 1076 dist = s->d_buf[lx]; 1077 lc = s->l_buf[lx++]; 1103 Assert((uInt)(s->pending) < s->lit_bufsize + 2*lx, 1106 } while (lx < s->last_lit);
|
/AliOS-Things-master/components/py_engine/external/unzip/src/ |
A D | trees.c | 1083 unsigned lx = 0; /* running index in l_buf */ local 1088 dist = s->d_buf[lx]; 1089 lc = s->l_buf[lx++]; 1115 Assert((uInt)(s->pending) < s->lit_bufsize + 2*lx, 1118 } while (lx < s->last_lit);
|
A D | example.c-bak | 531 printf("zlib version %s = 0x%04x, compile flags = 0x%lx\n",
|
/AliOS-Things-master/components/SDL2/src/image/external/jpeg-9b/ |
A D | testimg.ppm | 4 …lx�rz�vy�vy�vv�tw�tu�ro�kj�fc|^UlOJ^BHA9@91;4,671782782782893893983:94:94=:5>;6?<7?<7@;7@;7@;7B:7B…
|
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/test/images/ |
A D | rgb-3c-8b.ppm | 186 …R��U��S��P��T��V��T��M��H��E}�@wq8oF.L<[)j_4gz=g�@h�Ep�Pw�[u�^w�e|�j{�lx�iz�fx�cw�_t�bv�]t�\s…
|