Home
last modified time | relevance | path

Searched refs:boundary (Results 1 – 25 of 171) sorted by relevance

1234567

/linux/include/media/
H A Dv4l2-rect.h59 const struct v4l2_rect *boundary) in v4l2_rect_map_inside() argument
61 v4l2_rect_set_max_size(r, boundary); in v4l2_rect_map_inside()
62 if (r->left < boundary->left) in v4l2_rect_map_inside()
63 r->left = boundary->left; in v4l2_rect_map_inside()
64 if (r->top < boundary->top) in v4l2_rect_map_inside()
65 r->top = boundary->top; in v4l2_rect_map_inside()
66 if (r->left + r->width > boundary->left + boundary->width) in v4l2_rect_map_inside()
67 r->left = boundary->left + boundary->width - r->width; in v4l2_rect_map_inside()
68 if (r->top + r->height > boundary->top + boundary->height) in v4l2_rect_map_inside()
69 r->top = boundary->top + boundary->height - r->height; in v4l2_rect_map_inside()
/linux/mm/
H A Ddmapool_test.c19 size_t boundary; member
23 { .size = 16, .align = 16, .boundary = 0 },
24 { .size = 64, .align = 64, .boundary = 0 },
25 { .size = 256, .align = 256, .boundary = 0 },
26 { .size = 1024, .align = 1024, .boundary = 0 },
27 { .size = 4096, .align = 4096, .boundary = 0 },
28 { .size = 68, .align = 32, .boundary = 4096 },
74 parms->align, parms->boundary); in dmapool_test_block()
/linux/sound/core/
H A Dpcm_compat.c80 u32 boundary; member
90 snd_pcm_uframes_t boundary; in snd_pcm_ioctl_sw_params_compat() local
110 boundary = recalculate_boundary(substream->runtime); in snd_pcm_ioctl_sw_params_compat()
111 if (boundary && params.silence_size >= boundary) in snd_pcm_ioctl_sw_params_compat()
112 params.silence_size = substream->runtime->boundary; in snd_pcm_ioctl_sw_params_compat()
116 if (boundary && put_user(boundary, &src->boundary)) in snd_pcm_ioctl_sw_params_compat()
271 runtime->boundary = new_boundary; in snd_pcm_ioctl_hw_params_compat()
413 snd_pcm_uframes_t boundary; in snd_pcm_ioctl_sync_ptr_x32() local
428 boundary = recalculate_boundary(runtime); in snd_pcm_ioctl_sync_ptr_x32()
429 if (!boundary) in snd_pcm_ioctl_sync_ptr_x32()
[all …]
H A Dpcm_lib.c47 delta += runtime->boundary; in update_silence_vars()
70 if (runtime->silence_size < runtime->boundary) { in snd_pcm_playback_silence()
80 noise_dist += runtime->boundary; in snd_pcm_playback_silence()
103 avail += runtime->boundary; in snd_pcm_playback_silence()
352 if (hw_base >= runtime->boundary) { in snd_pcm_update_hw_ptr0()
365 if (hw_base >= runtime->boundary) { in snd_pcm_update_hw_ptr0()
374 delta += runtime->boundary; in snd_pcm_update_hw_ptr0()
390 if (hw_base >= runtime->boundary) { in snd_pcm_update_hw_ptr0()
435 if (new_hw_ptr >= runtime->boundary) { in snd_pcm_update_hw_ptr0()
436 new_hw_ptr -= runtime->boundary; in snd_pcm_update_hw_ptr0()
[all …]
/linux/arch/powerpc/mm/nohash/
H A De500.c169 unsigned long boundary; in map_mem_in_cams_addr() local
172 boundary = (unsigned long)(_sinittext - _stext); in map_mem_in_cams_addr()
174 boundary = ram; in map_mem_in_cams_addr()
177 for (i = 0; boundary && i < max_cam_idx; i++) { in map_mem_in_cams_addr()
181 cam_sz = calc_cam_sz(boundary, virt, phys); in map_mem_in_cams_addr()
185 boundary -= cam_sz; in map_mem_in_cams_addr()
/linux/include/sound/
H A Dpcm-indirect.h44 if (diff < -(snd_pcm_sframes_t) (runtime->boundary / 2)) in snd_pcm_indirect_playback_transfer()
45 diff += runtime->boundary; in snd_pcm_indirect_playback_transfer()
117 if (diff < -(snd_pcm_sframes_t) (runtime->boundary / 2)) in snd_pcm_indirect_capture_transfer()
118 diff += runtime->boundary; in snd_pcm_indirect_capture_transfer()
/linux/fs/netfs/
H A Dwrite_retry.c60 bool boundary = false; in netfs_retry_write_stream() local
117 boundary = true; in netfs_retry_write_stream()
181 if (!len && boundary) { in netfs_retry_write_stream()
183 boundary = false; in netfs_retry_write_stream()
/linux/Documentation/ABI/testing/
H A Ddebugfs-scmi-raw13 (receiving an EOF at each message boundary).
31 (receiving an EOF at each message boundary).
47 (receiving an EOF at each message boundary).
67 (receiving an EOF at each message boundary).
78 each message boundary).
89 each message boundary).
118 (receiving an EOF at each message boundary).
145 (receiving an EOF at each message boundary).
171 (receiving an EOF at each message boundary).
200 (receiving an EOF at each message boundary).
/linux/Documentation/filesystems/ext4/
H A Dverity.rst14 - Zero-padding to the next 65536-byte boundary. This padding need not
23 - Zero-padding to the next filesystem block boundary.
30 block boundary.
/linux/drivers/acpi/acpica/
H A Dacmacros.h201 #define ACPI_ROUND_DOWN(value, boundary) (((acpi_size)(value)) & \ argument
202 (~(((acpi_size) boundary)-1)))
204 #define ACPI_ROUND_UP(value, boundary) ((((acpi_size)(value)) + \ argument
205 (((acpi_size) boundary)-1)) & \
206 (~(((acpi_size) boundary)-1)))
225 #define ACPI_ROUND_UP_TO(value, boundary) (((value) + ((boundary)-1)) / (boundary)) argument
/linux/arch/arm/mach-omap1/
H A Dsram-init.c26 #define ROUND_DOWN(value, boundary) ((value) & (~((boundary) - 1))) argument
/linux/fs/
H A Dmpage.c468 int boundary = 0; in mpage_write_folio() local
508 boundary = buffer_boundary(bh); in mpage_write_folio()
509 if (boundary) { in mpage_write_folio()
562 boundary = buffer_boundary(&map_bh); in mpage_write_folio()
623 if (boundary || (first_unmapped != blocks_per_folio)) { in mpage_write_folio()
/linux/fs/ext2/
H A Dinode.c164 long i_block, int offsets[4], int *boundary) in ext2_block_to_path() argument
199 if (boundary) in ext2_block_to_path()
200 *boundary = final - 1 - (i_block & (ptrs - 1)); in ext2_block_to_path()
626 u32 *bno, bool *new, bool *boundary, in ext2_get_blocks() argument
769 *boundary = true; in ext2_get_blocks()
787 bool new = false, boundary = false; in ext2_get_block() local
791 ret = ext2_get_blocks(inode, iblock, max_blocks, &bno, &new, &boundary, in ext2_get_block()
800 if (boundary) in ext2_get_block()
813 bool new = false, boundary = false; in ext2_iomap_begin() local
836 &bno, &new, &boundary, create); in ext2_iomap_begin()
/linux/Documentation/filesystems/
H A Dromfs.rst72 : : padded to 16 byte boundary.
91 must begin on a 16 byte boundary::
105 : : padded to 16 byte boundary
110 Since the file headers begin always at a 16 byte boundary, the lowest
149 padded to an 1024 byte boundary.
178 boundary, it is currently possibly suboptimal to read or execute files
/linux/arch/s390/mm/
H A Dpageattr.c28 unsigned long boundary, size; in __storage_key_init_range() local
34 boundary = (start + size) & ~(size - 1); in __storage_key_init_range()
35 if (boundary <= end) { in __storage_key_init_range()
38 } while (start < boundary); in __storage_key_init_range()
/linux/arch/arm/mach-omap2/
H A Dsram.c48 #define ROUND_DOWN(value, boundary) ((value) & (~((boundary) - 1))) argument
/linux/drivers/net/wireless/realtek/rtlwifi/rtl8192cu/
H A Dmac.c154 bool rtl92c_init_llt_table(struct ieee80211_hw *hw, u32 boundary) in rtl92c_init_llt_table() argument
159 for (i = 0; i < (boundary - 1); i++) { in rtl92c_init_llt_table()
167 rst = rtl92c_llt_write(hw, (boundary - 1), 0xFF); in rtl92c_init_llt_table()
177 for (i = boundary; i < LLT_LAST_ENTRY_OF_TX_PKT_BUFFER; i++) { in rtl92c_init_llt_table()
185 rst = rtl92c_llt_write(hw, LLT_LAST_ENTRY_OF_TX_PKT_BUFFER, boundary); in rtl92c_init_llt_table()
/linux/arch/arm/boot/dts/nxp/imx/
H A Dimx6dl-nit6xlite.dts12 compatible = "boundary,imx6dl-nit6xlite", "fsl,imx6dl";
H A Dimx6q-nitrogen6_max.dts12 compatible = "boundary,imx6q-nitrogen6_max", "fsl,imx6q";
H A Dimx6q-nitrogen6_som2.dts12 compatible = "boundary,imx6q-nitrogen6_som2", "fsl,imx6q";
H A Dimx6qp-nitrogen6_som2.dts13 compatible = "boundary,imx6qp-nitrogen6_som2", "fsl,imx6qp";
H A Dimx6qp-nitrogen6_max.dts13 compatible = "boundary,imx6qp-nitrogen6_max", "fsl,imx6qp";
H A Dimx6dl-nitrogen6x.dts14 compatible = "boundary,imx6dl-nitrogen6x", "fsl,imx6dl";
H A Dimx6q-nitrogen6x.dts14 compatible = "boundary,imx6q-nitrogen6x", "fsl,imx6q";
/linux/Documentation/networking/
H A Dradiotap-headers.rst57 - the arguments must be aligned to a boundary of the argument size using
58 padding. So a u16 argument must start on the next u16 boundary if it isn't
59 already on one, a u32 must start on the next u32 boundary and so on.

1234567