/linux-4.1.27/sound/core/ |
D | pcm_compat.c | 103 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 …]
|
D | pcm_lib.c | 58 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 …]
|
D | pcm_native.c | 579 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 …]
|
D | pcm.c | 442 snd_iprintf(buffer, "boundary: %lu\n", runtime->boundary); in snd_pcm_substream_proc_sw_params_read()
|
/linux-4.1.27/mm/ |
D | dmapool.c | 51 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()
|
D | pagewalk.c | 128 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/ |
D | pageattr.c | 23 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/ |
D | pagetest.c | 43 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/ |
D | pcm-indirect.h | 57 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()
|
D | pcm.h | 381 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/ |
D | sram.c | 31 #define ROUND_DOWN(value,boundary) ((value) & (~((boundary)-1))) argument
|
/linux-4.1.27/drivers/media/platform/vivid/ |
D | vivid-vid-common.c | 622 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()
|
D | vivid-vid-common.h | 44 void rect_map_inside(struct v4l2_rect *r, const struct v4l2_rect *boundary);
|
/linux-4.1.27/drivers/acpi/acpica/ |
D | acmacros.h | 226 #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/ |
D | onenand_base.c | 275 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/ |
D | gus_mem.c | 141 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/ |
D | mpage.c | 478 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()
|
D | direct-io.c | 78 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/ |
D | sram.c | 50 #define ROUND_DOWN(value,boundary) ((value) & (~((boundary)-1))) argument
|
/linux-4.1.27/sound/drivers/ |
D | pcm-indirect2.c | 264 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/ |
D | romfs.txt | 68 : : 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
|
D | nilfs2.txt | 245 summary. The recovery code of nilfs2 looks this boundary information
|
D | ext2.txt | 259 boundary, but this is a legitimate layout in a SPARSE_SUPER filesystem.
|
D | relay.txt | 263 easily implement random-access-on-buffer-boundary schemes, which can
|
/linux-4.1.27/arch/metag/lib/ |
D | memset.S | 18 ! 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
|
D | memcpy.S | 82 ! Adjust the source pointer (A1.2) to the 8 byte boundary before its
|
/linux-4.1.27/arch/x86/ |
D | Makefile | 30 $(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)
|
D | Makefile.um | 24 cflags-y += $(call cc-option,-mpreferred-stack-boundary=2)
|
/linux-4.1.27/net/ipv4/ |
D | tcp_timer.c | 132 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/ |
D | radiotap-headers.txt | 52 - 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.
|
D | gianfar.txt | 35 to align the IP header to a 16-byte boundary, when supported by
|
D | filter.txt | 976 eBPF program is trying to access the data beyond the packet boundary,
|
D | can.txt | 274 The alignment of the (linear) payload data[] to a 64bit boundary
|
/linux-4.1.27/drivers/net/wireless/rtlwifi/rtl8192cu/ |
D | mac.c | 193 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()
|
D | mac.h | 39 bool rtl92c_init_llt_table(struct ieee80211_hw *hw, u32 boundary);
|
D | hw.c | 850 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/ |
D | elevator.c | 353 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/ |
D | unified-hierarchy.txt | 330 - 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/ |
D | Kconfig.platform | 16 boundary. However, if they are aligned on different boundaries
|
D | Kconfig | 235 will reduce software overhead at each page boundary, allow
|
/linux-4.1.27/Documentation/fb/ |
D | pxafb.txt | 94 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.
|
D | matroxfb.txt | 206 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/ |
D | sysfs-bus-iio-light-lm3533-als | 32 These thresholds correspond to the eight zone-boundary
|
D | sysfs-bus-iio | 1060 a 64 bit boundary. To obtain the clean value, shift right 2
|
/linux-4.1.27/include/linux/mtd/ |
D | onenand.h | 90 unsigned boundary[MAX_DIES]; member
|
/linux-4.1.27/drivers/staging/rtl8723au/hal/ |
D | usb_halinit.c | 493 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()
|
D | rtl8723a_hal_init.c | 1152 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/ |
D | checksum.S | 57 bt 21f ! Jump if alignment is boundary of 2bytes. 278 ! src and dest equally aligned, but to a two byte boundary.
|
D | copy_page.S | 173 ! Align dest to a 32 byte boundary
|
D | memcpy-sh4.S | 239 ! First align destination to a long word boundary.
|
/linux-4.1.27/Documentation/scsi/ |
D | hptiop.txt | 95 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.
|
D | ChangeLog.megaraid | 112 > 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.
|
D | aic79xx.txt | 76 - Align the SCB_TAG field on a 16byte boundary. This avoids 92 - Remove S/G splitting for segments that cross a 4GB boundary.
|
D | ChangeLog.ncr53c8xx | 351 Use a single alignment boundary (CACHE_LINE_SIZE) for data
|
D | ChangeLog.megaraid_sas | 77 4. Add array boundary check for SystemPD.
|
D | ncr53c8xx.txt | 1204 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/ |
D | mmu.txt | 61 5. The parent-bus-address value is rounded down to the nearest 256MB boundary
|
/linux-4.1.27/arch/x86/crypto/ |
D | crct10dif-pcl-asm_64.S | 80 # align stack to 16 byte boundary
|
D | sha256-avx2-asm.S | 542 and $-32, %rsp # align rsp to 32 byte boundary
|
/linux-4.1.27/fs/reiserfs/ |
D | bitmap.c | 144 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()
|
D | README | 101 that start on a node aligned boundary (there are reasons to want to node
|
/linux-4.1.27/drivers/net/wireless/rtlwifi/rtl8821ae/ |
D | hw.c | 1474 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/ |
D | fw-calling.txt | 10 for a 16 byte signature. That signature will be located on a 256-byte boundary.
|
/linux-4.1.27/Documentation/misc-devices/ |
D | c2port.txt | 42 boundary-scan testing on low pin-count Silicon Labs devices. Currently
|
/linux-4.1.27/Documentation/arm/ |
D | Booting | 132 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
|
D | README | 91 memory up to the next 32k boundary due to the size of the pages.
|
/linux-4.1.27/fs/ext4/ |
D | indirect.c | 74 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/ |
D | Kconfig | 138 every time execution crosses a page boundary), and you may wish
|
/linux-4.1.27/Documentation/devicetree/bindings/reserved-memory/ |
D | reserved-memory.txt | 39 - Address boundary for alignment of allocation.
|
/linux-4.1.27/drivers/scsi/aic7xxx/ |
D | aic7xxx_osm.h | 157 bus_size_t boundary; member
|
D | aic79xx_osm.h | 144 bus_size_t boundary; member
|
D | aic7xxx_osm.c | 829 bus_size_t alignment, bus_size_t boundary, in ahc_dma_tag_create() argument 849 dmat->boundary = boundary; in ahc_dma_tag_create()
|
D | aic79xx_osm.c | 934 bus_size_t alignment, bus_size_t boundary, in ahd_dma_tag_create() argument 954 dmat->boundary = boundary; in ahd_dma_tag_create()
|
D | aic79xx.seq | 452 * 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. */ \
|
D | aic79xx.reg | 2516 field DLZERO 0x04 /* FIFO data ends on packet boundary. */
|
D | aic7xxx.seq | 795 * If the ending address is on a cacheline boundary,
|
/linux-4.1.27/Documentation/netlabel/ |
D | draft-ietf-cipso-ipsecurity-01.txt | 119 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/ |
D | booting.txt | 48 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/ |
D | qe_firmware.txt | 229 '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/ |
D | pcm_oss.c | 999 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/ |
D | dma.c | 469 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/ |
D | inode.c | 160 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/ |
D | buffer_head.h | 127 BUFFER_FNS(Boundary, boundary)
|
/linux-4.1.27/drivers/staging/rtl8723au/include/ |
D | rtl8723a_hal.h | 491 s32 InitLLTTable23a(struct rtw_adapter *padapter, u32 boundary);
|
/linux-4.1.27/Documentation/x86/ |
D | entry_64.txt | 81 If we are at an interrupt or user-trap/gate-alike boundary then we can
|
/linux-4.1.27/Documentation/early-userspace/ |
D | buffer-format.txt | 26 ALGN(n) means padding with null bytes to an n-byte boundary
|
/linux-4.1.27/Documentation/ |
D | ramoops.txt | 55 region at 128 MB boundary:
|
D | DMA-API-HOWTO.txt | 416 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
|
D | unicode.txt | 99 located it at the end, on a 16-cell boundary in keeping with standard
|
D | xillybus.txt | 345 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
|
D | unaligned-memory-access.txt | 236 header is aligned on a four-byte boundary to optimise the IP stack. For
|
D | DMA-API.txt | 102 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
|
D | kprobes.txt | 365 does not validate if the kprobe.addr is at an instruction boundary.
|
D | kernel-parameters.txt | 2134 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/ |
D | sched-bwc.txt | 18 above at each period boundary. As threads consume this bandwidth it is
|
/linux-4.1.27/arch/sh/kernel/cpu/sh3/ |
D | entry.S | 290 ! Should be aligned page boundary.
|
/linux-4.1.27/Documentation/sound/oss/ |
D | README.modules | 81 because ISA DMA buffers must exist below the 16MB boundary and it is quite
|
D | PAS16 | 91 DMA buffers must exist below the 16MB boundary and it is quite
|
/linux-4.1.27/Documentation/s390/ |
D | kvm.txt | 49 page boundary. This hardware "limitation" allows us to have a few unique
|
D | monreader.txt | 134 start offset relative to a 4K page (frame) boundary.
|
D | Debugging390.txt | 555 area if crossing this boundary.
|
/linux-4.1.27/Documentation/vm/ |
D | pagemap.txt | 160 the read on an 8-byte boundary (e.g., if you sought an odd number of bytes
|
D | slub.txt | 223 the object boundary.
|
D | hugetlbpage.txt | 285 rounded down to HPAGE_SIZE boundary. The min_size option sets the minimum
|
/linux-4.1.27/Documentation/device-mapper/ |
D | verity.txt | 140 block boundary) are the hash blocks which are stored a depth at a time
|
/linux-4.1.27/include/uapi/sound/ |
D | asound.h | 408 snd_pcm_uframes_t boundary; /* pointers wrap point */ member
|
/linux-4.1.27/arch/x86/lib/ |
D | checksum_32.S | 62 jz 10f # Jump if alignment is boundary of 2 bytes.
|
/linux-4.1.27/Documentation/spi/ |
D | pxa2xx | 231 if rx_buf and tx_buf are aligned on 8 byte boundary then
|
D | spi-summary | 438 While "spi_device" would be the bottom boundary of the driver, the
|
/linux-4.1.27/fs/btrfs/ |
D | relocation.c | 153 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/ |
D | hid-sensor.txt | 10 hardware vendors to provide a consistent Plug And Play interface at the USB boundary,
|
/linux-4.1.27/fs/ext3/ |
D | inode.c | 343 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/ |
D | Kconfig | 158 the TBR register. It must be on 16MiB address boundary.
|
/linux-4.1.27/drivers/gpu/drm/nouveau/nvkm/engine/gr/fuc/ |
D | gpc.fuc | 223 // round up base/size to 256 byte boundary (for strand SWBASE)
|
/linux-4.1.27/Documentation/devicetree/ |
D | booting-without-of.txt | 187 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/ |
D | entry.S | 351 ;; This could happen if a write crosses a page-boundary and the
|
/linux-4.1.27/scripts/ |
D | spelling.txt | 174 boundry||boundary
|
/linux-4.1.27/arch/sparc/lib/ |
D | checksum_32.S | 347 andcc %o1, 4, %g0 ! dest aligned on 4 or 8 byte boundary?
|
/linux-4.1.27/drivers/net/ethernet/myricom/myri10ge/ |
D | myri10ge.c | 2830 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/ |
D | com.fuc | 208 // get a chunk of stack space, aligned to 256 byte boundary
|
/linux-4.1.27/firmware/keyspan_pda/ |
D | keyspan_pda.S | 187 .org 0x100H ; wants to be on a page boundary
|
D | xircom_pgs.S | 189 .org 0x100H ; wants to be on a page boundary
|
/linux-4.1.27/lib/ |
D | Kconfig.debug | 1716 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/ |
D | Kconfig | 265 DMA buffers must exist below the 16MB boundary and it is quite
|
/linux-4.1.27/drivers/net/wireless/brcm80211/brcmfmac/ |
D | cfg80211.c | 265 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/ |
D | Kconfig | 537 will reduce software overhead at each page boundary, allow
|
/linux-4.1.27/Documentation/block/ |
D | biodoc.txt | 672 - 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/ |
D | kernel-options.txt | 378 base address must be on a 256 byte boundary there, the latter because
|
/linux-4.1.27/arch/arm/ |
D | Kconfig | 244 of physical memory is at a 16MB boundary.
|