/kernel/linux/linux-5.10/arch/sh/kernel/ |
H A D | stacktrace.c | 28 if (trace->skip > 0) { in save_stack_address() 29 trace->skip--; in save_stack_address() 60 if (trace->skip > 0) { in save_stack_address_nosched() 61 trace->skip--; in save_stack_address_nosched()
|
/kernel/linux/linux-6.6/arch/sh/kernel/ |
H A D | stacktrace.c | 28 if (trace->skip > 0) { in save_stack_address() 29 trace->skip--; in save_stack_address() 60 if (trace->skip > 0) { in save_stack_address_nosched() 61 trace->skip--; in save_stack_address_nosched()
|
/third_party/node/test/pummel/ |
H A D | test-fs-watch-system-limit.js | 9 common.skip('The fs watch limit is OS-dependent'); 13 common.skip('Too slow for Raspberry Pi devices'); 22 common.skip('inotify limit is quite large'); 25 common.skip('the inotify /proc subsystem does not exist');
|
H A D | test-crypto-dh-hash.js | 26 common.skip('node compiled without OpenSSL.'); 30 common.skip('Too slow for Raspberry Pi devices'); 34 common.skip('Too slow when dynamically linked against OpenSSL 1.1.1');
|
/third_party/curl/src/ |
H A D | tool_setopt.c | 267 bool skip = FALSE; in tool_setopt_enum() local 271 skip = TRUE; in tool_setopt_enum() 273 if(config->libcurl && !skip && !ret) { in tool_setopt_enum() 306 bool skip = FALSE; in tool_setopt_bitmask() local 310 skip = TRUE; in tool_setopt_bitmask() 312 if(config->libcurl && !skip && !ret) { in tool_setopt_bitmask() 562 bool skip = FALSE; in tool_setopt() local 585 skip = TRUE; in tool_setopt() 598 skip = TRUE; in tool_setopt() 610 skip in tool_setopt() [all...] |
/kernel/linux/linux-6.6/mm/kmsan/ |
H A D | report.c | 36 int len, skip; in get_stack_skipnr() local 39 for (skip = 0; skip < num_entries; ++skip) { in get_stack_skipnr() 41 (void *)stack_entries[skip]); in get_stack_skipnr() 49 * No match for runtime functions -- @skip entries to skip to in get_stack_skipnr() 55 return skip; in get_stack_skipnr()
|
/third_party/libfuse/test/ |
H A D | util.py | 114 a `pytest.mark.skip` object with more details. If FUSE is 118 skip = lambda x: pytest.mark.skip(reason=x) 128 return skip("Can't find fusermount executable") 131 return skip("FUSE kernel module does not seem to be loaded") 138 return skip('fusermount executable not setuid, and we are not root.') 143 return skip('Unable to open /dev/fuse: %s' % exc.strerror)
|
/kernel/linux/linux-6.6/arch/s390/purgatory/ |
H A D | head.S | 254 SYM_DATA(purgatory_sha256_digest, .skip 32) 255 SYM_DATA(purgatory_sha_regions, .skip 16*__KEXEC_SHA_REGION_SIZE) 256 SYM_DATA(kernel_entry, .skip 8) 257 SYM_DATA(kernel_type, .skip 8) 258 SYM_DATA(crash_start, .skip 8) 259 SYM_DATA(crash_size, .skip 8) 263 .skip stack-purgatory_start
|
/third_party/ffmpeg/libavcodec/ |
H A D | cpia.c | 61 uint8_t skip; in cpia_decode_frame() local 152 skip = src[j] >> 1; in cpia_decode_frame() 153 y += skip; in cpia_decode_frame() 170 skip = src[j] >> 1; in cpia_decode_frame() 171 y += skip; in cpia_decode_frame() 172 u += skip >> 1; in cpia_decode_frame() 173 v += skip >> 1; in cpia_decode_frame() 202 * Set some reasonable time_base to skip this. in cpia_decode_init()
|
H A D | g722dec.c | 93 const int skip = 8 - c->bits_per_codeword; in g722_decode_frame() local 94 const int16_t *quantizer_table = low_inv_quants[skip]; in g722_decode_frame() 112 ilow = get_bits(&gb, 6 - skip); in g722_decode_frame() 113 skip_bits(&gb, skip); in g722_decode_frame() 118 ff_g722_update_low_predictor(&c->band[0], ilow >> (2 - skip)); in g722_decode_frame()
|
/third_party/ffmpeg/libavformat/ |
H A D | oggparseopus.c | 167 int64_t skip = priv->cur_dts - os->granule + priv->pre_skip; in opus_packet() local 168 skip = FFMIN(skip, os->pduration); in opus_packet() 169 if (skip > 0) { in opus_packet() 170 os->pduration = skip < os->pduration ? os->pduration - skip : 1; in opus_packet() 171 os->end_trimming = skip; in opus_packet()
|
/third_party/pulseaudio/src/pulsecore/ |
H A D | proplist-util.c | 120 size_t kl, skip; in pa_init_proplist() local 125 skip = 20; in pa_init_proplist() 128 skip = 11; in pa_init_proplist() 132 kl = strcspn(*e+skip, "="); in pa_init_proplist() 134 if ((*e)[skip+kl] != '=') in pa_init_proplist() 137 k = pa_xstrndup(*e+skip, kl); in pa_init_proplist() 141 pa_proplist_sets(p, k, *e+skip+kl+1); in pa_init_proplist()
|
/kernel/linux/linux-6.6/sound/pci/emu10k1/ |
H A D | voice.c | 28 int i, j, k, skip; in voice_alloc() local 30 for (i = emu->next_free_voice, j = 0; j < NUM_G; i = (i + skip) % NUM_G, j += skip) { in voice_alloc() 38 skip = 1; in voice_alloc() 45 skip = k + 1; in voice_alloc()
|
/third_party/skia/src/core/ |
H A D | SkReadBuffer.cpp | 55 const void* SkReadBuffer::skip(size_t size) { in skip() function in SkReadBuffer 68 const void* SkReadBuffer::skip(size_t count, size_t size) { in skip() function in SkReadBuffer 69 return this->skip(SkSafeMath::Mul(count, size)); in skip() 124 if (const void* src = this->skip(bytes)) { in readPad32() 171 if (const float* m = (const float*)this->skip(sizeof(float) * 16)) { in read() 189 (void)this->skip(size); in readMatrix() 232 (void)this->skip(size); in readRRect() 243 (void)this->skip(size); in readRegion() 254 (void)this->skip(size); in readPath() 289 const void* buf = this->skip(coun in skipByteArray() [all...] |
/third_party/node/test/common/ |
H A D | sea.js | 11 common.skip('Single Executable Application support has been disabled.'); 14 common.skip(`Unsupported platform ${process.platform}.`); 17 common.skip('Running the resultant binary fails with `Couldn\'t read target executable"`.'); 20 common.skip('Running the resultant binary fails with ' + 25 common.skip('Running the resultant binary fails with ' + 30 common.skip('Running the resultant binary fails with `Node.js is not compiled with OpenSSL crypto support`.'); 33 common.skip('Running the resultant binary fails with `Segmentation fault (core dumped)`.'); 38 if (isAlpine) common.skip('Alpine Linux is not supported.'); 41 common.skip('On s390x, postject fails with `memory access out of bounds`.');
|
/kernel/linux/linux-6.6/fs/jfs/ |
H A D | jfs_xtree.c | 675 int skip; /* index of entry of insertion */ in xtSplitUp() local 705 skip = split->index; in xtSplitUp() 707 if (skip < nextindex) in xtSplitUp() 708 memmove(&sp->xad[skip + 1], &sp->xad[skip], in xtSplitUp() 709 (nextindex - skip) * sizeof(xad_t)); in xtSplitUp() 712 xad = &sp->xad[skip]; in xtSplitUp() 724 min(skip, (int)xtlck->lwm.offset) : skip; in xtSplitUp() 820 skip in xtSplitUp() 946 int skip, maxentry, middle, righthalf, n; xtSplitPage() local 1208 int skip, nextindex; xtSplitRoot() local [all...] |
/kernel/linux/linux-5.10/kernel/bpf/ |
H A D | stackmap.c | 405 u32 skip = flags & BPF_F_SKIP_FIELD_MASK; in __bpf_get_stackid() local 411 if (trace->nr <= skip) in __bpf_get_stackid() 415 trace_nr = trace->nr - skip; in __bpf_get_stackid() 417 ips = trace->ip + skip; in __bpf_get_stackid() 474 u32 skip = flags & BPF_F_SKIP_FIELD_MASK; in BPF_CALL_3() local 483 max_depth += skip; in BPF_CALL_3() 554 u64 skip = flags & BPF_F_SKIP_FIELD_MASK; in BPF_CALL_3() local 556 skip += nr_kernel; in BPF_CALL_3() 557 if (skip > BPF_F_SKIP_FIELD_MASK) in BPF_CALL_3() 560 flags = (flags & ~BPF_F_SKIP_FIELD_MASK) | skip; in BPF_CALL_3() 582 u32 skip = flags & BPF_F_SKIP_FIELD_MASK; __bpf_get_stack() local 733 u64 skip = flags & BPF_F_SKIP_FIELD_MASK; BPF_CALL_4() local [all...] |
/kernel/linux/linux-5.10/arch/mips/kernel/ |
H A D | stacktrace.c | 27 if (trace->skip > 0) in save_raw_context_stack() 28 trace->skip--; in save_raw_context_stack() 55 if (trace->skip > 0) in save_context_stack() 56 trace->skip--; in save_context_stack()
|
/kernel/linux/linux-5.10/arch/openrisc/kernel/ |
H A D | stacktrace.c | 33 if (trace->skip > 0) { in save_stack_address() 34 trace->skip--; in save_stack_address() 59 if (trace->skip > 0) { in save_stack_address_nosched() 60 trace->skip--; in save_stack_address_nosched()
|
/kernel/linux/linux-6.6/arch/mips/kernel/ |
H A D | stacktrace.c | 27 if (trace->skip > 0) in save_raw_context_stack() 28 trace->skip--; in save_raw_context_stack() 55 if (trace->skip > 0) in save_context_stack() 56 trace->skip--; in save_context_stack()
|
/kernel/linux/linux-6.6/arch/openrisc/kernel/ |
H A D | stacktrace.c | 33 if (trace->skip > 0) { in save_stack_address() 34 trace->skip--; in save_stack_address() 59 if (trace->skip > 0) { in save_stack_address_nosched() 60 trace->skip--; in save_stack_address_nosched()
|
/third_party/node/test/parallel/ |
H A D | test-crypto-certificate.js | 25 common.skip('missing crypto'); 68 let skip = false; 74 // and skip this test. 75 skip = true; 77 if (!skip) {
|
/kernel/linux/linux-5.10/tools/testing/selftests/kselftest/ |
H A D | module.sh | 46 skip "please run as root" 52 skip "module $module is not found" 75 skip() { function
|
/kernel/linux/linux-6.6/tools/perf/tests/shell/coresight/asm_pure_loop/ |
H A D | asm_pure_loop.S | 14 adrp x2, skip 15 add x2, x2, :lo12:skip 22 skip: label
|
/kernel/linux/linux-6.6/tools/testing/selftests/kselftest/ |
H A D | module.sh | 46 skip "please run as root" 52 skip "module $module is not found" 75 skip() { function
|