/Linux-v5.10/Documentation/userspace-api/media/v4l/ |
D | vidioc-s-hw-freq-seek.rst | 13 VIDIOC_S_HW_FREQ_SEEK - Perform a hardware frequency seek 34 Start a hardware frequency seek from the current frequency. To do this 51 will be clamped to fit in the band before the seek is started. 59 error code is returned and no seek takes place. 82 - If non-zero, seek upward from the current frequency, else seek 91 - If non-zero, defines the hardware seek resolution in Hz. The 134 The hardware seek found no channels. 137 Another hardware seek is already in progress.
|
D | dev-decoder.rst | 126 of a new stream, or to resume decoding after a seek. 595 seek. 792 The seek does not require any specific operation on the ``CAPTURE`` queue, but 795 1. Stop the ``OUTPUT`` queue to begin the seek sequence via 816 3. Start queuing buffers containing coded data after the seek to the ``OUTPUT`` 831 handling and workarounds for hardware issues related to seek operations. 835 In case of the H.264/HEVC codec, the client must take care not to seek 852 A seek may result in the `Dynamic Resolution Change` sequence being 853 initiated, due to the seek target having decoding parameters different from 854 the part of the stream decoded before the seek. The sequence must be handled [all …]
|
D | vidioc-g-tuner.rst | 236 - If set, then this tuner supports the hardware seek functionality 237 where the seek stops when it reaches the end of the frequency 241 - If set, then this tuner supports the hardware seek functionality 242 where the seek wraps around when it reaches the end of the 289 - The range to search when using the hardware seek functionality is
|
D | user-func.rst | 65 vidioc-s-hw-freq-seek
|
/Linux-v5.10/drivers/media/radio/si470x/ |
D | radio-si470x-common.c | 295 const struct v4l2_hw_freq_seek *seek) in si470x_set_seek() argument 303 if (seek->rangelow || seek->rangehigh) { in si470x_set_seek() 305 if (bands[band].rangelow == seek->rangelow && in si470x_set_seek() 306 bands[band].rangehigh == seek->rangehigh) in si470x_set_seek() 328 if (seek->wrap_around) in si470x_set_seek() 332 if (seek->seek_upward) in si470x_set_seek() 726 const struct v4l2_hw_freq_seek *seek) in si470x_vidioc_s_hw_freq_seek() argument 730 if (seek->tuner != 0) in si470x_vidioc_s_hw_freq_seek() 736 return si470x_set_seek(radio, seek); in si470x_vidioc_s_hw_freq_seek()
|
/Linux-v5.10/drivers/media/test-drivers/vimc/ |
D | vimc-debayer.c | 415 unsigned int i, seek, wlin, wcol; in vimc_deb_calc_rgb_sink() local 426 seek = vdeb->mean_win_size / 2; in vimc_deb_calc_rgb_sink() 432 vdeb->sd.name, lin, col, vdeb->sink_fmt.height, seek); in vimc_deb_calc_rgb_sink() 440 for (wlin = seek > lin ? 0 : lin - seek; in vimc_deb_calc_rgb_sink() 441 wlin < lin + seek + 1 && wlin < vdeb->sink_fmt.height; in vimc_deb_calc_rgb_sink() 450 for (wcol = seek > col ? 0 : col - seek; in vimc_deb_calc_rgb_sink() 451 wcol < col + seek + 1 && wcol < vdeb->sink_fmt.width; in vimc_deb_calc_rgb_sink()
|
/Linux-v5.10/net/sunrpc/ |
D | socklib.c | 206 size_t seek) in xprt_sendmsg() argument 208 if (seek) in xprt_sendmsg() 209 iov_iter_advance(&msg->msg_iter, seek); in xprt_sendmsg() 214 struct kvec *vec, size_t seek) in xprt_send_kvec() argument 217 return xprt_sendmsg(sock, msg, seek); in xprt_send_kvec()
|
D | xprtsock.c | 348 xs_sock_recvmsg(struct socket *sock, struct msghdr *msg, int flags, size_t seek) in xs_sock_recvmsg() argument 351 if (seek != 0) in xs_sock_recvmsg() 352 iov_iter_advance(&msg->msg_iter, seek); in xs_sock_recvmsg() 354 return ret > 0 ? ret + seek : ret; in xs_sock_recvmsg() 359 struct kvec *kvec, size_t count, size_t seek) in xs_read_kvec() argument 362 return xs_sock_recvmsg(sock, msg, flags, seek); in xs_read_kvec() 368 size_t seek) in xs_read_bvec() argument 371 return xs_sock_recvmsg(sock, msg, flags, seek); in xs_read_bvec() 384 xs_flush_bvec(const struct bio_vec *bvec, size_t count, size_t seek) in xs_flush_bvec() argument 391 bvec_iter_advance(bvec, &bi, seek & PAGE_MASK); in xs_flush_bvec() [all …]
|
D | svcsock.c | 228 static void svc_flush_bvec(const struct bio_vec *bvec, size_t size, size_t seek) in svc_flush_bvec() argument 231 .bi_size = size + seek, in svc_flush_bvec() 235 bvec_iter_advance(bvec, &bi, seek & PAGE_MASK); in svc_flush_bvec() 241 size_t seek) in svc_flush_bvec() argument 252 size_t seek) in svc_tcp_read_msg() argument 275 if (seek) { in svc_tcp_read_msg() 276 iov_iter_advance(&msg.msg_iter, seek); in svc_tcp_read_msg() 277 buflen -= seek; in svc_tcp_read_msg() 281 svc_flush_bvec(bvec, len, seek); in svc_tcp_read_msg()
|
/Linux-v5.10/Documentation/ABI/testing/ |
D | dev-kmsg | 43 and the seek position be updated to the next available record. 52 The device supports seek with the following parameters: 55 seek to the first entry in the buffer 57 seek after the last entry in the buffer 59 seek after the last record available at the time 62 Other seek operations or offsets are not supported because of
|
/Linux-v5.10/drivers/media/radio/ |
D | radio-si476x.c | 737 const struct v4l2_hw_freq_seek *seek) in si476x_radio_s_hw_freq_seek() argument 741 u32 rangelow = seek->rangelow, rangehigh = seek->rangehigh; in si476x_radio_s_hw_freq_seek() 747 if (seek->tuner != 0 || in si476x_radio_s_hw_freq_seek() 748 seek->type != V4L2_TUNER_RADIO) in si476x_radio_s_hw_freq_seek() 792 if (seek->rangehigh) { in si476x_radio_s_hw_freq_seek() 796 seek->rangehigh)); in si476x_radio_s_hw_freq_seek() 800 if (seek->rangelow) { in si476x_radio_s_hw_freq_seek() 804 seek->rangelow)); in si476x_radio_s_hw_freq_seek() 808 if (seek->spacing) { in si476x_radio_s_hw_freq_seek() 812 seek->spacing)); in si476x_radio_s_hw_freq_seek() [all …]
|
D | radio-mr800.c | 338 const struct v4l2_hw_freq_seek *seek) in vidioc_s_hw_freq_seek() argument 347 if (seek->tuner != 0 || !seek->wrap_around) in vidioc_s_hw_freq_seek() 359 seek->seek_upward ? AMRADIO_SET_SEARCH_UP : AMRADIO_SET_SEARCH_DOWN, in vidioc_s_hw_freq_seek()
|
/Linux-v5.10/tools/perf/ui/ |
D | browser.c | 259 browser->seek(browser, 0, SEEK_SET); in ui_browser__reset_index() 383 browser->seek(browser, browser->top_idx, SEEK_SET); in ui_browser__update_nr_entries() 429 browser->seek(browser, +1, SEEK_CUR); in ui_browser__run() 438 browser->seek(browser, -1, SEEK_CUR); in ui_browser__run() 463 browser->seek(browser, +offset, SEEK_CUR); in ui_browser__run() 476 browser->seek(browser, -offset, SEEK_CUR); in ui_browser__run() 488 browser->seek(browser, -offset, SEEK_END); in ui_browser__run()
|
D | browser.h | 30 void (*seek)(struct ui_browser *browser, off_t offset, int whence); member
|
/Linux-v5.10/fs/iomap/ |
D | Makefile | 16 seek.o
|
/Linux-v5.10/samples/bpf/ |
D | test_override_return.sh | 4 dd if=/dev/zero of=testfile.img bs=1M seek=1000 count=1
|
/Linux-v5.10/drivers/media/radio/wl128x/ |
D | fmdrv_v4l2.c | 386 const struct v4l2_hw_freq_seek *seek) in fm_v4l2_vidioc_s_hw_freq_seek() argument 402 ret = fm_rx_seek(fmdev, seek->seek_upward, seek->wrap_around, in fm_v4l2_vidioc_s_hw_freq_seek() 403 seek->spacing); in fm_v4l2_vidioc_s_hw_freq_seek()
|
/Linux-v5.10/tools/testing/selftests/sysctl/ |
D | sysctl.sh | 278 dd if="${TEST_FILE}" of="${TARGET}" bs=1 seek=1 skip=1 2>/dev/null 288 dd if="${TEST_FILE}" of="${TARGET}" bs=20 seek=2 2>/dev/null 564 dd if="${TEST_FILE}" of="${TARGET}" bs=1 seek=1 2>/dev/null
|
/Linux-v5.10/tools/perf/scripts/python/ |
D | mem-phys-addr.py | 85 f.seek(0, 0)
|
/Linux-v5.10/tools/perf/ui/browsers/ |
D | annotate.c | 352 browser->b.seek(&browser->b, offset, SEEK_CUR); in annotate_browser__toggle_source() 361 browser->b.seek(&browser->b, -offset, SEEK_CUR); in annotate_browser__toggle_source() 367 browser->b.seek(&browser->b, -offset, SEEK_CUR); in annotate_browser__toggle_source() 376 browser->b.seek(&browser->b, -offset, SEEK_CUR); in annotate_browser__toggle_source() 902 .seek = ui_browser__list_head_seek, in symbol__tui_annotate()
|
D | header.c | 87 .seek = ui_browser__argv_seek, in ui__list_menu()
|
D | map.c | 111 .seek = ui_browser__rb_tree_seek, in map__browse()
|
/Linux-v5.10/tools/testing/selftests/bpf/ |
D | test_sysctl.c | 35 int seek; member 180 .seek = 3, 207 .seek = 4, 1514 if (test->seek && lseek(fd, test->seek, SEEK_SET) == -1) { in access_sysctl() 1515 log_err("lseek(%d) failed", test->seek); in access_sysctl()
|
/Linux-v5.10/Documentation/filesystems/ext4/ |
D | overview.rst | 9 reducing seek times. The size of a block group is specified in
|
D | allocators.rst | 34 on the seek penalty when the filesystem first has to read a file's inode 35 to learn where the file's data blocks live and then seek over to the
|