/third_party/ltp/testcases/kernel/kvm/ |
H A D | bootstrap_x86_64.S | 570 .skip 4096 573 .skip 4096 576 .skip 4 * 4096 579 .skip 4 * 512 * 4096 587 .skip (KVM_GDT_SIZE-2)*8 /* TSS and other segment descriptors */ 599 .skip 2 * 4096 606 .skip 0x6C 613 .skip 16 * 256
|
/third_party/python/Tools/msi/ |
H A D | uploadrelease.bat | 25 if "%1" EQU "--skip-upload" (set NOUPLOAD=true) && shift && goto CheckOpts
26 if "%1" EQU "--skip-gpg" (set NOGPG=true) && shift && goto CheckOpts
27 if "%1" EQU "--skip-purge" (set NOPURGE=true) && shift && goto CheckOpts
28 if "%1" EQU "--skip-test" (set NOTEST=true) && shift && goto CheckOpts
50 echo Skipping GPG signature generation because of --skip-gpg
105 echo --skip-gpg Does not generate GPG signatures before uploading
106 echo --skip-purge Does not perform CDN purge after uploading
107 echo --skip-test (-T) Does not perform post-upload tests
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/ |
H A D | vk_format_utils.cpp | 84 size_t skip, in FindSupportedFormat() 91 for (int i = static_cast<int>(skip); i < last; ++i) in FindSupportedFormat() 98 if (skip > 0 && !hasSupport(renderer, info[last].format)) in FindSupportedFormat() 100 // We couldn't find a valid fallback, try again without skip in FindSupportedFormat() 144 size_t skip = renderer->getFeatures().forceFallbackFormat.enabled ? 1 : 0; in initImageFallback() local 156 int i = FindSupportedFormat(renderer, info, skip, static_cast<uint32_t>(numInfo), testFunction); in initImageFallback() 168 i = FindSupportedFormat(renderer, info, skip, static_cast<uint32_t>(numInfo), testFunction); in initImageFallback() 179 size_t skip = renderer->getFeatures().forceFallbackFormat.enabled ? 1 : 0; in initBufferFallback() local 180 int i = FindSupportedFormat(renderer, info, skip, compressedStartIndex, in initBufferFallback() 82 FindSupportedFormat(RendererVk *renderer, const FormatInitInfo *info, size_t skip, int numInfo, SupportTest hasSupport) FindSupportedFormat() argument
|
/third_party/rust/crates/syn/src/ |
H A D | lib.rs | 607 #[rustfmt::skip] 726 #[rustfmt::skip] 820 #[rustfmt::skip] 824 #[rustfmt::skip] 828 #[rustfmt::skip] 832 #[rustfmt::skip] 836 #[rustfmt::skip] 995 let rest = whitespace::skip(&content[2..]); in parse_file()
|
H A D | whitespace.rs | 1 pub(crate) fn skip(mut s: &str) -> &str { 2 'skip: while !s.is_empty() { 34 continue 'skip;
|
/third_party/python/Modules/_sre/ |
H A D | sre.c | 1533 /* Extract opcode, argument, or skip count from code array */ 1552 skip = *code; \ 1553 VTRACE(("%lu (skip to %p)\n", \ 1554 (unsigned long)skip, code+skip)); \ 1555 if (skip-adj > (uintptr_t)(end - code)) \ 1654 SRE_CODE skip; in _validate_inner() local 1725 if (_validate_charset(code, code+skip-2)) in _validate_inner() 1727 if (code[skip-2] != SRE_OP_FAILURE) in _validate_inner() 1729 code += skip in _validate_inner() [all...] |
/third_party/vulkan-loader/loader/ |
H A D | cJSON.c | 454 static const char *skip(const char *in) { in skip() function 470 end = parse_value(c, skip(value), out_of_memory); in cJSON_ParseWithOpts() 476 /* if we require null-terminated JSON without appended garbage, skip and in cJSON_ParseWithOpts() 479 end = skip(end); in cJSON_ParseWithOpts() 602 value = skip(value + 1); in parse_array() 610 value = skip(parse_value(child, skip(value), out_of_memory)); /* skip any spacing, get the value. */ in parse_array() 623 value = skip(parse_value(child, skip(valu in parse_array() [all...] |
/third_party/node/lib/internal/test_runner/ |
H A D | test.js | 148 skip(message) { 149 this.#test.skip(message); 211 let { fn, name, parent, skip } = options; 292 skip = 'test name does not match pattern'; 296 skip = '\'only\' option not set'; 299 if (skip) { 322 this.skipped = skip !== undefined && skip !== false; 329 this.message = typeof skip === 'string' ? skip [all...] |
/third_party/ffmpeg/libavformat/ |
H A D | ape.c | 47 int skip; member 267 ape->frames[0].skip = 0; in ape_read_header() 274 ape->frames[i].skip = (ape->frames[i].pos - ape->frames[0].pos) & 3; in ape_read_header() 297 if(ape->frames[i].skip){ in ape_read_header() 298 ape->frames[i].pos -= ape->frames[i].skip; in ape_read_header() 299 ape->frames[i].size += ape->frames[i].skip; in ape_read_header() 311 ape->frames[i].skip <<= 3; in ape_read_header() 312 ape->frames[i].skip += bits; in ape_read_header() 404 AV_WL32(pkt->data + 4, ape->frames[ape->currentframe].skip); in ape_read_packet()
|
H A D | swfdec.c | 180 /* skip rectangle size */ in swf_read_header() 240 goto skip; in swf_read_packet() 262 goto skip; in swf_read_packet() 279 goto skip; in swf_read_packet() 310 goto skip; in swf_read_packet() 315 goto skip; in swf_read_packet() 481 goto skip; in swf_read_packet() 486 goto skip; in swf_read_packet() 514 goto skip; in swf_read_packet() 545 skip in swf_read_packet() [all...] |
H A D | brstm.c | 315 goto skip; in read_header() 322 goto skip; in read_header() 360 skip: in read_header() 372 uint32_t samples, size, skip = 0; in read_packet() local 382 skip = b->last_block_size - b->last_block_used_bytes; in read_packet() 389 skip += size - adjusted_size; in read_packet() 429 avio_skip(s->pb, skip); in read_packet()
|
/third_party/node/test/parallel/ |
H A D | test-tls-alert.js | 25 common.skip('missing crypto'); 28 common.skip('node compiled without OpenSSL CLI.');
|
/third_party/libwebsockets/lib/core-net/client/ |
H A D | conmon.c | 56 char skip = 0; in lws_conmon_append_copy_new_dns_results() local 82 skip = 1; in lws_conmon_append_copy_new_dns_results() 89 if (!skip) { in lws_conmon_append_copy_new_dns_results()
|
/third_party/node/test/sequential/ |
H A D | test-tls-securepair-client.js | 27 common.skip('node compiled without OpenSSL CLI.'); 30 common.skip('missing crypto'); 33 common.skip('test does not work on Windows'); // ...but it should!
|
/third_party/node/deps/v8/tools/clusterfuzz/js_fuzzer/mutators/ |
H A D | try_catch.js | 60 path.skip(); 73 path.skip(); 80 // Entirely skip try-catch wrapper. 81 path.skip(); 114 'Target skip probability ' + thisMutator.skipProb +
|
/third_party/musl/porting/linux/user/src/passwd/ |
H A D | getspnam_r.c | 75 int skip = 0; in getspnam_r() local 116 if (skip || strncmp(name, buf, l) || buf[l]!=':') { in getspnam_r() 117 skip = buf[k-1] != '\n'; in getspnam_r()
|
/third_party/musl/src/passwd/ |
H A D | getspnam_r.c | 76 int skip = 0; in getspnam_r() local 117 if (skip || strncmp(name, buf, l) || buf[l]!=':') { in getspnam_r() 118 skip = buf[k-1] != '\n'; in getspnam_r()
|
/third_party/mesa3d/src/panfrost/bifrost/ |
H A D | bi_opt_dual_tex.c | 44 * Dual texture instructions have skip flags, like normal texture instructions. 45 * Adding a skip flag to an instruction that doesn't have it is illegal, but 46 * removing a skip flag from one that has it is legal. Accordingly, set the 47 * fused TEXC's skip to the logical AND of the unfused TEXS flags. We run the 102 I->skip = I1->skip && I2->skip; in bi_fuse_dual()
|
/third_party/ltp/testcases/kernel/syscalls/setns/ |
H A D | setns01.c | 29 int skip; member 53 t->skip = 1; in setup3() 119 if (t->skip) { in test_setns() 120 tst_res(TCONF, "skip %s", t->msg); in test_setns()
|
/third_party/rust/crates/clap/tests/derive/ |
H A D | groups.rs | 65 #[group(skip)] in skip_group_avoids_duplicate_ids() 74 #[group(skip)] in skip_group_avoids_duplicate_ids() 83 #[group(skip)] in skip_group_avoids_duplicate_ids() 99 \t'Compose' is already in use (note: `Args` implicitly creates `ArgGroup`s; disable with `#[group(skip)]`"]
|
/third_party/skia/src/core/ |
H A D | SkBuffer.h | 67 const void* skip(size_t bytes); 69 return static_cast<const T*>(this->skip(SkSafeMath::Mul(count, sizeof(T)))); in skipCount() 107 void* skip(size_t size); // return start of skipped data
|
/third_party/toybox/toys/posix/ |
H A D | uniq.c | 36 static char *skip(char *str) in skip() function 79 t1 = skip(thisline); in uniq_main() 80 t2 = skip(prevline); in uniq_main()
|
/third_party/ffmpeg/libavcodec/ |
H A D | cdtoons.c | 68 int skip = 0, to_skip, x; in cdtoons_render_sprite() local 76 /* we need to skip the start of the scanlines */ in cdtoons_render_sprite() 77 skip = -dst_x; in cdtoons_render_sprite() 78 if (width <= skip) in cdtoons_render_sprite() 97 to_skip = skip; in cdtoons_render_sprite() 99 while (x < width - skip) { in cdtoons_render_sprite() 110 /* skip the start of a scanline if it is off-screen */ in cdtoons_render_sprite() 132 if (x + size >= width - skip) in cdtoons_render_sprite() 133 size = width - skip - x; in cdtoons_render_sprite()
|
/third_party/libwebsockets/win32port/zlib/ |
H A D | gzwrite.c | 181 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);
|
/third_party/node/deps/v8/src/compiler/backend/ |
H A D | jump-threading.cc | 88 // can't skip instructions with non redundant moves. in ComputeForwarding() 92 // can't skip instructions with flags continuations. in ComputeForwarding() 96 // skip nops. in ComputeForwarding() 149 // can't skip other instructions. in ComputeForwarding() 189 ZoneVector<bool> skip(static_cast<int>(result.size()), false, local_zone); in ApplyForwarding() 197 skip[block_num] = !prev_fallthru && result_rpo != block_rpo; in ApplyForwarding() 216 if (skip[block_num]) { in ApplyForwarding() 244 if (!skip[block->rpo_number().ToInt()]) ao++; in ApplyForwarding()
|