Home
last modified time | relevance | path

Searched refs:I (Results 1 – 25 of 303) sorted by relevance

12345678910>>...13

/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/os400/
A Dzlib.inc114 D compress PR 10I 0 extproc('compress')
170 D level 10I 0 value
171 D strategy 10I 0 value
173 D gzread PR 10I 0 extproc('gzread')
178 D gzfread PR 20I 0 extproc('gzfread')
195 D gzputs PR 10I 0 extproc('gzputs')
360 D good 10I 0 value
361 D lazy 10I 0 value
362 D nice 10I 0 value
363 D chain 10I 0 value
[all …]
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/contrib/pds/
A DREADME11 You probably don't remember me, but I sent in a couple of bug fixes
14 I just wanted to send you two other additions that I have made to our
22 TIFF library, I'd be happy to clean them up more, document them more,
24 figured I'd see if you were interested in using them before I went to
43 with 32- and 64-bit floating point data. I believe nearly all of our
45 some tiled images that I could test it with.
48 ReadRGBA() in terms of the image iterator, but I haven't done that.
60 sub-directory of tags-value pairs. So I wrote two routines:
67 huge because I had to basically copy all of the tif_dirread.c and
73 I'm including the four source files (tif_imgiter.h, tif_imgiter.c,
[all …]
/AliOS-Things-master/components/SDL2/src/gfx/Docs/html/
A Djquery.js12I=document.getElementById(G[3]);if(I&&I.id!=G[3]){return o().find(E)}var F=o(I||[]);F.context=docu… function
13 var I=(K>0?this.clone(true):this).get();o.fn[F].apply(o(L[K]),I);J=J.concat(I)}return this.pushStac…
20I.relative[Z[0]]){af=J(Z[0]+Z[1],U)}else{af=I.relative[Z[0]]?[U]:F(Z.shift(),U);while(Z.length){Y=… argument
21I.type=G=G.slice(0,-1);I.exclusive=true}if(!H){I.stopPropagation();if(this.global[G]){o.each(o.cac… argument
22I=o("<"+G+" />").appendTo("body");K=I.css("display");if(K==="none"){K="block"}I.remove();m[G]=K}o.… argument
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/contrib/mfs/
A DREADME12 I noticed in the README from libtiff that you would like to know about
13 what people have done with libtiff, so I thought I would drop you a
20 I would like to express my deep gratitude to yourself and Sillicon
26 files. In my applications I had already read a TIFF or other format
27 file in to memory and did not want to waste I/O writing it out again
28 for libtiff's benefit. I therefore constructed a set of functions to
29 pass up to TIFFClientOpen to simulate a file in memory. I have attached
/AliOS-Things-master/components/py_engine/tests/basics/
A Dbuiltin_property_inherit.py44 class I(H): class
49 print(I().val)
52 I.baz = property(lambda self: print('baz get'))
53 I().baz
/AliOS-Things-master/components/freetype/src/base/
A Dmd5.c55 #define I(x, y, z) ((y) ^ ((x) | ~(z))) macro
167 STEP(I, a, b, c, d, GET(0), 0xf4292244, 6) in body()
168 STEP(I, d, a, b, c, GET(7), 0x432aff97, 10) in body()
170 STEP(I, b, c, d, a, GET(5), 0xfc93a039, 21) in body()
171 STEP(I, a, b, c, d, GET(12), 0x655b59c3, 6) in body()
172 STEP(I, d, a, b, c, GET(3), 0x8f0ccc92, 10) in body()
174 STEP(I, b, c, d, a, GET(1), 0x85845dd1, 21) in body()
175 STEP(I, a, b, c, d, GET(8), 0x6fa87e4f, 6) in body()
177 STEP(I, c, d, a, b, GET(6), 0xa3014314, 15) in body()
179 STEP(I, a, b, c, d, GET(4), 0xf7537e82, 6) in body()
[all …]
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/contrib/win_dib/
A DREADME.tiff2dib15 I build the library under Windows 95 as a 32-bit library.
21 Here is the makefile I used : makefile.w95
23 Also, I had to disable fax3 support because I wasn't able
29 I had to :
38 I also join the source file "tif2dib.c" that I created,
A DREADME.Tiffile3 I attached a file that uses RGBA interface (tif_getimage.c) to read a tiff
8 pixel, rather than 1 bit). I read tiff files, but don't need to
10 inconsequential. But for bilevel images, I overrode the get() and put()
/AliOS-Things-master/components/py_engine/engine/py/
A Dmodsys.c59 #define I(n) MP_OBJ_NEW_SMALL_INT(n) macro
61 STATIC const mp_obj_tuple_t mp_sys_version_info_obj = {{&mp_type_tuple}, 3, {I(3), I(4), I(0)}};
68 { I(MICROPY_VERSION_MAJOR), I(MICROPY_VERSION_MINOR), I(MICROPY_VERSION_MICRO) }
104 #undef I
A Dbc.h135 #define MP_BC_PRELUDE_SIZE_ENCODE(I, C, out_byte, out_env) \ argument
140 z = (I & 0x3f) << 1 | (C & 1); \
142 I >>= 6; \
143 if (C | I) { \
147 } while (C | I); \
150 #define MP_BC_PRELUDE_SIZE_DECODE_INTO(ip, I, C) \ argument
154 I = 0; \
159 I |= ((z & 0x7e) >> 1) << (6 * n); \
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/tests/
A Dtest_qjscalc.js239 assert_eq(sin(2+3*I), 9.154499146911428-4.168906959966565*I);
240 assert_eq(cos(2+3*I), -4.189625690968807-9.109227893755337*I);
241 assert_eq((2+0.5*I)^(1.1-0.5*I), 2.494363021357619-0.23076804554558092*I);
242 assert_eq(sqrt(2*I), 1 + I);
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/test/images/
A Drgb-3c-8b.ppm9 …Iy�Q�V��^~�V��Q��V��U��V��Y{|,r�?{�A��G��B��F��I��I��M��O��G}Q"~p,r�Cm�>x�D��I{�Jt�Iv�T��n��cw�Aj…
242 …U�A��K��^\` =��SE��H��F��C��C��I��P��O��M��O��N��I��K��N��Q��R��S��W��S��R��S��Y��Y��S��O��…
246 …3�?��O�PL�I��F��Ulqz i�ua!��J��H��@��C��K��J��I��L��Q��N��H��K��O��V��V��X��X��P��V��…
286 …?��5��;��F��B��B��C��B��M��J��K��L��O��P��S��S��P��R��O��U��T��R��X��`|f28��INT�W�TZ Z V…
308 Q IU
313 IHX
314 ]g"w4"�N-�^4�X4�9$p/!m3!q;%o5!t<'v<)s>*|C+|A(~B+J-�I-y6&s4 \:,�2��=�GI
320 ?�6��/��0��7��;�?C�F��H��M�QNI�RV S
326 I
327 …\��c��f��h��]��W��X��Z��X��[��\��^��[��Y��X��U��K�t9xP(Z+E 5��,��-��8��;�BIFH�LJJM
[all …]
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/third_party/ruy/ruy/
A Dpack_arm.cc346 #define RUY_LOAD_ONE_ROW1(I, R) \ in Pack8bitColMajorForNeon4Cols() argument
347 "cmp r2, #" #I "\n" \ in Pack8bitColMajorForNeon4Cols()
362 #define RUY_LOAD_ONE_ROW2(I, R) \ in Pack8bitColMajorForNeon4Cols() argument
363 "cmp r2, #" #I "\n" \ in Pack8bitColMajorForNeon4Cols()
398 #define RUY_LOAD_ONE_ROW1(I, R) \ in Pack8bitColMajorForNeon4Cols() argument
399 "cmp r2, #" #I "\n" \ in Pack8bitColMajorForNeon4Cols()
414 #define RUY_LOAD_ONE_ROW2(I, R) \ in Pack8bitColMajorForNeon4Cols() argument
415 "cmp r2, #" #I "\n" \ in Pack8bitColMajorForNeon4Cols()
541 #define RUY_LOAD_ONE_ROW1(I, R) \ in Pack8bitColMajorForNeon2Cols() argument
542 "cmp r2, #" #I "\n" \ in Pack8bitColMajorForNeon2Cols()
[all …]
/AliOS-Things-master/hardware/chip/rtl872xd/
A Date.bin2 ����������������������JIH���� ����hF ���F����� 1
15 … MIHf��������� ��g����UI� `��N��"�#FRH�� ���@�!F���8��!MH�X�% F��I��N���!IJ���M� �C…
241 … F��0�� �O��0���p� FF�&�0]����v�B��(Fp�Jh �I`h@`FpG H I` IA` I�` I�` Ia IAa I�a
301 �6����"�#�a�/�!��t�����������F ���F F���0����!� ���-O�)���I��I\�…
448 �yx8x���� xU� !�E�  x� �� ���Ax�x���� xU� II�E� �|� FF���)x�"�!F���������,��������…
740 …W0�O�q`��c��Q���$�O�q`H`(F���-H-Ih`(A`,I�`,Ia,IAa,I�a,I�a�!d+IAd+I�d+I�d+Ie+IAe+I�e+I�e+IAg…
1137 F"�!����<���-�"�I"�I�����! F��+���!�� ��0�"�I����
1143 …�A�-1A��S ]@ht�� H��!Y F�Gh|�L�! ! F�� �������b��p��AQ|���p�G�"I"I�����l#|��|#�\…
1728 �+� I�+�I�+�I
1952 ��t �C�W䐠I��P �n��I���䐠I��P��D�$����I�$A���4���{z�y;���z�yA�_� �0�D!T��J��"��I���"����I
/AliOS-Things-master/components/SDL2/src/image/external/jpeg-9b/
A Dtestimg.ppm4I;�G:kA3S9*D4$<66;55:4493382271161.61.72/72/72/61-61-50,50,50,.0-.0-.0-//-//-0/-2.-2.-3--5,-4*+4(*…
5I]�<\�9\�=Y�dh��y��su�`t�\w�]�c��k��p��p��mp�_l�_f�\g�^j�_q�ey�i}�l��r��t��z��}�����������������…
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/dsp/
A Denc.c366 const int I = top[-2]; in HE4() local
385 const int I = top[-2]; in RD4() local
422 const int I = top[-2]; in VR4() local
434 DST(0, 3) = AVG3(K, J, I); in VR4()
435 DST(0, 2) = AVG3(J, I, X); in VR4()
436 DST(0, 1) = DST(1, 3) = AVG3(I, X, A); in VR4()
465 const int I = top[-2]; in HU4() local
469 DST(0, 0) = AVG2(I, J); in HU4()
481 const int I = top[-2]; in HD4() local
489 DST(0, 0) = DST(2, 1) = AVG2(I, X); in HD4()
[all …]
A Ddec.c293 const int I = dst[-1 + 0 * BPS]; in RD4_C() local
331 const int I = dst[-1 + 0 * BPS]; in VR4_C() local
344 DST(0, 3) = AVG3(K, J, I); in VR4_C()
345 DST(0, 2) = AVG3(J, I, X); in VR4_C()
346 DST(0, 1) = DST(1, 3) = AVG3(I, X, A); in VR4_C()
375 const int I = dst[-1 + 0 * BPS]; in HU4_C() local
379 DST(0, 0) = AVG2(I, J); in HU4_C()
382 DST(1, 0) = AVG3(I, J, K); in HU4_C()
390 const int I = dst[-1 + 0 * BPS]; in HD4_C() local
399 DST(0, 0) = DST(2, 1) = AVG2(I, X); in HD4_C()
[all …]
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/contrib/visupng/
A DVisualPng.dsp46 # ADD BASE CPP /nologo /W3 /O2 /I "..\.." /I "..\..\..\zlib" /D "WIN32" /D "NDEBUG" /D "PNG_NO_STDI…
48 # ADD CPP /nologo /MD /W3 /O2 /I "..\.." /I "..\..\..\zlib" /D "WIN32" /D "NDEBUG" /D "PNG_NO_STDIO…
80 # ADD BASE CPP /nologo /W3 /Gm /ZI /Od /I "..\.." /I "..\..\..\zlib" /D "WIN32" /D "_DEBUG" /D "PNG…
82 # ADD CPP /nologo /MDd /W3 /Gm /ZI /Od /I "..\.." /I "..\..\..\zlib" /D "WIN32" /D "_DEBUG" /D "PNG…
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/contrib/asm686/
A DREADME.68639 I've been ignoring these assembly routines for years, believing that
41 and the major rearchitecting of the Pentium 4. However, I recently
42 learned that, despite what I believed, this code still has some life
46 In acknowledgement of its continuing usefulness, I've altered the
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/scripts/
A Dgenout.cmake.in50 set(INCLUDES "-I${INCDIR}")
53 list(APPEND INCLUDES "-I${dir}")
64 "-I${SRCDIR}"
65 "-I${BINDIR}"
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/contrib/ras/
A DREADME4 I've tried to update them to reflect changes to the library, but
5 I am unable to verify that they operate properly, because they
/AliOS-Things-master/components/py_engine/tests/perf_bench/
A Dbm_chaos.py89 I = self.GetIndex(u)
90 d = [self.points[I - self.degree + 1 + ii] for ii in range(self.degree + 1)]
93 for ii in range(I - self.degree + ik + 1, I + 2):
98 index = ii - I + self.degree - ik - 1
106 I = ii
109 I = dom[1] - 1
110 return I
/AliOS-Things-master/hardware/arch/armv7m/armcc/m3/
A Dport_s.S50 CPSID I
99 CPSIE I
107 CPSID I
146 CPSIE I
/AliOS-Things-master/hardware/arch/armv7m/iccarm/m3/
A Dport_s.S50 CPSID I
99 CPSIE I
107 CPSID I
146 CPSIE I
/AliOS-Things-master/hardware/arch/armv7m/gcc/m3/
A Dport_s.sx51 CPSID I
104 CPSIE I
113 CPSID I
153 CPSIE I

Completed in 53 milliseconds

12345678910>>...13