Home
last modified time | relevance | path

Searched refs:skip (Results 176 - 200 of 973) sorted by relevance

12345678910>>...39

/kernel/linux/linux-6.6/net/batman-adv/
H A Dbat_algo.c192 int skip = cb->args[0]; in batadv_algo_dump() local
196 if (i++ < skip) in batadv_algo_dump()
/kernel/linux/patches/linux-5.10/prebuilts/usr/include/drm/
H A Dsavage_drm.h132 unsigned short skip; member
139 unsigned short skip; member
/kernel/linux/patches/linux-6.6/prebuilts/usr/include/drm/
H A Dsavage_drm.h132 unsigned short skip; member
139 unsigned short skip; member
/kernel/linux/linux-5.10/drivers/staging/greybus/
H A Dsdio.c256 size_t len, u16 nblocks, off_t skip) in _gb_sdio_send()
281 copied = sg_pcopy_to_buffer(sg, sg_len, &request->data[0], len, skip); in _gb_sdio_send()
310 size_t len, u16 nblocks, off_t skip) in _gb_sdio_recv()
351 skip); in _gb_sdio_recv()
364 off_t skip = 0; in gb_sdio_transfer() local
390 ret = _gb_sdio_recv(host, data, len, nblocks, skip); in gb_sdio_transfer()
394 ret = _gb_sdio_send(host, data, len, nblocks, skip); in gb_sdio_transfer()
400 skip += len; in gb_sdio_transfer()
255 _gb_sdio_send(struct gb_sdio_host *host, struct mmc_data *data, size_t len, u16 nblocks, off_t skip) _gb_sdio_send() argument
309 _gb_sdio_recv(struct gb_sdio_host *host, struct mmc_data *data, size_t len, u16 nblocks, off_t skip) _gb_sdio_recv() argument
/kernel/linux/linux-6.6/drivers/staging/greybus/
H A Dsdio.c255 size_t len, u16 nblocks, off_t skip) in _gb_sdio_send()
280 copied = sg_pcopy_to_buffer(sg, sg_len, &request->data[0], len, skip); in _gb_sdio_send()
309 size_t len, u16 nblocks, off_t skip) in _gb_sdio_recv()
350 skip); in _gb_sdio_recv()
363 off_t skip = 0; in gb_sdio_transfer() local
389 ret = _gb_sdio_recv(host, data, len, nblocks, skip); in gb_sdio_transfer()
393 ret = _gb_sdio_send(host, data, len, nblocks, skip); in gb_sdio_transfer()
399 skip += len; in gb_sdio_transfer()
254 _gb_sdio_send(struct gb_sdio_host *host, struct mmc_data *data, size_t len, u16 nblocks, off_t skip) _gb_sdio_send() argument
308 _gb_sdio_recv(struct gb_sdio_host *host, struct mmc_data *data, size_t len, u16 nblocks, off_t skip) _gb_sdio_recv() argument
/kernel/linux/linux-6.6/lib/
H A Dscatterlist.c955 * @skip: Number of bytes to skip before copying
963 size_t buflen, off_t skip, bool to_buffer) in sg_copy_buffer()
976 if (!sg_miter_skip(&miter, skip)) in sg_copy_buffer()
1038 * @skip: Number of bytes to skip before copying
1044 const void *buf, size_t buflen, off_t skip) in sg_pcopy_from_buffer()
1046 return sg_copy_buffer(sgl, nents, (void *)buf, buflen, skip, false); in sg_pcopy_from_buffer()
1056 * @skip: Number of bytes to skip befor
962 sg_copy_buffer(struct scatterlist *sgl, unsigned int nents, void *buf, size_t buflen, off_t skip, bool to_buffer) sg_copy_buffer() argument
1043 sg_pcopy_from_buffer(struct scatterlist *sgl, unsigned int nents, const void *buf, size_t buflen, off_t skip) sg_pcopy_from_buffer() argument
1061 sg_pcopy_to_buffer(struct scatterlist *sgl, unsigned int nents, void *buf, size_t buflen, off_t skip) sg_pcopy_to_buffer() argument
1077 sg_zero_buffer(struct scatterlist *sgl, unsigned int nents, size_t buflen, off_t skip) sg_zero_buffer() argument
[all...]
/kernel/linux/linux-5.10/kernel/debug/kdb/
H A Dkdb_main.c996 /* skip whitespace */ in kdb_parse()
2157 int skip = 0; in kdb_dmesg() local
2194 skip = adjust; in kdb_dmesg()
2197 skip = n - lines - adjust; in kdb_dmesg()
2202 skip = n; in kdb_dmesg()
2203 } else if (skip < 0) { in kdb_dmesg()
2204 lines += skip; in kdb_dmesg()
2205 skip = 0; in kdb_dmesg()
2213 if (skip >= n || skip < in kdb_dmesg()
[all...]
/kernel/linux/linux-6.6/kernel/debug/kdb/
H A Dkdb_main.c994 /* skip whitespace */ in kdb_parse()
2089 int skip = 0; in kdb_dmesg() local
2126 skip = adjust; in kdb_dmesg()
2129 skip = n - lines - adjust; in kdb_dmesg()
2134 skip = n; in kdb_dmesg()
2135 } else if (skip < 0) { in kdb_dmesg()
2136 lines += skip; in kdb_dmesg()
2137 skip = 0; in kdb_dmesg()
2145 if (skip >= n || skip < in kdb_dmesg()
[all...]
/kernel/linux/linux-5.10/tools/testing/selftests/
H A Dkselftest_harness.h123 * and runs "statement", which is usually "return" or "goto skip".
133 _metadata->skip = 1; \
356 * Warning: use of ASSERT_* here will skip TEARDOWN.
821 int skip; /* did SKIP get used? */ member
916 t->skip = 1; in __wait_for_test()
966 t->skip = 0; in __run_test()
986 if (t->skip) in __run_test()
999 if (t->skip) in __run_test()
/kernel/linux/linux-5.10/drivers/tty/vt/
H A Dvc_screen.c298 unsigned int *skip) in vcs_read_buf()
310 *skip += pos; in vcs_read_buf()
327 (*skip)++; in vcs_read_buf()
403 unsigned int this_round, skip = 0; in vcs_read() local
445 viewed, &skip); in vcs_read()
456 ret = copy_to_user(buf, con_buf + skip, this_round); in vcs_read()
296 vcs_read_buf(const struct vc_data *vc, char *con_buf, unsigned int pos, unsigned int count, bool viewed, unsigned int *skip) vcs_read_buf() argument
/kernel/linux/linux-5.10/fs/hfsplus/
H A Dbrec.c119 goto skip; in hfs_brec_insert()
131 skip: in hfs_brec_insert()
216 goto skip; in hfs_brec_remove()
228 skip: in hfs_brec_remove()
393 goto skip; in hfs_brec_update_parent()
422 skip: in hfs_brec_update_parent()
/kernel/linux/linux-5.10/fs/hfs/
H A Dbrec.c119 goto skip; in hfs_brec_insert()
131 skip: in hfs_brec_insert()
212 goto skip; in hfs_brec_remove()
224 skip: in hfs_brec_remove()
388 goto skip; in hfs_brec_update_parent()
416 skip: in hfs_brec_update_parent()
/kernel/linux/linux-6.6/fs/hfs/
H A Dbrec.c119 goto skip; in hfs_brec_insert()
131 skip: in hfs_brec_insert()
212 goto skip; in hfs_brec_remove()
224 skip: in hfs_brec_remove()
388 goto skip; in hfs_brec_update_parent()
416 skip: in hfs_brec_update_parent()
/kernel/linux/linux-6.6/fs/hfsplus/
H A Dbrec.c119 goto skip; in hfs_brec_insert()
131 skip: in hfs_brec_insert()
216 goto skip; in hfs_brec_remove()
228 skip: in hfs_brec_remove()
393 goto skip; in hfs_brec_update_parent()
422 skip: in hfs_brec_update_parent()
/kernel/linux/linux-6.6/drivers/tty/vt/
H A Dvc_screen.c298 unsigned int *skip) in vcs_read_buf()
310 *skip += pos; in vcs_read_buf()
327 (*skip)++; in vcs_read_buf()
403 unsigned int this_round, skip = 0; in vcs_read() local
445 viewed, &skip); in vcs_read()
456 ret = copy_to_user(buf, con_buf + skip, this_round); in vcs_read()
296 vcs_read_buf(const struct vc_data *vc, char *con_buf, unsigned int pos, unsigned int count, bool viewed, unsigned int *skip) vcs_read_buf() argument
/kernel/linux/linux-6.6/tools/perf/util/
H A Dstat.c305 int cpu_map_idx, bool *skip) in check_per_pkg()
313 *skip = false; in check_per_pkg()
331 * instance to mark a package as used (skip=1). Otherwise in check_per_pkg()
358 *skip = true; in check_per_pkg()
392 bool skip = false; in process_counter_values() local
394 if (check_per_pkg(evsel, count, cpu_map_idx, &skip)) { in process_counter_values()
399 if (skip) in process_counter_values()
304 check_per_pkg(struct evsel *counter, struct perf_counts_values *vals, int cpu_map_idx, bool *skip) check_per_pkg() argument
/kernel/linux/linux-5.10/drivers/staging/media/atomisp/pci/hive_isp_css_include/host/
H A Dtag_public.h22 * @param[in] skip
28 unsigned int skip,
/kernel/linux/linux-5.10/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
/kernel/linux/linux-6.6/drivers/staging/media/atomisp/pci/hive_isp_css_include/host/
H A Dtag_public.h22 * @param[in] skip
28 unsigned int skip,
/kernel/linux/linux-6.6/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
/kernel/linux/linux-5.10/drivers/staging/media/imx/
H A Dimx-media-csi.c48 * @skip_smfc - skip pattern written to the SKIP_SMFC bitfield
83 const struct csi_skip_desc *skip; member
182 * CSI is connected directly to CSI mux, skip up to in csi_get_upstream_endpoint()
746 ipu_csi_set_skip_smfc(priv->csi, priv->skip->skip_smfc, in csi_setup()
747 priv->skip->max_ratio - 1, 0); in csi_setup()
854 static void csi_apply_skip_interval(const struct csi_skip_desc *skip, in csi_apply_skip_interval() argument
859 interval->numerator *= skip->max_ratio; in csi_apply_skip_interval()
860 interval->denominator *= skip->keep; in csi_apply_skip_interval()
871 * Find the skip pattern to produce the output frame interval closest to the
878 const struct csi_skip_desc *skip in csi_find_best_skip() local
[all...]
/kernel/linux/linux-6.6/drivers/staging/media/imx/
H A Dimx-media-csi.c48 * @skip_smfc - skip pattern written to the SKIP_SMFC bitfield
83 const struct csi_skip_desc *skip; member
182 * CSI is connected directly to CSI mux, skip up to in csi_get_upstream_mbus_config()
738 ipu_csi_set_skip_smfc(priv->csi, priv->skip->skip_smfc, in csi_setup()
739 priv->skip->max_ratio - 1, 0); in csi_setup()
843 static void csi_apply_skip_interval(const struct csi_skip_desc *skip, in csi_apply_skip_interval() argument
848 interval->numerator *= skip->max_ratio; in csi_apply_skip_interval()
849 interval->denominator *= skip->keep; in csi_apply_skip_interval()
860 * Find the skip pattern to produce the output frame interval closest to the
867 const struct csi_skip_desc *skip in csi_find_best_skip() local
[all...]
/kernel/linux/linux-5.10/net/unix/
H A Daf_unix.c2153 int skip; in unix_dgram_recvmsg() local
2165 skip = sk_peek_offset(sk, flags); in unix_dgram_recvmsg()
2167 &skip, &err, &last); in unix_dgram_recvmsg()
2200 if (size > skb->len - skip) in unix_dgram_recvmsg()
2201 size = skb->len - skip; in unix_dgram_recvmsg()
2202 else if (size < skb->len - skip) in unix_dgram_recvmsg()
2205 err = skb_copy_datagram_msg(skb, skip, msg, size); in unix_dgram_recvmsg()
2241 err = (flags & MSG_TRUNC) ? skb->len - skip : size; in unix_dgram_recvmsg()
2325 int skip; in unix_stream_read_generic() local
2349 skip in unix_stream_read_generic()
2510 unix_stream_read_actor(struct sk_buff *skb, int skip, int chunk, struct unix_stream_read_state *state) unix_stream_read_actor() argument
2535 unix_stream_splice_actor(struct sk_buff *skb, int skip, int chunk, struct unix_stream_read_state *state) unix_stream_splice_actor() argument
[all...]
/kernel/linux/linux-6.6/tools/testing/selftests/
H A Dkselftest_harness.h129 * and runs "statement", which is usually "return" or "goto skip".
139 _metadata->skip = 1; \
391 if (!_metadata->passed || _metadata->skip) \
836 int skip; /* did SKIP get used? */ member
944 t->skip = 1; in __wait_for_test()
1115 t->skip = 0; in __run_test()
1135 if (t->skip) in __run_test()
1148 if (t->skip) in __run_test()
/kernel/linux/linux-5.10/arch/microblaze/kernel/
H A Dunwind.c245 if (trace->skip > 0) in microblaze_unwind_inner()
246 trace->skip--; in microblaze_unwind_inner()

Completed in 35 milliseconds

12345678910>>...39