Home
last modified time | relevance | path

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

/linux-4.1.27/sound/core/
Dpcm_compat.c103 u32 boundary; member
112 snd_pcm_uframes_t boundary; in recalculate_boundary() local
116 boundary = runtime->buffer_size; in recalculate_boundary()
117 while (boundary * 2 <= 0x7fffffffUL - runtime->buffer_size) in recalculate_boundary()
118 boundary *= 2; in recalculate_boundary()
119 return boundary; in recalculate_boundary()
126 snd_pcm_uframes_t boundary; in snd_pcm_ioctl_sw_params_compat() local
146 boundary = recalculate_boundary(substream->runtime); in snd_pcm_ioctl_sw_params_compat()
147 if (boundary && params.silence_size >= boundary) in snd_pcm_ioctl_sw_params_compat()
148 params.silence_size = substream->runtime->boundary; in snd_pcm_ioctl_sw_params_compat()
[all …]
Dpcm_lib.c58 if (runtime->silence_size < runtime->boundary) { in snd_pcm_playback_silence()
63 n += runtime->boundary; in snd_pcm_playback_silence()
86 runtime->boundary; in snd_pcm_playback_silence()
91 frames += runtime->boundary; in snd_pcm_playback_silence()
344 if (hw_base >= runtime->boundary) { in snd_pcm_update_hw_ptr0()
357 if (hw_base >= runtime->boundary) { in snd_pcm_update_hw_ptr0()
366 delta += runtime->boundary; in snd_pcm_update_hw_ptr0()
382 if (hw_base >= runtime->boundary) { in snd_pcm_update_hw_ptr0()
427 if (new_hw_ptr >= runtime->boundary) { in snd_pcm_update_hw_ptr0()
428 new_hw_ptr -= runtime->boundary; in snd_pcm_update_hw_ptr0()
[all …]
Dpcm_native.c579 runtime->boundary = runtime->buffer_size; in snd_pcm_hw_params()
580 while (runtime->boundary * 2 <= LONG_MAX - runtime->buffer_size) in snd_pcm_hw_params()
581 runtime->boundary *= 2; in snd_pcm_hw_params()
672 if (params->silence_size >= runtime->boundary) { in snd_pcm_sw_params()
692 params->boundary = runtime->boundary; in snd_pcm_sw_params()
2472 appl_ptr += runtime->boundary; in snd_pcm_playback_rewind()
2520 appl_ptr += runtime->boundary; in snd_pcm_capture_rewind()
2568 if (appl_ptr >= (snd_pcm_sframes_t)runtime->boundary) in snd_pcm_playback_forward()
2569 appl_ptr -= runtime->boundary; in snd_pcm_playback_forward()
2617 if (appl_ptr >= (snd_pcm_sframes_t)runtime->boundary) in snd_pcm_capture_forward()
[all …]
Dpcm.c442 snd_iprintf(buffer, "boundary: %lu\n", runtime->boundary); in snd_pcm_substream_proc_sw_params_read()
/linux-4.1.27/mm/
Ddmapool.c51 size_t boundary; member
132 size_t size, size_t align, size_t boundary) in dma_pool_create() argument
153 if (!boundary) in dma_pool_create()
154 boundary = allocation; in dma_pool_create()
155 else if ((boundary < size) || (boundary & (boundary - 1))) in dma_pool_create()
169 retval->boundary = boundary; in dma_pool_create()
209 unsigned int next_boundary = pool->boundary; in pool_initialise_page()
215 next_boundary += pool->boundary; in pool_initialise_page()
Dpagewalk.c128 unsigned long boundary = (addr & huge_page_mask(h)) + huge_page_size(h); in hugetlb_entry_end() local
129 return boundary < end ? boundary : end; in hugetlb_entry_end()
/linux-4.1.27/arch/s390/mm/
Dpageattr.c23 unsigned long boundary, size; in __storage_key_init_range() local
29 boundary = (start + size) & ~(size - 1); in __storage_key_init_range()
30 if (boundary <= end) { in __storage_key_init_range()
33 } while (start < boundary); in __storage_key_init_range()
/linux-4.1.27/drivers/mtd/tests/
Dpagetest.c43 static unsigned char *boundary; variable
111 memcpy(boundary, writebuf + mtd->erasesize - pgsize, pgsize); in verify_eraseblock()
112 prandom_bytes_state(&rnd_state, boundary + pgsize, pgsize); in verify_eraseblock()
113 if (memcmp(twopages, boundary, bufsize)) { in verify_eraseblock()
381 boundary = kmalloc(bufsize, GFP_KERNEL); in mtd_pagetest_init()
382 if (!boundary) in mtd_pagetest_init()
451 kfree(boundary); in mtd_pagetest_init()
/linux-4.1.27/include/sound/
Dpcm-indirect.h57 if (diff < -(snd_pcm_sframes_t) (runtime->boundary / 2)) in snd_pcm_indirect_playback_transfer()
58 diff += runtime->boundary; in snd_pcm_indirect_playback_transfer()
122 if (diff < -(snd_pcm_sframes_t) (runtime->boundary / 2)) in snd_pcm_indirect_capture_transfer()
123 diff += runtime->boundary; in snd_pcm_indirect_capture_transfer()
Dpcm.h381 snd_pcm_uframes_t boundary; /* pointers wrap point */ member
748 avail += runtime->boundary; in snd_pcm_playback_avail()
749 else if ((snd_pcm_uframes_t) avail >= runtime->boundary) in snd_pcm_playback_avail()
750 avail -= runtime->boundary; in snd_pcm_playback_avail()
764 avail += runtime->boundary; in snd_pcm_capture_avail()
827 if (runtime->stop_threshold >= runtime->boundary) in snd_pcm_playback_data()
/linux-4.1.27/arch/arm/plat-omap/
Dsram.c31 #define ROUND_DOWN(value,boundary) ((value) & (~((boundary)-1))) argument
/linux-4.1.27/drivers/media/platform/vivid/
Dvivid-vid-common.c622 void rect_map_inside(struct v4l2_rect *r, const struct v4l2_rect *boundary) in rect_map_inside() argument
624 rect_set_max_size(r, boundary); in rect_map_inside()
625 if (r->left < boundary->left) in rect_map_inside()
626 r->left = boundary->left; in rect_map_inside()
627 if (r->top < boundary->top) in rect_map_inside()
628 r->top = boundary->top; in rect_map_inside()
629 if (r->left + r->width > boundary->width) in rect_map_inside()
630 r->left = boundary->width - r->width; in rect_map_inside()
631 if (r->top + r->height > boundary->height) in rect_map_inside()
632 r->top = boundary->height - r->height; in rect_map_inside()
Dvivid-vid-common.h44 void rect_map_inside(struct v4l2_rect *r, const struct v4l2_rect *boundary);
/linux-4.1.27/drivers/acpi/acpica/
Dacmacros.h226 #define ACPI_ROUND_DOWN(value, boundary) (((acpi_size)(value)) & \ argument
227 (~(((acpi_size) boundary)-1)))
229 #define ACPI_ROUND_UP(value, boundary) ((((acpi_size)(value)) + \ argument
230 (((acpi_size) boundary)-1)) & \
231 (~(((acpi_size) boundary)-1)))
250 #define ACPI_ROUND_UP_TO(value, boundary) (((value) + ((boundary)-1)) / (boundary)) argument
/linux-4.1.27/drivers/mtd/onenand/
Donenand_base.c275 unsigned boundary, blk, die = 0; in flexonenand_block() local
282 boundary = this->boundary[die]; in flexonenand_block()
285 if (blk > boundary) in flexonenand_block()
286 blk = (blk + boundary + 1) >> 1; in flexonenand_block()
309 int die = 0, boundary; in flexonenand_addr() local
317 boundary = this->boundary[die]; in flexonenand_addr()
319 if (block > (boundary + 1)) in flexonenand_addr()
320 ofs += (loff_t)(block - boundary - 1) << (this->erase_shift - 1); in flexonenand_addr()
1226 int ret = 0, boundary = 0; in onenand_read_ops_nolock() local
1281 boundary = 1; in onenand_read_ops_nolock()
[all …]
/linux-4.1.27/sound/isa/gus/
Dgus_mem.c141 unsigned int idx, boundary; in snd_gf1_mem_find() local
156 while (pblock->ptr >= (boundary = info[idx].address + info[idx].size)) in snd_gf1_mem_find()
158 while (pblock->ptr + pblock->size >= (boundary = info[idx].address + info[idx].size)) in snd_gf1_mem_find()
160 ptr2 = boundary; in snd_gf1_mem_find()
164 if (pblock->next->ptr < boundary) in snd_gf1_mem_find()
/linux-4.1.27/fs/
Dmpage.c478 int boundary = 0; in __mpage_writepage() local
516 boundary = buffer_boundary(bh); in __mpage_writepage()
517 if (boundary) { in __mpage_writepage()
561 boundary = buffer_boundary(&map_bh); in __mpage_writepage()
626 if (boundary || (first_unmapped != blocks_per_page)) { in __mpage_writepage()
Ddirect-io.c78 int boundary; /* prev block is at a boundary */ member
406 sdio->boundary = 0; in dio_bio_submit()
659 sdio->boundary = 0; in dio_new_bio()
814 if (sdio->boundary) { in submit_page_section()
1021 sdio->boundary = buffer_boundary(map_bh); in do_direct_IO()
/linux-4.1.27/arch/arm/mach-omap2/
Dsram.c50 #define ROUND_DOWN(value,boundary) ((value) & (~((boundary)-1))) argument
/linux-4.1.27/sound/drivers/
Dpcm-indirect2.c264 if (diff < -(snd_pcm_sframes_t) (runtime->boundary / 2)) in snd_pcm_indirect2_playback_transfer()
265 diff += runtime->boundary; in snd_pcm_indirect2_playback_transfer()
426 if (diff < -(snd_pcm_sframes_t) (runtime->boundary / 2)) in snd_pcm_indirect2_capture_transfer()
427 diff += runtime->boundary; in snd_pcm_indirect2_capture_transfer()
/linux-4.1.27/Documentation/filesystems/
Dromfs.txt68 : : padded to 16 byte boundary.
87 must begin on a 16 byte boundary.
101 : : padded to 16 byte boundary
106 Since the file headers begin always at a 16 byte boundary, the lowest
142 padded to an 1024 byte boundary.
171 boundary, it is currently possibly suboptimal to read or execute files
Dnilfs2.txt245 summary. The recovery code of nilfs2 looks this boundary information
Dext2.txt259 boundary, but this is a legitimate layout in a SPARSE_SUPER filesystem.
Drelay.txt263 easily implement random-access-on-buffer-boundary schemes, which can
/linux-4.1.27/arch/metag/lib/
Dmemset.S18 ! start address is not aligned on an 8 byte boundary, so we
20 ! boundary, or the length of the string if less than 8, in D1Ar5
Dmemcpy.S82 ! Adjust the source pointer (A1.2) to the 8 byte boundary before its
/linux-4.1.27/arch/x86/
DMakefile30 $(call cc-option, -mpreferred-stack-boundary=2)
58 KBUILD_CFLAGS += $(call cc-option,-mpreferred-stack-boundary=2)
85 KBUILD_CFLAGS += $(call cc-option,-mpreferred-stack-boundary=3)
DMakefile.um24 cflags-y += $(call cc-option,-mpreferred-stack-boundary=2)
/linux-4.1.27/net/ipv4/
Dtcp_timer.c132 unsigned int boundary, in retransmits_timed_out() argument
149 if (boundary <= linear_backoff_thresh) in retransmits_timed_out()
150 timeout = ((2 << boundary) - 1) * rto_base; in retransmits_timed_out()
153 (boundary - linear_backoff_thresh) * TCP_RTO_MAX; in retransmits_timed_out()
/linux-4.1.27/Documentation/networking/
Dradiotap-headers.txt52 - the arguments must be aligned to a boundary of the argument size using
53 padding. So a u16 argument must start on the next u16 boundary if it isn't
54 already on one, a u32 must start on the next u32 boundary and so on.
Dgianfar.txt35 to align the IP header to a 16-byte boundary, when supported by
Dfilter.txt976 eBPF program is trying to access the data beyond the packet boundary,
Dcan.txt274 The alignment of the (linear) payload data[] to a 64bit boundary
/linux-4.1.27/drivers/net/wireless/rtlwifi/rtl8192cu/
Dmac.c193 bool rtl92c_init_llt_table(struct ieee80211_hw *hw, u32 boundary) in rtl92c_init_llt_table() argument
198 for (i = 0; i < (boundary - 1); i++) { in rtl92c_init_llt_table()
206 rst = rtl92c_llt_write(hw, (boundary - 1), 0xFF); in rtl92c_init_llt_table()
216 for (i = boundary; i < LLT_LAST_ENTRY_OF_TX_PKT_BUFFER; i++) { in rtl92c_init_llt_table()
224 rst = rtl92c_llt_write(hw, LLT_LAST_ENTRY_OF_TX_PKT_BUFFER, boundary); in rtl92c_init_llt_table()
Dmac.h39 bool rtl92c_init_llt_table(struct ieee80211_hw *hw, u32 boundary);
Dhw.c850 u32 boundary = 0; in _rtl92cu_init_mac() local
862 boundary = TX_PAGE_BOUNDARY; in _rtl92cu_init_mac()
864 boundary = (IS_NORMAL_CHIP(rtlhal->version)) in _rtl92cu_init_mac()
868 if (false == rtl92c_init_llt_table(hw, boundary)) { in _rtl92cu_init_mac()
/linux-4.1.27/block/
Delevator.c353 sector_t boundary; in elv_dispatch_sort() local
364 boundary = q->end_sector; in elv_dispatch_sort()
376 if (blk_rq_pos(rq) >= boundary) { in elv_dispatch_sort()
377 if (blk_rq_pos(pos) < boundary) in elv_dispatch_sort()
380 if (blk_rq_pos(pos) >= boundary) in elv_dispatch_sort()
/linux-4.1.27/Documentation/cgroups/
Dunified-hierarchy.txt330 - The original lower boundary, the soft limit, is defined as a limit
344 The memory.low boundary on the other hand is a top-down allocated
349 preferred reclaim pass. This allows the new low boundary to be
357 - The original high boundary, the hard limit, is defined as a strict
368 The memory.high boundary on the other hand can be set much more
371 OOM killer. As a result, a high boundary that is chosen too
378 breakdown of reclaim progress within the group, the high boundary
386 many different ways. For example, the upper boundary hit count is
389 lower boundary / soft limit events have to be counted by first
/linux-4.1.27/arch/microblaze/
DKconfig.platform16 boundary. However, if they are aligned on different boundaries
DKconfig235 will reduce software overhead at each page boundary, allow
/linux-4.1.27/Documentation/fb/
Dpxafb.txt94 b. line length of overlay(s) must be on a 32-bit word boundary,
101 word boundary, otherwise the fb_check_var() will just fail.
Dmatroxfb.txt206 cross4MB - enables that pixel line can cross 4MB boundary. It is default for
208 nocross4MB - pixel line must not cross 4MB boundary. It is default for
244 upper:X - top boundary: lines between end of VSYNC pulse and start of first
246 lower:X - bottom boundary: lines between end of picture and start of VSYNC
250 left:X - left boundary: pixels between end of HSYNC pulse and first pixel.
252 right:X - right boundary: pixels between end of picture and start of HSYNC
/linux-4.1.27/Documentation/ABI/testing/
Dsysfs-bus-iio-light-lm3533-als32 These thresholds correspond to the eight zone-boundary
Dsysfs-bus-iio1060 a 64 bit boundary. To obtain the clean value, shift right 2
/linux-4.1.27/include/linux/mtd/
Donenand.h90 unsigned boundary[MAX_DIES]; member
/linux-4.1.27/drivers/staging/rtl8723au/hal/
Dusb_halinit.c493 u32 boundary; in rtl8723au_hal_init() local
540 boundary = TX_PAGE_BOUNDARY; in rtl8723au_hal_init()
543 boundary = WMM_NORMAL_TX_PAGE_BOUNDARY; in rtl8723au_hal_init()
547 status = InitLLTTable23a(Adapter, boundary); in rtl8723au_hal_init()
Drtl8723a_hal_init.c1152 int InitLLTTable23a(struct rtw_adapter *padapter, u32 boundary) in InitLLTTable23a() argument
1156 u32 txpktbuf_bndy = boundary; in InitLLTTable23a()
/linux-4.1.27/arch/sh/lib/
Dchecksum.S57 bt 21f ! Jump if alignment is boundary of 2bytes.
278 ! src and dest equally aligned, but to a two byte boundary.
Dcopy_page.S173 ! Align dest to a 32 byte boundary
Dmemcpy-sh4.S239 ! First align destination to a long word boundary.
/linux-4.1.27/Documentation/scsi/
Dhptiop.txt95 Requests allocated in host memory must be aligned on 32-bytes boundary.
135 Requests allocated in host memory must be aligned on 32-bytes boundary.
DChangeLog.megaraid112 > boundary. this causes this messages.
114 > of member fit 32 bit boundary even if packed is specified.
117 > I Add 32 bit dummy member to fit 64 bit boundary. I tested.
Daic79xx.txt76 - Align the SCB_TAG field on a 16byte boundary. This avoids
92 - Remove S/G splitting for segments that cross a 4GB boundary.
DChangeLog.ncr53c8xx351 Use a single alignment boundary (CACHE_LINE_SIZE) for data
DChangeLog.megaraid_sas77 4. Add array boundary check for SystemPD.
Dncr53c8xx.txt1204 Write and Invalidate Command at a not cache-line-aligned 4 DWORDS boundary.
1224 boundary (Pentium Cache Line Size), and so is immune to this chip bug, at
/linux-4.1.27/Documentation/xtensa/
Dmmu.txt61 5. The parent-bus-address value is rounded down to the nearest 256MB boundary
/linux-4.1.27/arch/x86/crypto/
Dcrct10dif-pcl-asm_64.S80 # align stack to 16 byte boundary
Dsha256-avx2-asm.S542 and $-32, %rsp # align rsp to 32 byte boundary
/linux-4.1.27/fs/reiserfs/
Dbitmap.c144 unsigned int bmap_n, int *beg, int boundary, in scan_bitmap_block() argument
177 ((unsigned long *)(bh->b_data), boundary, *beg); in scan_bitmap_block()
183 if (*beg + min > boundary) { in scan_bitmap_block()
192 if (end >= *beg + max || end >= boundary in scan_bitmap_block()
DREADME101 that start on a node aligned boundary (there are reasons to want to node
/linux-4.1.27/drivers/net/wireless/rtlwifi/rtl8821ae/
Dhw.c1474 static bool _rtl8821ae_init_llt_table(struct ieee80211_hw *hw, u32 boundary) in _rtl8821ae_init_llt_table() argument
1478 u32 txpktbuf_bndy = boundary; in _rtl8821ae_init_llt_table()
1505 static bool _rtl8821ae_dynamic_rqpn(struct ieee80211_hw *hw, u32 boundary, in _rtl8821ae_dynamic_rqpn() argument
1519 boundary, npq_rqpn_value, rqpn_val); in _rtl8821ae_dynamic_rqpn()
1618 rtl_write_byte(rtlpriv, REG_TDECTRL + 1, (u8)boundary); in _rtl8821ae_dynamic_rqpn()
1619 rtl_write_byte(rtlpriv, REG_TXPKTBUF_BCNQ_BDNY, (u8)boundary); in _rtl8821ae_dynamic_rqpn()
1620 rtl_write_byte(rtlpriv, REG_TXPKTBUF_MGQ_BDNY, (u8)boundary); in _rtl8821ae_dynamic_rqpn()
1625 (u8)boundary); in _rtl8821ae_dynamic_rqpn()
1627 rtl_write_word(rtlpriv, REG_TRXFF_BNDY, boundary); in _rtl8821ae_dynamic_rqpn()
1631 if (!_rtl8821ae_init_llt_table(hw, boundary)) { in _rtl8821ae_dynamic_rqpn()
[all …]
/linux-4.1.27/Documentation/video4linux/cx2341x/
Dfw-calling.txt10 for a 16 byte signature. That signature will be located on a 256-byte boundary.
/linux-4.1.27/Documentation/misc-devices/
Dc2port.txt42 boundary-scan testing on low pin-count Silicon Labs devices. Currently
/linux-4.1.27/Documentation/arm/
DBooting132 A safe location is just above the 128MiB boundary from start of RAM.
146 be loaded just above the 128MiB boundary from the start of RAM as
DREADME91 memory up to the next 32k boundary due to the size of the pages.
/linux-4.1.27/fs/ext4/
Dindirect.c74 ext4_lblk_t offsets[4], int *boundary) in ext4_block_to_path() argument
107 if (boundary) in ext4_block_to_path()
108 *boundary = final - 1 - (i_block & (ptrs - 1)); in ext4_block_to_path()
/linux-4.1.27/arch/powerpc/platforms/8xx/
DKconfig138 every time execution crosses a page boundary), and you may wish
/linux-4.1.27/Documentation/devicetree/bindings/reserved-memory/
Dreserved-memory.txt39 - Address boundary for alignment of allocation.
/linux-4.1.27/drivers/scsi/aic7xxx/
Daic7xxx_osm.h157 bus_size_t boundary; member
Daic79xx_osm.h144 bus_size_t boundary; member
Daic7xxx_osm.c829 bus_size_t alignment, bus_size_t boundary, in ahc_dma_tag_create() argument
849 dmat->boundary = boundary; in ahc_dma_tag_create()
Daic79xx_osm.c934 bus_size_t alignment, bus_size_t boundary, in ahd_dma_tag_create() argument
954 dmat->boundary = boundary; in ahd_dma_tag_create()
Daic79xx.seq452 * Don't cross an ADB or Cachline boundary when DMA'ing
456 * something other than an 8byte aligned boundary. In
1985 * not sitting on a packet boundary, we are in an overrun
1992 /* Not on a packet boundary. */ \
Daic79xx.reg2516 field DLZERO 0x04 /* FIFO data ends on packet boundary. */
Daic7xxx.seq795 * If the ending address is on a cacheline boundary,
/linux-4.1.27/Documentation/netlabel/
Ddraft-ietf-cipso-ipsecurity-01.txt119 byte boundary.
152 octet boundary. The tag types defined in this document contain alignment
236 is to align the category bitmap field on an even octet boundary. This will
322 is to align the category field on an even octet boundary. This will
385 is to align the category range field on an even octet boundary. This will
/linux-4.1.27/Documentation/arm64/
Dbooting.txt48 The device tree blob (dtb) must be placed on an 8-byte boundary within
50 cross a 2-megabyte boundary. This is to allow the kernel to map the
/linux-4.1.27/Documentation/powerpc/
Dqe_firmware.txt229 'extended_modes' field is aligned on a 64-bit boundary.
271 on a 64-bit boundary, and this can only happen if the size of
/linux-4.1.27/sound/core/oss/
Dpcm_oss.c999 sw_params->start_threshold = runtime->boundary; in snd_pcm_oss_change_params()
1003 sw_params->stop_threshold = runtime->boundary; in snd_pcm_oss_change_params()
1974 appl_ptr %= runtime->boundary; in snd_pcm_oss_simulate_fill()
2014 runtime->start_threshold = runtime->boundary; in snd_pcm_oss_set_trigger()
2035 runtime->start_threshold = runtime->boundary; in snd_pcm_oss_set_trigger()
2128 n += runtime->boundary; in snd_pcm_oss_get_ptr()
2834 runtime->stop_threshold = runtime->boundary; in snd_pcm_oss_mmap()
/linux-4.1.27/drivers/net/wireless/brcm80211/brcmsmac/
Ddma.c469 static void *dma_ringalloc(struct dma_info *di, u32 boundary, uint size, in dma_ringalloc() argument
483 if (((desc_strtaddr + size - 1) & boundary) != (desc_strtaddr in dma_ringalloc()
484 & boundary)) { in dma_ringalloc()
/linux-4.1.27/fs/ext2/
Dinode.c160 long i_block, int offsets[4], int *boundary) in ext2_block_to_path() argument
195 if (boundary) in ext2_block_to_path()
196 *boundary = final - 1 - (i_block & (ptrs - 1)); in ext2_block_to_path()
/linux-4.1.27/include/linux/
Dbuffer_head.h127 BUFFER_FNS(Boundary, boundary)
/linux-4.1.27/drivers/staging/rtl8723au/include/
Drtl8723a_hal.h491 s32 InitLLTTable23a(struct rtw_adapter *padapter, u32 boundary);
/linux-4.1.27/Documentation/x86/
Dentry_64.txt81 If we are at an interrupt or user-trap/gate-alike boundary then we can
/linux-4.1.27/Documentation/early-userspace/
Dbuffer-format.txt26 ALGN(n) means padding with null bytes to an n-byte boundary
/linux-4.1.27/Documentation/
Dramoops.txt55 region at 128 MB boundary:
DDMA-API-HOWTO.txt416 buffer you receive will not cross a 64K boundary.
437 pool = dma_pool_create(name, dev, size, align, boundary);
442 power of two). If your device has no boundary crossing restrictions,
443 pass 0 for boundary; passing 4096 says memory allocated from this pool
632 ends and the second one starts on a page boundary - in fact this is a huge
Dunicode.txt99 located it at the end, on a 16-cell boundary in keeping with standard
Dxillybus.txt345 In order to simplify the logic that prevents illegal boundary crossings of
347 it must not cross a 4kB boundary. Otherwise, it must be 4kB aligned. The
Dunaligned-memory-access.txt236 header is aligned on a four-byte boundary to optimise the IP stack. For
DDMA-API.txt102 in bytes, and must be a power of two). If your device has no boundary
235 boundary and end exactly on one (to prevent two separately mapped
Dkprobes.txt365 does not validate if the kprobe.addr is at an instruction boundary.
Dkernel-parameters.txt2134 boundary - index of last SLC block on Flex-OneNAND.
2136 lock - Configure if Flex-OneNAND boundary should be locked.
2137 Once locked, the boundary cannot be changed.
/linux-4.1.27/Documentation/scheduler/
Dsched-bwc.txt18 above at each period boundary. As threads consume this bandwidth it is
/linux-4.1.27/arch/sh/kernel/cpu/sh3/
Dentry.S290 ! Should be aligned page boundary.
/linux-4.1.27/Documentation/sound/oss/
DREADME.modules81 because ISA DMA buffers must exist below the 16MB boundary and it is quite
DPAS1691 DMA buffers must exist below the 16MB boundary and it is quite
/linux-4.1.27/Documentation/s390/
Dkvm.txt49 page boundary. This hardware "limitation" allows us to have a few unique
Dmonreader.txt134 start offset relative to a 4K page (frame) boundary.
DDebugging390.txt555 area if crossing this boundary.
/linux-4.1.27/Documentation/vm/
Dpagemap.txt160 the read on an 8-byte boundary (e.g., if you sought an odd number of bytes
Dslub.txt223 the object boundary.
Dhugetlbpage.txt285 rounded down to HPAGE_SIZE boundary. The min_size option sets the minimum
/linux-4.1.27/Documentation/device-mapper/
Dverity.txt140 block boundary) are the hash blocks which are stored a depth at a time
/linux-4.1.27/include/uapi/sound/
Dasound.h408 snd_pcm_uframes_t boundary; /* pointers wrap point */ member
/linux-4.1.27/arch/x86/lib/
Dchecksum_32.S62 jz 10f # Jump if alignment is boundary of 2 bytes.
/linux-4.1.27/Documentation/spi/
Dpxa2xx231 if rx_buf and tx_buf are aligned on 8 byte boundary then
Dspi-summary438 While "spi_device" would be the bottom boundary of the driver, the
/linux-4.1.27/fs/btrfs/
Drelocation.c153 u64 boundary[MAX_EXTENTS]; member
3026 BUG_ON(cluster->start != cluster->boundary[0]);
3035 start = cluster->boundary[nr] - offset;
3037 end = cluster->boundary[nr + 1] - 1 - offset;
3174 page_start + offset == cluster->boundary[nr]) {
3217 cluster->boundary[cluster->nr] = extent_key->objectid;
/linux-4.1.27/Documentation/hid/
Dhid-sensor.txt10 hardware vendors to provide a consistent Plug And Play interface at the USB boundary,
/linux-4.1.27/fs/ext3/
Dinode.c343 long i_block, int offsets[4], int *boundary) in ext3_block_to_path() argument
376 if (boundary) in ext3_block_to_path()
377 *boundary = final - 1 - (i_block & (ptrs - 1)); in ext3_block_to_path()
/linux-4.1.27/arch/mn10300/
DKconfig158 the TBR register. It must be on 16MiB address boundary.
/linux-4.1.27/drivers/gpu/drm/nouveau/nvkm/engine/gr/fuc/
Dgpc.fuc223 // round up base/size to 256 byte boundary (for strand SWBASE)
/linux-4.1.27/Documentation/devicetree/
Dbooting-without-of.txt187 boundary.
310 aligned on a 64 bit boundary.
511 byte boundary.
654 * [align gap to next 4 bytes boundary]
661 * [align gap to next 4 bytes boundary]
/linux-4.1.27/arch/cris/arch-v10/kernel/
Dentry.S351 ;; This could happen if a write crosses a page-boundary and the
/linux-4.1.27/scripts/
Dspelling.txt174 boundry||boundary
/linux-4.1.27/arch/sparc/lib/
Dchecksum_32.S347 andcc %o1, 4, %g0 ! dest aligned on 4 or 8 byte boundary?
/linux-4.1.27/drivers/net/ethernet/myricom/myri10ge/
Dmyri10ge.c2830 int cum_len, seglen, boundary, rdma_count; in myri10ge_xmit() local
2964 boundary = in myri10ge_xmit()
2966 seglen = boundary - low; in myri10ge_xmit()
/linux-4.1.27/drivers/gpu/drm/nouveau/nvkm/engine/ce/fuc/
Dcom.fuc208 // get a chunk of stack space, aligned to 256 byte boundary
/linux-4.1.27/firmware/keyspan_pda/
Dkeyspan_pda.S187 .org 0x100H ; wants to be on a page boundary
Dxircom_pgs.S189 .org 0x100H ; wants to be on a page boundary
/linux-4.1.27/lib/
DKconfig.debug1716 tristate "Test user/kernel boundary protections"
1722 user/kernel boundary testing is working. If it fails to load,
1723 a regression has been detected in the user/kernel memory boundary
/linux-4.1.27/sound/oss/
DKconfig265 DMA buffers must exist below the 16MB boundary and it is quite
/linux-4.1.27/drivers/net/wireless/brcm80211/brcmfmac/
Dcfg80211.c265 uint boundary; in brcmf_mw_to_qdbm() local
280 boundary = nqdBm_to_mW_map[qdbm] + (nqdBm_to_mW_map[qdbm + 1] - in brcmf_mw_to_qdbm()
282 if (mw_uint < boundary) in brcmf_mw_to_qdbm()
/linux-4.1.27/arch/powerpc/
DKconfig537 will reduce software overhead at each page boundary, allow
/linux-4.1.27/Documentation/block/
Dbiodoc.txt672 - Prevents a clustered segment from crossing a 4GB mem boundary
707 and transparent mapping of the next bio segment when a segment boundary
/linux-4.1.27/Documentation/m68k/
Dkernel-options.txt378 base address must be on a 256 byte boundary there, the latter because
/linux-4.1.27/arch/arm/
DKconfig244 of physical memory is at a 16MB boundary.