Searched refs:skip (Results 1 - 25 of 526) sorted by relevance

1234567891011>>

/linux-master/drivers/staging/media/atomisp/pci/hive_isp_css_include/host/
H A Dtag_public.h22 * @param[in] skip
28 unsigned int skip,
/linux-master/lib/
H A Ddecompress_unlzo.c41 STATIC inline long INIT parse_header(u8 *input, long *skip, long in_len) argument
61 /* get version (2bytes), skip library version (2),
82 /* skip mode and mtime_low */
85 parse += 4; /* skip mtime_high */
88 /* don't care about the file name, and skip checksum */
93 *skip = parse - input;
104 long skip = 0; local
154 if (!parse_header(in_buf, &skip, in_len)) {
158 in_buf += skip;
159 in_len -= skip;
[all...]
H A Dsg_split.c21 off_t skip, const size_t *sizes,
37 if (skip > sglen) {
38 skip -= sglen;
42 len = min_t(size_t, size, sglen - skip);
45 curr->skip_sg0 = skip;
51 while (!size && (skip + len < sglen) && (--nb_splits > 0)) {
54 skip += len;
55 len = min_t(size_t, size, sglen - skip);
58 curr->skip_sg0 = skip;
63 skip
20 sg_calculate_split(struct scatterlist *in, int nents, int nb_splits, off_t skip, const size_t *sizes, struct sg_splitter *splitters, bool mapped) argument
148 sg_split(struct scatterlist *in, const int in_mapped_nents, const off_t skip, const int nb_splits, const size_t *split_sizes, struct scatterlist **out, int *out_mapped_nents, gfp_t gfp_mask) argument
[all...]
/linux-master/arch/x86/purgatory/
H A Dstack.S17 .skip 4096
/linux-master/drivers/staging/media/atomisp/pci/hive_isp_css_shared/host/
H A Dtag.c24 * @param[in] skip
30 unsigned int skip,
38 tag_descr->skip = skip;
53 unsigned int skip; local
68 skip = tag->skip;
80 assert((num_captures == 0) && (skip == 0) && (offset == 0));
88 | ((skip & 0x000000FF) << TAG_OFFSET_SHIFT)
29 sh_css_create_tag_descr(int num_captures, unsigned int skip, int offset, unsigned int exp_id, struct sh_css_tag_descr *tag_descr) argument
/linux-master/arch/powerpc/boot/
H A Ddecompress.c43 static unsigned long skip; variable
65 /* skip this entire block */
66 if (end <= skip) {
71 /* skip some data at the start, but keep the rest of the block */
72 if (decompressed_bytes < skip && end > skip) {
73 offset = skip - decompressed_bytes;
80 out = &output_buffer[decompressed_bytes - skip];
104 * @skip number of output bytes to ignore
112 * The skip functionalit
[all...]
/linux-master/drivers/crypto/bcm/
H A 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)
77 static inline void dump_sg(struct scatterlist *sg, unsigned int skip, 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,
[all...]
/linux-master/tools/testing/selftests/kselftest/
H A Dmodule.sh46 skip "please run as root"
52 skip "module $module is not found"
75 skip() { function
/linux-master/tools/perf/tests/shell/coresight/asm_pure_loop/
H A Dasm_pure_loop.S14 adrp x2, skip
15 add x2, x2, :lo12:skip
22 skip: label
/linux-master/arch/hexagon/kernel/
H A Dstacktrace.c27 int skip = trace->skip; local
36 if (skip) {
37 skip--;
/linux-master/drivers/staging/media/atomisp/pci/hive_isp_css_shared/
H A Dtag_global.h37 * skip Skip N frames in between captures. This can be
52 unsigned int skip; member in struct:sh_css_tag_descr
/linux-master/include/linux/
H A Diov_iter.h44 size_t progress = 0, skip = iter->iov_offset; local
48 size_t part = min(len, p->iov_len - skip);
51 remain = step(p->iov_base + skip, progress, part, priv, priv2);
54 skip += consumed;
56 if (skip < p->iov_len)
60 skip = 0;
65 iter->iov_offset = skip;
78 size_t progress = 0, skip = iter->iov_offset; local
82 size_t part = min(len, p->iov_len - skip);
85 remain = step(p->iov_base + skip, progres
112 size_t progress = 0, skip = iter->iov_offset; local
[all...]
/linux-master/tools/testing/selftests/tc-testing/
H A 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,
77 device, prio, handle, skip, src_mac, dst_mac, share_action))
80 def format_rep_filter(device, prio, handle, skip, src_mac, dst_mac,
84 device, prio, handle, skip, src_mac, dst_mac, share_action))
87 def format_del_filter(device, prio, handle, skip, src_mac, dst_mac,
106 cmd = formatter(device, prio, handle_start + index, skip, src_mac,
/linux-master/tools/testing/selftests/bpf/progs/
H A Dbpf_iter_task_btf.c13 bool skip = false; variable
45 skip = true;
H A Darena_htab.c18 bool skip = false; variable
43 skip = true;
H A Darena_list.c31 bool skip = false; variable
61 skip = true;
82 skip = true;
/linux-master/tools/testing/ktest/examples/include/
H A Dmin-config.conf28 # The ${CONFIG_DIR}/config-skip (and -net) will hold the configs
35 # setting setting the MIN_CONFIG to ${CONFIG_DIR}/config-skip. If the
36 # machine still boots, then you can use the config-skip as your MIN_CONFIG.
50 IGNORE_CONFIG = ${CONFIG_DIR}/config-skip-net
58 IGNORE_CONFIG = ${CONFIG_DIR}/config-skip
/linux-master/arch/openrisc/kernel/
H A Dstacktrace.c33 if (trace->skip > 0) {
34 trace->skip--;
59 if (trace->skip > 0) {
60 trace->skip--;
/linux-master/arch/sh/kernel/
H A Dstacktrace.c28 if (trace->skip > 0) {
29 trace->skip--;
60 if (trace->skip > 0) {
61 trace->skip--;
/linux-master/tools/testing/selftests/seccomp/
H A Dseccomp_benchmark.c108 bool skip)
112 if (skip) {
189 bool skip = false; local
256 skip = true; \
278 skip);
280 skip);
282 skip = true;
285 per_filter1, approx, per_filter2, skip);
288 bitmap1 - native, approx, bitmap2 - native, skip);
291 skip
106 compare(const char *name_one, const char *name_eval, const char *name_two, unsigned long long one, bool (*eval)(int, int), unsigned long long two, bool skip) argument
[all...]
/linux-master/arch/mips/dec/prom/
H A Dlocore.S27 addiu k0, 4 # skip the causing instruction
/linux-master/arch/mips/kernel/
H A Dstacktrace.c27 if (trace->skip > 0)
28 trace->skip--;
55 if (trace->skip > 0)
56 trace->skip--;
/linux-master/arch/microblaze/kernel/
H A Dstacktrace.c22 trace->skip += 2;
/linux-master/fs/bcachefs/
H A Dsnapshot_format.h14 __le32 skip[3]; member in struct:bch_snapshot
H A Dsubvolume_types.h13 u32 skip[3]; member in struct:snapshot_t

Completed in 327 milliseconds

1234567891011>>