Home
last modified time | relevance | path

Searched refs:ex (Results 1 – 25 of 42) sorted by relevance

12

/AliOS-Things-master/components/py_engine/engine/lib/libm/
A Dfmodf.c12 int ex = ux.i>>23 & 0xff; in fmodf() local
18 if (uy.i<<1 == 0 || isnan(y) || ex == 0xff) in fmodf()
27 if (!ex) { in fmodf()
28 for (i = uxi<<9; i>>31 == 0; ex--, i <<= 1); in fmodf()
29 uxi <<= -ex + 1; in fmodf()
43 for (; ex > ey; ex--) { in fmodf()
58 for (; uxi>>23 == 0; uxi <<= 1, ex--); in fmodf()
61 if (ex > 0) { in fmodf()
63 uxi |= (uint32_t)ex << 23; in fmodf()
65 uxi >>= -ex + 1; in fmodf()
/AliOS-Things-master/components/py_engine/engine/lib/libm_dbl/
A Dfmod.c7 int ex = ux.i>>52 & 0x7ff; in fmod() local
16 if (uy.i<<1 == 0 || isnan(y) || ex == 0x7ff) in fmod()
25 if (!ex) { in fmod()
26 for (i = uxi<<12; i>>63 == 0; ex--, i <<= 1); in fmod()
27 uxi <<= -ex + 1; in fmod()
41 for (; ex > ey; ex--) { in fmod()
56 for (; uxi>>52 == 0; uxi <<= 1, ex--); in fmod()
59 if (ex > 0) { in fmod()
61 uxi |= (uint64_t)ex << 52; in fmod()
63 uxi >>= -ex + 1; in fmod()
A D__rem_pio2.c54 int sign, n, ex, ey, i; in __rem_pio2() local
128 ex = ix>>20; in __rem_pio2()
129 if (ex - ey > 16) { /* 2nd round, good to 118 bits */ in __rem_pio2()
137 if (ex - ey > 49) { /* 3rd round, good to 151 bits, covers all cases */ in __rem_pio2()
/AliOS-Things-master/components/SDL2/src/thread/stdcpp/
A DSDL_sysmutex.cpp43 } catch (std::system_error & ex) { in SDL_CreateMutex() local
44 SDL_SetError("unable to create a C++ mutex: code=%d; %s", ex.code(), ex.what()); in SDL_CreateMutex()
75 } catch (std::system_error & ex) { in SDL_mutexP() local
76 SDL_SetError("unable to lock a C++ mutex: code=%d; %s", ex.code(), ex.what()); in SDL_mutexP()
A DSDL_syscond.cpp48 } catch (std::system_error & ex) { in SDL_CreateCond() local
49 … SDL_SetError("unable to create a C++ condition variable: code=%d; %s", ex.code(), ex.what()); in SDL_CreateCond()
150 } catch (std::system_error & ex) { in SDL_CondWaitTimeout() local
151 … SDL_SetError("unable to wait on a C++ condition variable: code=%d; %s", ex.code(), ex.what()); in SDL_CondWaitTimeout()
A DSDL_systhread.cpp54 } catch (std::system_error & ex) { in SDL_SYS_CreateThread() local
55 SDL_SetError("unable to start a C++ thread: code=%d; %s", ex.code(), ex.what()); in SDL_SYS_CreateThread()
/AliOS-Things-master/components/SDL2/src/render/software/
A DSDL_rotate.c234 int x, y, t1, t2, dx, dy, xd, yd, sdx, sdy, ax, ay, ex, ey, sw, sh; in _transformSurfaceRGBA() local
284 ex = (sdx & 0xffff); in _transformSurfaceRGBA()
286 t1 = ((((c01.r - c00.r) * ex) >> 16) + c00.r) & 0xff; in _transformSurfaceRGBA()
287 t2 = ((((c11.r - c10.r) * ex) >> 16) + c10.r) & 0xff; in _transformSurfaceRGBA()
289 t1 = ((((c01.g - c00.g) * ex) >> 16) + c00.g) & 0xff; in _transformSurfaceRGBA()
290 t2 = ((((c11.g - c10.g) * ex) >> 16) + c10.g) & 0xff; in _transformSurfaceRGBA()
292 t1 = ((((c01.b - c00.b) * ex) >> 16) + c00.b) & 0xff; in _transformSurfaceRGBA()
293 t2 = ((((c11.b - c10.b) * ex) >> 16) + c10.b) & 0xff; in _transformSurfaceRGBA()
295 t1 = ((((c01.a - c00.a) * ex) >> 16) + c00.a) & 0xff; in _transformSurfaceRGBA()
296 t2 = ((((c11.a - c10.a) * ex) >> 16) + c10.a) & 0xff; in _transformSurfaceRGBA()
/AliOS-Things-master/components/freetype/src/smooth/
A Dftgrays.c405 TCoord ex, ey; member
547 TPos x = ras.ex; in gray_find_cell()
618 if ( ex > ras.max_ex ) in gray_set_cell()
619 ex = ras.max_ex; in gray_set_cell()
621 ex -= ras.min_ex; in gray_set_cell()
622 if ( ex < 0 ) in gray_set_cell()
623 ex = -1; in gray_set_cell()
626 if ( ex != ras.ex || ey != ras.ey ) in gray_set_cell()
634 ras.ex = ex; in gray_set_cell()
651 if ( ex > ras.max_ex ) in gray_start_cell()
[all …]
/AliOS-Things-master/components/SDL2/src/gfx/
A DSDL_rotozoom.c373 ex = (*csax & 0xffff); in _zoomSurfaceRGBA()
403 t1 = ((((c01->r - c00->r) * ex) >> 16) + c00->r) & 0xff; in _zoomSurfaceRGBA()
692 ex = (sdx & 0xffff); in _transformSurfaceRGBA()
694 t1 = ((((c01.r - c00.r) * ex) >> 16) + c00.r) & 0xff; in _transformSurfaceRGBA()
695 t2 = ((((c11.r - c10.r) * ex) >> 16) + c10.r) & 0xff; in _transformSurfaceRGBA()
697 t1 = ((((c01.g - c00.g) * ex) >> 16) + c00.g) & 0xff; in _transformSurfaceRGBA()
698 t2 = ((((c11.g - c10.g) * ex) >> 16) + c10.g) & 0xff; in _transformSurfaceRGBA()
700 t1 = ((((c01.b - c00.b) * ex) >> 16) + c00.b) & 0xff; in _transformSurfaceRGBA()
701 t2 = ((((c11.b - c10.b) * ex) >> 16) + c10.b) & 0xff; in _transformSurfaceRGBA()
703 t1 = ((((c01.a - c00.a) * ex) >> 16) + c00.a) & 0xff; in _transformSurfaceRGBA()
[all …]
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/tests/
A Dtest_qjscalc.js23 var ex;
24 ex = false;
28 ex = true;
31 assert(ex, true, "exception expected");
A Dtest_bignum.js22 var ex;
23 ex = false;
27 ex = true;
30 assert(ex, true, "exception expected");
/AliOS-Things-master/components/amp/engine/duktape_engine/addons/hardware/lcd/
A Dmodule_lcd.c201 int ex = duk_get_int(ctx, -4); 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/libpng-1.6.37/
A DMakefile.am326 @set -ex; cd '$(DESTDIR)$(includedir)'; for f in $(HEADERS); do \
333 @set -ex; cd '$(DESTDIR)$(pkgconfigdir)'; rm -f libpng.pc; \
360 @set -ex; cd '$(DESTDIR)$(bindir)'; rm -f libpng-config; \
A DMakefile.in2370 @set -ex; cd '$(DESTDIR)$(includedir)'; for f in $(HEADERS); do \
2377 @set -ex; cd '$(DESTDIR)$(pkgconfigdir)'; rm -f libpng.pc; \
2397 @set -ex; cd '$(DESTDIR)$(bindir)'; rm -f libpng-config; \
A Dconfigure984 | --exec | --exe | --ex)
988 | --exec=* | --exe=* | --ex=*)
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/
A DMakefile.vc344 ex: $(OUT_LIBS)
345 all: ex
353 ex: $(OUT_LIBS) $(OUT_EXAMPLES)
354 all: ex $(EXTRA_EXAMPLES)
A Dmakefile.unix353 ex: $(OUT_EXAMPLES)
354 all: ex $(EXTRA_EXAMPLES) $(OTHER_EXAMPLES)
495 .PHONY: all clean dist ex
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/contrib/gregbook/
A Drpng2-x.c746 XExposeEvent *ex = (XExposeEvent *)&e; in main() local
747 rpng2_x_redisplay_image (ex->x, ex->y, ex->width, ex->height); in main()
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/test/images/
A Dminisblack-1c-8b.pgm24 …�������������TX[]_bei���Ϯpc``RYYX[]^b^]a_aiw�����ywxsrrnh}e]]fp�w^auzP4L\ex������������ѿ�����dUX…
A Drgb-3c-8b.ppm13 …ju7zO$v}/u�:n�Ds�Jp�Lo�Nv�]{�^��i��z�ˣ��ö�͸�͵�ΘϨ��x��r��n��p�`�nj�̧p�rn�ex�f��k��bf�HMT-Pn7]�Ej…
20 …�]x�cy�n�ƒ�а�����������ܵ�єͦ}�y�r��yz�pl�[N�>C^,KR'bs=��g�՜��Ȉ�s^�Em�Xo�_x�ex�l��H��c��V��W��X��X�…
153 …T��r��s��at�Tn�Oo�Yn�St�Xy�[y�Vv�Xw�Xs�Xq�Wr�Xo�Xm�Vr�\l�Yj�Ys�`o�^p�as�aw�ex�dt�du�dt�^{�e��o��n�…
/AliOS-Things-master/documentation/doxygen/style/
A Ddoxygen-custom.css1553 padding: 1ex 1em 1em;
/AliOS-Things-master/components/SDL2/src/image/external/jpeg-9b/
A Dtestimg.ppm4 …'6&'2&&0(&-)(++)).*'+*&,*&,*'+*'+,)*,**,**,-#$2*(50,85,BC5UZFfpWn}^t�cq�bt�ex�iw�ks�hs�iw�mz�mx�lw…
5ex�bu�`u�`u�_v�_w�_z�`{�a|�by�d{�f|�dz�`y�^y�Z{�Z}�\��_��g��m��p��s��t{�nr�ffvi[k^RbU_N<_N<_N<_N<_…
A Dconfigure936 | --exec | --exe | --ex)
940 | --exec=* | --exe=* | --ex=*)
/AliOS-Things-master/components/SDL2/
A Dlibtool1461 execute|execut|execu|exec|exe|ex|e)
/AliOS-Things-master/components/SDL2/src/image/
A Dlibtool1200 execute|execut|execu|exec|exe|ex|e)

Completed in 79 milliseconds

12