/AliOS-Things-master/components/SDL2/src/libm/ |
A D | e_fmod.c | 25 int32_t n,hx,hy,hz,ix,iy,sx,i; in __ieee754_fmod() local 30 sx = hx&0x80000000; /* sign of x */ in __ieee754_fmod() 31 hx ^=sx; /* |x| */ in __ieee754_fmod() 41 return Zero[(u_int32_t)sx>>31]; /* |x|=|y| return x*0*/ in __ieee754_fmod() 95 return Zero[(u_int32_t)sx>>31]; in __ieee754_fmod() 104 return Zero[(u_int32_t)sx>>31]; in __ieee754_fmod() 111 INSERT_WORDS(x,hx|sx,lx); in __ieee754_fmod() 118 lx = (hx<<(32-n))|(lx>>n); hx = sx; in __ieee754_fmod() 120 lx = hx>>(n-32); hx = sx; in __ieee754_fmod() 122 INSERT_WORDS(x,hx|sx,lx); in __ieee754_fmod()
|
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/contrib/dbs/xtiff/ |
A D | xtiff.c | 1098 sx = dx + xOffset; 1115 sx = xOffset; 1127 sx = xOffset; 1135 sx = MIN(iw - ww, sx); 1136 if (sx == xOffset) 1138 xOffset = sx; 1147 sx = MAX(sx, 0); 1148 if (sx == xOffset) 1150 xOffset = sx; 1172 sx = iw - ww; [all …]
|
/AliOS-Things-master/components/littlevgl/src/lv_draw/ |
A D | lv_draw_line.c | 29 lv_coord_t sx; /*-1: x1 < x2; 1: x2 >= x1*/ member 164 … main_line.sx = LV_MATH_ABS(main_line.sx); /*The sign can change if the line becomes vertical*/ in lv_draw_line() 170 … main_line.sx = -LV_MATH_ABS(main_line.sx); /*The sign can change if the line becomes vertical*/ in lv_draw_line() 350 if(main_line->sx < 0) { in line_draw_skew() 400 if(main_line->sx < 0) { in line_draw_skew() 402 … main_line->p1.y + pattern[aa_last_corner].y - 1, seg_w + main_line->sx, mask, in line_draw_skew() 429 if(main_line->sx < 0) { in line_draw_skew() 526 … lv_draw_px(draw_area.x1 - main_line->sx, draw_area.y1, mask, style->line.color, opa); in line_draw_skew() 558 … lv_draw_px(draw_area.x1 - main_line->sx, draw_area.y1, mask, style->line.color, opa); in line_draw_skew() 581 line->sx = line->p1.x < line->p2.x ? 1 : -1; in line_init() [all …]
|
/AliOS-Things-master/components/py_engine/engine/lib/libm/ |
A D | fmodf.c | 14 uint32_t sx = ux.i & 0x80000000; in fmodf() local 67 uxi |= sx; in fmodf()
|
/AliOS-Things-master/components/py_engine/engine/lib/libm_dbl/ |
A D | fmod.c | 9 int sx = ux.i>>63; in fmod() local 65 uxi |= (uint64_t)sx << 63; in fmod()
|
/AliOS-Things-master/components/SDL2/src/render/software/ |
A D | SDL_rotate.c | 129 double x, y, cx, cy, sx, sy; in SDLgfx_rotozoomSurfaceSizeTrig() local 142 sx = *sangle * x; in SDLgfx_rotozoomSurfaceSizeTrig() 148 …SDL_ceil(MAX(MAX(MAX(SDL_fabs(sx + cy), SDL_fabs(sx - cy)), SDL_fabs(-sx + cy)), SDL_fabs(-sx - cy… in SDLgfx_rotozoomSurfaceSizeTrig()
|
/AliOS-Things-master/components/SDL2/src/image/ |
A D | nanosvg.h | 482 t[0] = sx; t[1] = 0.0f; in nsvg__xformSetScale() 918 float sx = sqrtf(t[0]*t[0] + t[2]*t[2]); in nsvg__getAverageScale() local 920 return (sx + sy) * 0.5f; in nsvg__getAverageScale() 2870 nsvg__xformSetScale(t, sx, sy); in nsvg__scaleGradient() 2916 sx = sy = nsvg__minf(sx, sy); in nsvg__scaleToViewbox() 2917 tx += nsvg__viewAlign(p->viewWidth*sx, p->image->width, p->alignX) / sx; in nsvg__scaleToViewbox() 2921 sx = sy = nsvg__maxf(sx, sy); in nsvg__scaleToViewbox() 2922 tx += nsvg__viewAlign(p->viewWidth*sx, p->image->width, p->alignX) / sx; in nsvg__scaleToViewbox() 2927 sx *= us; in nsvg__scaleToViewbox() 2929 avgs = (sx+sy) / 2.0f; in nsvg__scaleToViewbox() [all …]
|
/AliOS-Things-master/components/py_engine/engine/extmod/ |
A D | modframebuf.c | 467 mp_int_t sx; in framebuf_line() local 469 sx = 1; in framebuf_line() 472 sx = -1; in framebuf_line() 493 temp = sx; in framebuf_line() 494 sx = sy; in framebuf_line() 516 x1 += sx; in framebuf_line() 580 int sx, y, xend, yend, dx, dy; in framebuf_scroll() local 582 sx = 0; in framebuf_scroll() 586 sx = self->width - 1; in framebuf_scroll() 600 for (int x = sx; x != xend; x += dx) { in framebuf_scroll()
|
/AliOS-Things-master/components/SDL2/src/gfx/ |
A D | SDL_rotozoom.c | 288 …int x, y, sx, sy, ssx, ssy, *sax, *say, *csax, *csay, *salast, csx, csy, ex, ey, cx, cy, sstep, ss… in _zoomSurfaceRGBA() local 310 sx = (int) (65536.0 * (float) spixelw / (float) (dst->w - 1)); in _zoomSurfaceRGBA() 313 sx = (int) (65536.0 * (float) (src->w) / (float) (dst->w)); in _zoomSurfaceRGBA() 327 csx += sx; in _zoomSurfaceRGBA() 953 double x, y, cx, cy, sx, sy; in _rotozoomSurfaceSizeTrig() local 969 sx = *sanglezoom * x; in _rotozoomSurfaceSizeTrig() 975 ceil(MAX(MAX(MAX(fabs(sx + cy), fabs(sx - cy)), fabs(-sx + cy)), fabs(-sx - cy))), 1); in _rotozoomSurfaceSizeTrig()
|
A D | SDL_gfxPrimitives.c | 2353 int sx, sy; in lineColor() local 2390 sx = (dx >= 0) ? 1 : -1; in lineColor() 2422 dx = sx * dx + 1; in lineColor() 2427 pixx *= sx; in lineColor() 2509 if (d > 0 || (d == 0 && sx == 1)) { in lineColor() 2513 x += sx; in lineColor() 2522 x += sx; in lineColor()
|
A D | ltmain.sh | 2063 *.[fF][09]? | *.for | *.java | *.go | *.obj | *.sx | *.cu | *.cup)
|
/AliOS-Things-master/components/amp/engine/duktape_engine/addons/hardware/lcd/ |
A D | module_lcd.c | 199 int sx = duk_get_int(ctx, -6); in native_lcd_fill() local 205 lcd_draw_rect(sx, sy, ex, ey, color, is_fill); in native_lcd_fill()
|
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/tools/ |
A D | thumbnail.c | 484 uint32 sx = 0; in setupStepTables() local 489 uint32 sx0 = sx; in setupStepTables() 493 sx++; in setupStepTables() 496 fw = sx - sx0; /* width */ in setupStepTables()
|
/AliOS-Things-master/components/SDL2/src/video/wayland/ |
A D | SDL_waylandevents.c | 231 const int sx = wl_fixed_to_int(sx_w); in pointer_handle_motion() local 233 SDL_SendMouseMotion(window->sdlwindow, 0, 0, sx, sy); in pointer_handle_motion()
|
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/libtiff/ |
A D | tif_ojpeg.c | 823 uint8 sx,sy; in OJPEGDecodeRaw() local 848 for (sx=0; sx<sp->subsampling_hor; sx++) in OJPEGDecodeRaw()
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/examples/ |
A D | test_ref.ppm | 4 …sx�������~�������ˁ��}}�qq�~���������������������{�����������������������������������������������…
|
/AliOS-Things-master/hardware/chip/haas1000/drivers/ |
A D | Makefile | 814 LDS_SRC := $(firstword $(wildcard $(LDS_SRC_STEM).S $(LDS_SRC_STEM).sx) $(LDS_SRC_STEM).S)
|
/AliOS-Things-master/components/SDL2/src/image/external/jpeg-9b/ |
A D | testimg.ppm | 4 …\E}aL�eQj{O{{U�w\�l`�^_�R\�M[�O^�mu�xx΅~��������}��x��u��r��r��u��u��u��s{�sx�rq�lp�hi�adtW]gLVX@L… 5 …l�N*2%.4*470894<;7B=:HA;KD<NH<NH<OKBUTR_^ffewgg�fg�ba�[Y�QQ�NO�RS�[^�ei�lo�sx�x}��փ�؆�ن��Չ�ԇ�Ȇ�ȅ…
|
A D | ltmain.sh | 3379 *.[fF][09]? | *.for | *.java | *.go | *.obj | *.sx | *.cu | *.cup)
|
/AliOS-Things-master/hardware/chip/rtl872xd/bin/ |
A D | km0_image2_all.bin | 471 …6�CI�C@�aSUcxST�x1TT;1ST��K�p�F�Sp���M����"(��G3x��Գ�@�TS��x۲kt[+t�K��x��Ԋ�sx@�b��T 472 …C+u@�b !�\�C�T@�c�"�T;�\+(�@���h �G@��b!�\�C�T@�c�\��@�l@"dDcx�Ccpp�sx)+f�+�ق�"@�c�T13
|
/AliOS-Things-master/hardware/chip/rtl872xd/ |
A D | ate.bin | 960 �/p��!�d���!��5�H�����0�����0�� ���sx�x ����������x������� ��3!��� F�� F�I�(��!�… 1015 ��/sx���{����'�+r�����(����)Їxx����xp�{(�(|�p�/\�(|(�(�V�xx@���xx@��xpM��(KѨ{�(… 1703 (�ѕ�4�(� F���A����������Q�1��!������FF3xO�B@�a��]�0xA��A@�lo��@�*F9F����sx�"9F���…
|
/AliOS-Things-master/components/SDL2/ |
A D | libtool | 2502 *.[fF][09]? | *.for | *.java | *.go | *.obj | *.sx | *.cu | *.cup)
|
/AliOS-Things-master/components/SDL2/build-scripts/ |
A D | ltmain.sh | 2063 *.[fF][09]? | *.for | *.java | *.go | *.obj | *.sx | *.cu | *.cup)
|
/AliOS-Things-master/components/SDL2/src/gfx/Test/ |
A D | ltmain.sh | 2063 *.[fF][09]? | *.for | *.java | *.go | *.obj | *.sx | *.cu | *.cup)
|
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/ |
A D | ltmain.sh | 3379 *.[fF][09]? | *.for | *.java | *.go | *.obj | *.sx | *.cu | *.cup)
|