/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/ |
A D | list.h | 36 #define LIST_HEAD_INIT(el) { &(el), &(el) } argument 52 prev->next = el; in __list_add() 53 el->prev = prev; in __list_add() 54 el->next = next; in __list_add() 90 return el->next == el; in list_empty() 94 for(el = (head)->next; el != (head); el = el->next) 97 for(el = (head)->next, el1 = el->next; el != (head); \ 98 el = el1, el1 = el->next) 101 for(el = (head)->prev; el != (head); el = el->prev) 104 for(el = (head)->prev, el1 = el->prev; el != (head); \ [all …]
|
A D | quickjs-libc.c | 1742 struct list_head *el; in find_rh() local 1807 struct list_head *el; in find_sh() local 2009 struct list_head *el; in js_os_poll() local 2020 list_for_each(el, &ts->os_timers) { in js_os_poll() 2087 struct list_head *el; in handle_posted_message() local 2093 el = ps->msg_queue.next; in handle_posted_message() 2162 struct list_head *el; in js_os_poll() local 2189 list_for_each(el, &ts->os_timers) { in js_os_poll() 2226 list_for_each(el, &ts->port_list) { in js_os_poll() 3121 struct list_head *el, *el1; in js_free_message_pipe() local [all …]
|
A D | run-test262.c | 553 struct list_head *el, *el1; in js_agent_free() local 556 list_for_each_safe(el, el1, &agent_list) { in js_agent_free() 557 agent = list_entry(el, Test262Agent, link); in js_agent_free() 577 struct list_head *el; in is_broadcast_pending() local 579 list_for_each(el, &agent_list) { in is_broadcast_pending() 580 agent = list_entry(el, Test262Agent, link); in is_broadcast_pending() 591 struct list_head *el; in js_agent_broadcast() local 609 list_for_each(el, &agent_list) { in js_agent_broadcast() 610 agent = list_entry(el, Test262Agent, link); in js_agent_broadcast()
|
A D | qjscalc.js | 1010 var p1, p2, i, z0, z1, z2, d, t0, t1, d1, d2, e, el, zl; 1023 el = 0.0; 1033 if (i >= 2 && e >= el) { 1042 el = e; 2360 var r, i, n, el, a = this; 2364 el = a[i]; 2365 if (Array.isArray(el)) 2366 el = el.dup(); 2367 r[i] = el;
|
A D | quickjs.c | 2263 struct list_head* el; in JS_MarkContext() local 3407 struct list_head* el; in JS_NewClass1() local 4699 struct list_head* el; in JS_DumpShapes() local 5452 struct list_head* el; in free_zero_refcount() local 5704 struct list_head* el; in gc_scan() local 38176 if (!JS_IsNull(el) && !JS_IsUndefined(el)) { in js_array_join() 38178 el = JS_ToLocaleStringFree(ctx, el); in js_array_join() 42914 JSValue el; in json_parse_value() local 45262 el = el->next; in js_map_forEach() 45268 el = el->next; in js_map_forEach() [all …]
|
/AliOS-Things-master/components/py_engine/engine/py/ |
A D | objmodule.c | 113 …mp_map_elem_t *el = mp_map_lookup(mp_loaded_modules_map, MP_OBJ_NEW_QSTR(module_name), MP_MAP_LOOK… in mp_obj_new_module() local 116 if (el->value != MP_OBJ_NULL) { in mp_obj_new_module() 117 return el->value; in mp_obj_new_module() 129 el->value = MP_OBJ_FROM_PTR(o); in mp_obj_new_module() 249 …mp_map_elem_t *el = mp_map_lookup(mp_loaded_modules_map, MP_OBJ_NEW_QSTR(module_name), MP_MAP_LOOK… in mp_module_get() local 251 if (el == NULL) { in mp_module_get() 253 …el = mp_map_lookup((mp_map_t *)&mp_builtin_module_map, MP_OBJ_NEW_QSTR(module_name), MP_MAP_LOOKUP… in mp_module_get() 254 if (el == NULL) { in mp_module_get() 257 mp_module_call_init(module_name, el->value); in mp_module_get() 261 return el->value; in mp_module_get()
|
A D | runtime.c | 874 mp_obj_t el = mp_iternext(iterable); in mp_unpack_sequence() local 875 if (el == MP_OBJ_STOP_ITERATION) { in mp_unpack_sequence() 878 items[num - 1 - seq_len] = el; in mp_unpack_sequence()
|
/AliOS-Things-master/components/SDL2/test/ |
A D | Makefile.os2 | 62 wlink SYS os2v2 libpath $(LIBPATH) lib {$(LIBS)} op q op el file {$<} name $@ 70 wlink SYS os2v2 libpath $(LIBPATH) lib {$(LIBS)} op q op el file {$<} name $@ 74 wlink SYS os2v2 libpath $(LIBPATH) lib {$(LIBS)} op q op el file {$<} name $@ 78 wlink SYS os2v2 libpath $(LIBPATH) lib {$(LIBS)} op q op el file {$<} name $@ 82 wlink SYS os2v2 libpath $(LIBPATH) lib {$(LIBS) $(LIBS_TTF)} op q op el file {$<} name $@
|
A D | testplatform.c | 351 unsigned int *el = (unsigned int *)&t->expected_result; in Test64Bit() local 357 … t->operation, al[1], al[0], bl[1], bl[0], t->arg, rl[1], rl[0], el[1], el[0]); in Test64Bit()
|
/AliOS-Things-master/components/amp/engine/quickjs_engine/addons/libc/ |
A D | quickjs_libc.c | 1945 struct list_head *el; in find_rh() local 2014 struct list_head *el; in find_sh() local 2229 struct list_head *el; in js_os_poll() local 2241 list_for_each(el, &ts->os_timers) { in js_os_poll() 2311 struct list_head *el; in handle_posted_message() local 2317 el = ps->msg_queue.next; in handle_posted_message() 2389 struct list_head *el; in js_os_poll() local 2417 list_for_each(el, &ts->os_timers) { in js_os_poll() 2458 list_for_each(el, &ts->port_list) { in js_os_poll() 3450 struct list_head *el, *el1; in js_free_message_pipe() local [all …]
|
/AliOS-Things-master/components/SDL2/src/image/ |
A D | nanosvg.h | 2690 } else if (strcmp(el, "stop") == 0) { in nsvg__startElement() 2696 if (strcmp(el, "g") == 0) { in nsvg__startElement() 2699 } else if (strcmp(el, "path") == 0) { in nsvg__startElement() 2705 } else if (strcmp(el, "rect") == 0) { in nsvg__startElement() 2717 } else if (strcmp(el, "line") == 0) { in nsvg__startElement() 2733 } else if (strcmp(el, "stop") == 0) { in nsvg__startElement() 2735 } else if (strcmp(el, "defs") == 0) { in nsvg__startElement() 2737 } else if (strcmp(el, "svg") == 0) { in nsvg__startElement() 2748 if (strcmp(el, "g") == 0) { in nsvg__endElement() 2750 } else if (strcmp(el, "path") == 0) { in nsvg__endElement() [all …]
|
A D | config.guess | 980 CPU=${UNAME_MACHINE}el
|
/AliOS-Things-master/components/SDL2/src/gfx/Docs/html/ |
A D | doxygen.css | 118 a.el { 135 dl.el {
|
A D | jquery.js | 53 …vertToRelativePosition&&c.browser.opera){d._revertToRelativePosition=false;el.css({position:"relat…
|
/AliOS-Things-master/documentation/doxygen/style/ |
A D | doxygen-custom.css | 216 a.el { 233 dl.el {
|
/AliOS-Things-master/components/SDL2/src/gfx/ |
A D | config.guess | 943 CPU=${UNAME_MACHINE}el
|
/AliOS-Things-master/components/SDL2/src/gfx/Test/ |
A D | config.guess | 943 CPU=${UNAME_MACHINE}el
|
/AliOS-Things-master/components/SDL2/src/image/external/jpeg-9b/ |
A D | config.guess | 961 CPU=${UNAME_MACHINE}el
|
A D | testimg.ppm | 4 …JC�PK�RO�ML�KM�KP�X`�[h�aq�au�Wo�Og�Mg�Pk�Ju�Oy�Sw�Rq�Sm�[p�cu�ix�gu�ao�bm�el�gl�jj�jh�c_�dVeH:_T…
|
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/ |
A D | config.guess | 980 CPU=${UNAME_MACHINE}el
|
/AliOS-Things-master/components/SDL2/build-scripts/ |
A D | config.guess | 995 CPU=${UNAME_MACHINE}el
|
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/contrib/libtests/ |
A D | pngvalid.c | 7804 const char *el; in image_transform_png_set_rgb_to_gray_set() local 7839 el = "-"; /* Set to element name with error */ in image_transform_png_set_rgb_to_gray_set() 7847 el = #col "(" #x ")";\ in image_transform_png_set_rgb_to_gray_set() 7872 pos = safecat(buffer, sizeof buffer, pos, el); in image_transform_png_set_rgb_to_gray_set()
|
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/test/images/ |
A D | rgb-3c-8b.ppm | 24 LRPP%IC.R7��J��i��f�z9qJ*��F��i�؋��]�ԇ�ެ���ݲ�ܦ�ۧ�Ѓ��r�ݯ��Т¢_�Rb�Pf�Us�el�sYJ$K*… 94 …dwe4hK&rz3t�>v�@q�Ex�Q}�a��k��~�˃����s��i��a��Y��]��[��S��R��s�خ��Ⱥ�̷�̣е��el�JTR-.Z�W1�d2�|:�…
|
/AliOS-Things-master/hardware/chip/rtl872xd/ |
A D | ate.bin | 879 F���)F F���(�1F F��� p�!�g���i���Fa0Fp����pG8�F��el"! F�����!�"!��9#�9�p�Y…
|