Home
last modified time | relevance | path

Searched refs:skip (Results 1 – 25 of 95) sorted by relevance

1234

/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/
A Dtest262.conf61 Atomics.waitAsync=skip
90 FinalizationGroup=skip
91 FinalizationRegistry=skip
99 host-gc-required=skip
103 IsHTMLDDA=skip
106 logical-assignment-operators=skip
127 regexp-match-indices=skip
157 tail-call-optimization=skip
159 top-level-await=skip
166 WeakRef=skip
A Drun-test262.c1591 skip |= 1; in run_test()
1604 skip |= (test_mode == TEST_STRICT); in run_test()
1612 skip |= skip_async; in run_test()
1616 skip |= skip_module; in run_test()
1642 skip |= 1; in run_test()
1646 skip |= 1; in run_test()
1675 skip |= 1; in run_test()
1687 skip |= (test_mode == TEST_STRICT); in run_test()
1691 skip |= (test_mode == TEST_NOSTRICT); in run_test()
1708 skip ? " SKIPPED" : ""); in run_test()
[all …]
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/contrib/puff/
A Dpufftest.c91 unsigned skip = 0; in main() local
105 skip = (unsigned)atoi(arg + 1); in main()
128 if (skip >= len) { in main()
129 fprintf(stderr, "skip request of %d leaves no input\n", skip); in main()
135 len -= skip; in main()
137 ret = puff(NIL, &destlen, source + skip, &sourcelen); in main()
156 puff(dest, &destlen, source + skip, &sourcelen); in main()
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/examples/
A Dgzjoin.c157 local void bskip(bin *in, unsigned skip) in bskip() argument
164 if (skip <= in->left) { in bskip()
165 in->left -= skip; in bskip()
166 in->next += skip; in bskip()
171 skip -= in->left; in bskip()
175 if (skip > CHUNK) { in bskip()
178 left = skip & (CHUNK - 1); in bskip()
190 skip = left; in bskip()
195 if (skip > in->left) in bskip()
197 in->left -= skip; in bskip()
[all …]
A Dzran.c252 int ret, skip; in extract() local
293 skip = 1; /* while skipping to offset */ in extract()
296 if (offset == 0 && skip) { /* at offset now */ in extract()
299 skip = 0; /* only do this once */ in extract()
340 } while (skip); in extract()
343 ret = skip ? 0 : len - strm.avail_out; in extract()
A Dgzappend.c202 local void skip(file *in, unsigned n) in skip() function
244 skip(in, 6); in gzheader()
248 skip(in, n); in gzheader()
252 if (flags & 2) skip(in, 2); in gzheader()
/AliOS-Things-master/components/cli/src/iobox/
A Dhexdump.c101 static int hexdump_do(const char *file, int len, int skip, int chr) in hexdump_do() argument
120 if (skip) { in hexdump_do()
121 ret = lseek(fd, skip, SEEK_SET); in hexdump_do()
163 int opts = 0, len = 0, skip = 0, chr = 0; in hexdump_main() local
172 skip = atoi(optarg); in hexdump_main()
194 hexdump_do(argv[opts], len, skip, chr); in hexdump_main()
/AliOS-Things-master/components/py_engine/tests/
A Drun-multitests.py243 skip = False
273 skip = True
284 if error or skip:
287 if not error and not skip:
328 return error, skip, output_str
356 error, skip, output_test = run_test_on_instances(test_file, num_instances, instances_test)
358 if not skip:
373 if not skip:
378 if skip:
A Drun-tests213 skip = 0
214 … while i_mupy + skip < len(lines_mupy) and not line_exp[1].match(lines_mupy[i_mupy + skip]):
215 skip += 1
216 if i_mupy + skip >= len(lines_mupy):
219 del lines_mupy[i_mupy:i_mupy + skip]
A Drun-perfbench.py94 skip = (
100 if skip:
/AliOS-Things-master/components/SDL2/src/video/
A DSDL_blit_copy.c84 const int skip = len - remain; in SDL_memcpyMMX() local
85 SDL_memcpy(dst + skip, src + skip, remain); in SDL_memcpyMMX()
A DSDL_RLEaccel.c1149 int run, skip, len; in RLEAlphaSurface() local
1157 if (skip == w) in RLEAlphaSurface()
1162 skip -= max_opaque_run; in RLEAlphaSurface()
1184 int run, skip, len; in RLEAlphaSurface() local
1192 blankline &= (skip == w); in RLEAlphaSurface()
1342 int run, skip, len; in RLEColorkeySurface() local
1352 skip = runstart - skipstart; in RLEColorkeySurface()
1353 if (skip == w) in RLEColorkeySurface()
1358 while (skip > maxn) { in RLEColorkeySurface()
1360 skip -= maxn; in RLEColorkeySurface()
[all …]
/AliOS-Things-master/hardware/chip/rtl872xd/test/cutest/
A Dcut.c20 cut.clist[i]->skip = 1; in filter()
101 cut.clist[i]->skip = 0; in cut_main()
114 if (cut.ccur->skip) in cut_main()
/AliOS-Things-master/components/py_engine/external/unzip/src/
A Dgzwrite.c181 if (gz_zero(state, state->skip) == -1)
242 if (gz_zero(state, state->skip) == -1)
305 if (gz_zero(state, state->skip) == -1) in gzprintf()
380 if (gz_zero(state, state->skip) == -1)
448 if (gz_zero(state, state->skip) == -1)
483 if (gz_zero(state, state->skip) == -1)
518 ret += gz_zero(state, state->skip);
A Dminiunz.c263 int skip = 0; in do_extract_currentfile() local
295 skip = 1; in do_extract_currentfile()
301 if ((skip == 0) && (err == UNZ_OK)) { in do_extract_currentfile()
A Dgzlib.c303 offset += state->skip;
345 state->skip = offset;
376 return state->pos + (state->seek ? state->skip : 0);
/AliOS-Things-master/components/py_engine/engine/tools/
A Dupip_utarfile.py42 def skip(self): member in FileSection
67 self.subf.skip()
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/contrib/tools/
A Dpngfix.c749 global->skip = SKIP_NONE; in global_init()
778 if (global->skip >= SKIP_ALL) in skip_chunk_type()
787 if (global->skip >= SKIP_COLOR) in skip_chunk_type()
2505 int skip = 0; in zlib_run() local
3887 global.skip = SKIP_UNSAFE; in main()
3911 global.skip = SKIP_NONE; in main()
3914 global.skip = SKIP_BAD_CRC; in main()
3917 global.skip = SKIP_UNSAFE; in main()
3920 global.skip = SKIP_UNUSED; in main()
3926 global.skip = SKIP_COLOR; in main()
[all …]
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/
A Dgzwrite.c196 if (gz_zero(state, state->skip) == -1)
326 if (gz_zero(state, state->skip) == -1)
404 if (gz_zero(state, state->skip) == -1) in gzvprintf()
498 if (gz_zero(state, state->skip) == -1)
575 if (gz_zero(state, state->skip) == -1)
610 if (gz_zero(state, state->skip) == -1)
645 if (gz_zero(state, state->skip) == -1)
/AliOS-Things-master/components/py_engine/tests/multi_net/
A Duasyncio_tcp_client_rst.py47 multitest.skip()
A Dtcp_client_rst.py47 multitest.skip()
/AliOS-Things-master/components/lwip/lwip2.0.0/netif/ppp/polarssl/
A DREADME12 PolarSSL you can choose to skip the compilation of the included PolarSSL
/AliOS-Things-master/components/py_engine/external/unzip/internal/
A Dgzguts.h108 z_off64_t skip; /* amount to skip (already rewound if backwards) */ member
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/contrib/minizip/
A Dminiunz.c363 int skip=0; local
403 skip = 1;
409 if ((skip==0) && (err==UNZ_OK))
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/dec/
A Dvp8_dec.c608 int skip = dec->use_skip_proba_ ? block->skip_ : 0; in VP8DecodeMB() local
610 if (!skip) { in VP8DecodeMB()
611 skip = ParseResiduals(dec, mb, token_br); in VP8DecodeMB()
625 finfo->f_inner_ |= !skip; in VP8DecodeMB()

Completed in 42 milliseconds

1234