Home
last modified time | relevance | path

Searched full:skip (Results 1 – 25 of 3453) sorted by relevance

12345678910>>...139

/Linux-v6.6/net/netfilter/
Dnf_conntrack_h323_types.c10 {FNAME("port") INT, WORD, 0, 0, SKIP, 0, NULL},
14 {FNAME("item") OCTSTR, FIXD, 4, 0, SKIP, 0, NULL},
18 {FNAME("strict") NUL, FIXD, 0, 0, SKIP, 0, NULL},
19 {FNAME("loose") NUL, FIXD, 0, 0, SKIP, 0, NULL},
23 {FNAME("ip") OCTSTR, FIXD, 4, 0, SKIP, 0, NULL},
24 {FNAME("port") INT, WORD, 0, 0, SKIP, 0, NULL},
25 {FNAME("route") SEQOF, SEMI, 0, 0, SKIP, 0,
27 {FNAME("routing") CHOICE, 1, 2, 2, SKIP | EXT, 0,
32 {FNAME("node") OCTSTR, FIXD, 6, 0, SKIP, 0, NULL},
33 {FNAME("netnum") OCTSTR, FIXD, 4, 0, SKIP, 0, NULL},
[all …]
/Linux-v6.6/lib/
Ddecompress_unlzo.c41 STATIC inline long INIT parse_header(u8 *input, long *skip, long in_len) in parse_header() argument
61 /* get version (2bytes), skip library version (2), in parse_header()
82 /* skip mode and mtime_low */ in parse_header()
85 parse += 4; /* skip mtime_high */ in parse_header()
88 /* don't care about the file name, and skip checksum */ in parse_header()
93 *skip = parse - input; in parse_header()
104 long skip = 0; in unlzo() local
154 if (!parse_header(in_buf, &skip, in_len)) { in unlzo()
158 in_buf += skip; in unlzo()
159 in_len -= skip; in unlzo()
[all …]
Dsg_split.c21 off_t skip, const size_t *sizes, in sg_calculate_split() argument
37 if (skip > sglen) { in sg_calculate_split()
38 skip -= sglen; in sg_calculate_split()
42 len = min_t(size_t, size, sglen - skip); in sg_calculate_split()
45 curr->skip_sg0 = skip; in sg_calculate_split()
51 while (!size && (skip + len < sglen) && (--nb_splits > 0)) { in sg_calculate_split()
54 skip += len; in sg_calculate_split()
55 len = min_t(size_t, size, sglen - skip); in sg_calculate_split()
58 curr->skip_sg0 = skip; in sg_calculate_split()
63 skip = 0; in sg_calculate_split()
[all …]
Diov_iter.c30 size_t skip = i->iov_offset; \
32 len = min(n, __p->iov_len - skip); \
34 base = __p->iov_base + skip; \
37 skip += len; \
39 if (skip < __p->iov_len) \
43 skip = 0; \
45 i->iov_offset = skip; \
51 unsigned skip = i->iov_offset; \
53 unsigned offset = p->bv_offset + skip; \
58 len = min(min(n, (size_t)(p->bv_len - skip)), \
[all …]
/Linux-v6.6/arch/powerpc/boot/
Ddecompress.c43 static unsigned long skip; variable
65 /* skip this entire block */ in flush()
66 if (end <= skip) { in flush()
71 /* skip some data at the start, but keep the rest of the block */ in flush()
72 if (decompressed_bytes < skip && end > skip) { in flush()
73 offset = skip - decompressed_bytes; in flush()
80 out = &output_buffer[decompressed_bytes - skip]; in flush()
104 * @skip number of output bytes to ignore
112 * The skip functionality is mainly there so the program and discover
130 skip = _skip; in partial_decompress()
[all …]
/Linux-v6.6/tools/testing/kunit/test_data/
Dtest_skip_all_tests.log5 ok 1 - string_stream_test_empty_on_creation # SKIP all tests skipped
6 ok 2 - string_stream_test_not_empty_after_add # SKIP all tests skipped
7 ok 3 - string_stream_test_get_string # SKIP all tests skipped
8 ok 1 - string-stream-test # SKIP
12 ok 1 - example_simple_test # SKIP all tests skipped
14 ok 2 - example_skip_test # SKIP this test should be skipped
15 ok 2 - example # SKIP
/Linux-v6.6/drivers/gpu/drm/sti/
Dsti_awg_utils.c20 SKIP, enumerator
39 /* skip, repeat and replay arg should not exceed 1023. in awg_generate_instr()
54 case SKIP: in awg_generate_instr()
61 /* SKIP instruction not needed */ in awg_generate_instr()
66 /* SKIP 0 not permitted but we want to skip 1 in awg_generate_instr()
67 * pixel. So we transform SKIP into SET in awg_generate_instr()
128 /* skip trailing pixel */ in awg_generate_line_signal()
133 ret |= awg_generate_instr(SKIP, val, 0, 0, fwparams); in awg_generate_line_signal()
142 /* skip the number of active pixel */ in awg_generate_line_signal()
144 ret |= awg_generate_instr(SKIP, val, 0, 1, fwparams); in awg_generate_line_signal()
[all …]
/Linux-v6.6/drivers/crypto/bcm/
Dutil.h55 void __dump_sg(struct scatterlist *sg, unsigned int skip, unsigned int len);
57 #define dump_sg(sg, skip, len) __dump_sg(sg, skip, len) argument
77 static inline void dump_sg(struct scatterlist *sg, unsigned int skip, in dump_sg() argument
84 int spu_sg_at_offset(struct scatterlist *sg, unsigned int skip,
87 /* Copy sg data, from skip, length len, to dest */
89 unsigned int len, unsigned int skip);
92 unsigned int len, unsigned int skip);
94 int spu_sg_count(struct scatterlist *sg_list, unsigned int skip, int nbytes);
96 struct scatterlist **from_sg, u32 *skip,
Dutil.c19 * @skip: [in] Distance from the start of the scatterlist, in bytes
20 * @sge: [out] Scatterlist entry at skip bytes from start
27 int spu_sg_at_offset(struct scatterlist *sg, unsigned int skip, in spu_sg_at_offset() argument
36 while (next_index <= skip) { in spu_sg_at_offset()
44 *sge_offset = skip - index; in spu_sg_at_offset()
49 /* Copy len bytes of sg data, starting at offset skip, to a dest buffer */
51 unsigned int len, unsigned int skip) in sg_copy_part_to_buf() argument
56 copied = sg_pcopy_to_buffer(src, nents, dest, len, skip); in sg_copy_part_to_buf()
60 flow_log("sg with %u entries and skip %u\n", nents, skip); in sg_copy_part_to_buf()
67 * into the scatterlist dest, starting skip bytes into the scatterlist.
[all …]
/Linux-v6.6/drivers/staging/media/atomisp/pci/hive_isp_css_shared/host/
Dtag.c24 * @param[in] skip
30 unsigned int skip, in sh_css_create_tag_descr() argument
38 tag_descr->skip = skip; in sh_css_create_tag_descr()
53 unsigned int skip; in sh_css_encode_tag_descr() local
68 skip = tag->skip; in sh_css_encode_tag_descr()
80 assert((num_captures == 0) && (skip == 0) && (offset == 0)); in sh_css_encode_tag_descr()
88 | ((skip & 0x000000FF) << TAG_OFFSET_SHIFT) in sh_css_encode_tag_descr()
/Linux-v6.6/kernel/
Dstacktrace.c78 unsigned int skip; member
89 if (c->skip > 0) { in stack_trace_consume_entry()
90 c->skip--; in stack_trace_consume_entry()
108 * @skipnr: Number of entries to skip at the start of the stack trace
119 .skip = skipnr + 1, in stack_trace_save()
132 * @skipnr: Number of entries to skip at the start of the stack trace
143 /* skip this function if they are tracing us */ in stack_trace_save_tsk()
144 .skip = skipnr + (current == tsk), in stack_trace_save_tsk()
160 * @skipnr: Number of entries to skip at the start of the stack trace
171 .skip = skipnr, in stack_trace_save_regs()
[all …]
/Linux-v6.6/tools/testing/selftests/net/
Dnetdevice.sh11 # Kselftest framework requirement - SKIP code is 4.
23 echo "SKIP: $netdev: interface already up"
66 echo "SKIP: $netdev: already have an IP"
71 echo "SKIP: $netdev: set IP address"
82 echo "SKIP: $netdev: ethtool: invalid number of arguments"
89 echo "SKIP: $netdev: ethtool $2 not supported"
110 echo "SKIP: ethtool not present"
116 echo "SKIP: Cannot create a tmp file"
142 echo "SKIP: $netdev: interface kept up"
182 echo "SKIP: Need root privileges"
[all …]
Ddrop_monitor_tests.sh7 # Kselftest framework requirement - SKIP code is 4.
152 echo "SKIP: Need root privileges"
157 echo "SKIP: Could not run test without ip tool"
162 echo "SKIP: Could not run test without devlink tool"
167 echo "SKIP: Could not run test without tshark tool"
172 echo "SKIP: Could not run test without dwdump tool"
177 echo "SKIP: Could not run test without udevadm tool"
182 echo "SKIP: Could not run test without timeout tool"
187 echo "SKIP: Could not run test without mausezahn tool"
193 echo "SKIP: tshark too old, missing net_dm dissector"
/Linux-v6.6/arch/hexagon/lib/
Dmemset.S42 if p1 jump 2f /* skip byte loop */
55 2: /* skip byte loop */
60 if !p0 jump 3f /* skip initial byte store */
68 3: /* skip initial byte store */
73 if !p0 jump 4f /* skip initial half store */
81 4: /* skip initial half store */
86 if !p0 jump 5f /* skip initial word store */
95 5: /* skip initial word store */
99 if !p0 jump 7f /* skip double loop */
117 7: /* skip double loop */
[all …]
/Linux-v6.6/tools/testing/selftests/tc-testing/
Dtdc_batch.py57 skip = "skip_hw" variable
59 skip = "skip_sw" variable
73 def format_add_filter(device, prio, handle, skip, src_mac, dst_mac, argument
77 device, prio, handle, skip, src_mac, dst_mac, share_action))
80 def format_rep_filter(device, prio, handle, skip, src_mac, dst_mac, argument
84 device, prio, handle, skip, src_mac, dst_mac, share_action))
87 def format_del_filter(device, prio, handle, skip, src_mac, dst_mac, argument
106 cmd = formatter(device, prio, handle_start + index, skip, src_mac,
/Linux-v6.6/tools/perf/tests/shell/lib/
Dstat_output.sh24 echo "[Skip] paranoid and not root"
37 echo "[Skip] paranoid and not root"
66 echo "[Skip] paranoid and not root"
79 echo "[Skip] paranoid and not root"
92 echo "[Skip] paranoid and not root"
105 echo "[Skip] paranoid and not root"
118 echo "[Skip] paranoid and not root"
131 echo "[Skip] paranoid and not root"
/Linux-v6.6/tools/perf/tests/shell/
Dstat+json_output.sh59 echo "[Skip] paranoia and not root"
72 echo "[Skip] paranoia and not root"
102 echo "[Skip] paranoia and not root"
115 echo "[Skip] paranoia and not root"
128 echo "[Skip] paranoia and not root"
140 echo "[Skip] paranoia and not root"
153 echo "[Skip] paranoia and not root"
166 echo "[Skip] paranoia and not root"
216 …echo "[Skip] Skipping tests for system_wide_no_aggr, per_core, per_die and per_socket since socket…
Dstat+shadow_stat.sh7 # skip if system-wide mode is forbidden
10 # skip if on hybrid platform
19 # skip not counted events
30 # skip if no cycles
50 # skip not counted events
64 # skip if no cycles
/Linux-v6.6/tools/perf/tests/
Dtime-utils-test.c66 u64 skip[TEST_MAX]; member
116 if (d->skip[i] && in test__perf_time__parse_for_ranges()
117 !perf_time__ranges_skip_sample(ptime, d->num, d->skip[i])) { in test__perf_time__parse_for_ranges()
118 pr_debug("failed to skip %" PRIu64 "\n", d->skip[i]); in test__perf_time__parse_for_ranges()
164 .skip = { b - 1, b + 2, }, in test__time_utils()
181 .skip = { b - 1, b + 2, c - 1, c + 124, e - 1, e + 6 }, in test__time_utils()
196 .skip = { b - 1, b + 10, }, in test__time_utils()
211 .skip = { b + 9, b + 20, }, in test__time_utils()
226 .skip = { b - 1, b + 20, }, in test__time_utils()
241 .skip = { b - 1, b + 10, b + 19, b + 30, b + 89, b + 101 }, in test__time_utils()
/Linux-v6.6/tools/testing/selftests/netfilter/
Dnft_conntrack_helper.sh7 # Kselftest framework requirement - SKIP code is 4.
24 echo "SKIP: Could not run test without nft tool"
30 echo "SKIP: Could not run test without ip tool"
36 echo "SKIP: Could not run test without conntrack tool"
42 echo "SKIP: Could not run test without netcat tool"
53 echo "SKIP: No virtual ethernet pair device support in kernel"
170 echo "SKIP: ${ns1} cannot load ip6 ruleset" 1>&2
176 echo "SKIP: ${ns1} cannot load inet ruleset" 1>&2
/Linux-v6.6/mm/kmsan/
Dreport.c31 * Skip internal KMSAN frames.
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()
/Linux-v6.6/tools/testing/selftests/kselftest/
Dmodule.sh46 skip "please run as root"
52 skip "module $module is not found"
75 skip() { function
76 say "$1 [SKIP]" >&2
77 # Kselftest framework requirement - SKIP code is 4.
/Linux-v6.6/kernel/bpf/
Dstackmap.c215 u32 skip = flags & BPF_F_SKIP_FIELD_MASK; in __bpf_get_stackid() local
221 if (trace->nr <= skip) in __bpf_get_stackid()
225 trace_nr = trace->nr - skip; in __bpf_get_stackid()
227 ips = trace->ip + skip; in __bpf_get_stackid()
284 u32 skip = flags & BPF_F_SKIP_FIELD_MASK; in BPF_CALL_3() local
293 max_depth += skip; in BPF_CALL_3()
364 u64 skip = flags & BPF_F_SKIP_FIELD_MASK; in BPF_CALL_3() local
366 skip += nr_kernel; in BPF_CALL_3()
367 if (skip > BPF_F_SKIP_FIELD_MASK) in BPF_CALL_3()
370 flags = (flags & ~BPF_F_SKIP_FIELD_MASK) | skip; in BPF_CALL_3()
[all …]
/Linux-v6.6/kernel/kcsan/
Dreport.c168 * Special rules to skip reporting.
182 * 2. read watchpoint, conflicting write (value_change==MAYBE): skip; in skip_report()
184 * 4. write watchpoint, conflicting write (value_change==MAYBE): skip; in skip_report()
185 * 5. write watchpoint, conflicting read (value_change==MAYBE): skip; in skip_report()
276 /* Helper to skip KCSAN-related functions in stack-trace. */
281 int len, skip; in get_stack_skipnr() local
283 for (skip = 0; skip < num_entries; ++skip) { in get_stack_skipnr()
284 len = scnprintf(buf, sizeof(buf), "%ps", (void *)stack_entries[skip]); in get_stack_skipnr()
300 * No match for runtime functions -- @skip entries to skip to in get_stack_skipnr()
306 return skip; in get_stack_skipnr()
[all …]
/Linux-v6.6/tools/testing/selftests/bpf/
Dtest_bpftool_metadata.sh4 # Kselftest framework requirement - SKIP code is 4.
22 echo "selftests: $TESTNAME [SKIP]"
39 echo "selftests: $TESTNAME [SKIP] Need root privileges"
44 echo "selftests: $TESTNAME [SKIP] Could not run test without bpffs mounted"
49 echo "selftests: $TESTNAME [SKIP] Could not run test without bpftool"

12345678910>>...139