/openbmc/libcper/generator/sections/ |
H A D | gen-section-generic.c | 21 UINT8 *start_byte = (UINT8 *)*location; in generate_section_generic() local 29 *(start_byte + 12) &= 0x7; in generate_section_generic() 30 *((UINT16 *)(start_byte + 14)) = 0x0; in generate_section_generic() 34 UINT8 *byte = start_byte + 24 + i; in generate_section_generic()
|
/openbmc/linux/fs/iomap/ |
H A D | buffered-io.c | 986 struct folio *folio, loff_t start_byte, loff_t end_byte, in iomap_write_delalloc_ifs_punch() argument 1007 first_blk = offset_in_folio(folio, start_byte) >> blkbits; in iomap_write_delalloc_ifs_punch() 1023 loff_t *punch_start_byte, loff_t start_byte, loff_t end_byte, in iomap_write_delalloc_punch() argument 1032 if (start_byte > *punch_start_byte) { in iomap_write_delalloc_punch() 1034 start_byte - *punch_start_byte); in iomap_write_delalloc_punch() 1040 ret = iomap_write_delalloc_ifs_punch(inode, folio, start_byte, in iomap_write_delalloc_punch() 1073 loff_t *punch_start_byte, loff_t start_byte, loff_t end_byte, in iomap_write_delalloc_scan() argument 1076 while (start_byte < end_byte) { in iomap_write_delalloc_scan() 1082 start_byte >> PAGE_SHIFT); in iomap_write_delalloc_scan() 1084 start_byte = ALIGN_DOWN(start_byte, PAGE_SIZE) + in iomap_write_delalloc_scan() [all …]
|
/openbmc/linux/fs/btrfs/ |
H A D | compression.h | 86 unsigned long start_byte, size_t srclen, size_t destlen); 157 struct page *dest_page, unsigned long start_byte, size_t srclen, 167 struct page *dest_page, unsigned long start_byte, size_t srclen,
|
H A D | lzo.c | 428 struct page *dest_page, unsigned long start_byte, size_t srclen, in lzo_decompress() argument 462 if (out_len < start_byte) { in lzo_decompress() 472 bytes = min_t(unsigned long, destlen, out_len - start_byte); in lzo_decompress() 475 memcpy(kaddr, workspace->buf + start_byte, bytes); in lzo_decompress()
|
H A D | zstd.c | 619 struct page *dest_page, unsigned long start_byte, size_t srclen, in zstd_decompress() argument 673 if (total_out <= start_byte) in zstd_decompress() 676 if (total_out > start_byte && buf_start < start_byte) in zstd_decompress() 677 buf_offset = start_byte - buf_start; in zstd_decompress()
|
/openbmc/linux/fs/ext4/ |
H A D | ext4_jbd2.h | 421 struct inode *inode, loff_t start_byte, loff_t length) in ext4_jbd2_inode_add_write() argument 425 EXT4_I(inode)->jinode, start_byte, length); in ext4_jbd2_inode_add_write() 430 struct inode *inode, loff_t start_byte, loff_t length) in ext4_jbd2_inode_add_wait() argument 434 EXT4_I(inode)->jinode, start_byte, length); in ext4_jbd2_inode_add_wait()
|
H A D | inode.c | 730 loff_t start_byte = in ext4_map_blocks() local 736 start_byte, length); in ext4_map_blocks() 739 start_byte, length); in ext4_map_blocks()
|
/openbmc/linux/drivers/iommu/iommufd/ |
H A D | io_pagetable.c | 26 unsigned long start_byte; member 199 unsigned long start_byte, unsigned long length, in iopt_insert_area() argument 208 area->page_offset = start_byte % PAGE_SIZE; in iopt_insert_area() 216 area->pages_node.start = start_byte / PAGE_SIZE; in iopt_insert_area() 217 if (check_add_overflow(start_byte, length - 1, &area->pages_node.last)) in iopt_insert_area() 271 (uintptr_t)elm->pages->uptr + elm->start_byte, length); in iopt_alloc_area_pages() 292 elm->start_byte, elm->length, iommu_prot); in iopt_alloc_area_pages() 420 elm.start_byte = uptr - elm.pages->uptr; in iopt_map_user_pages() 458 elm->start_byte = iopt_area_start_byte(area, iter.cur_iova); in iopt_get_pages()
|
H A D | pages.c | 1831 int iopt_pages_rw_access(struct iopt_pages *pages, unsigned long start_byte, in iopt_pages_rw_access() argument 1834 unsigned long start_index = start_byte / PAGE_SIZE; in iopt_pages_rw_access() 1835 unsigned long last_index = (start_byte + length - 1) / PAGE_SIZE; in iopt_pages_rw_access() 1849 start_byte % PAGE_SIZE, data, in iopt_pages_rw_access() 1852 start_byte % PAGE_SIZE, data, length, in iopt_pages_rw_access() 1864 start_byte % PAGE_SIZE, data, in iopt_pages_rw_access() 1870 if (copy_to_user(pages->uptr + start_byte, data, length)) in iopt_pages_rw_access() 1873 if (copy_from_user(data, pages->uptr + start_byte, length)) in iopt_pages_rw_access()
|
H A D | io_pagetable.h | 229 int iopt_pages_rw_access(struct iopt_pages *pages, unsigned long start_byte,
|
/openbmc/linux/fs/jbd2/ |
H A D | transaction.c | 2634 unsigned long flags, loff_t start_byte, loff_t end_byte) in jbd2_journal_file_inode() argument 2650 jinode->i_dirty_start = min(jinode->i_dirty_start, start_byte); in jbd2_journal_file_inode() 2653 jinode->i_dirty_start = start_byte; in jbd2_journal_file_inode() 2689 struct jbd2_inode *jinode, loff_t start_byte, loff_t length) in jbd2_journal_inode_ranged_write() argument 2692 JI_WRITE_DATA | JI_WAIT_DATA, start_byte, in jbd2_journal_inode_ranged_write() 2693 start_byte + length - 1); in jbd2_journal_inode_ranged_write() 2697 loff_t start_byte, loff_t length) in jbd2_journal_inode_ranged_wait() argument 2700 start_byte, start_byte + length - 1); in jbd2_journal_inode_ranged_wait()
|
/openbmc/linux/fs/xfs/ |
H A D | xfs_bmap_util.h | 34 xfs_off_t start_byte, xfs_off_t end_byte);
|
H A D | xfs_bmap_util.c | 593 xfs_off_t start_byte, in xfs_bmap_punch_delalloc_range() argument 598 xfs_fileoff_t start_fsb = XFS_B_TO_FSBT(mp, start_byte); in xfs_bmap_punch_delalloc_range()
|
/openbmc/linux/mm/ |
H A D | filemap.c | 473 loff_t start_byte, loff_t end_byte) in filemap_range_has_page() argument 476 XA_STATE(xas, &mapping->i_pages, start_byte >> PAGE_SHIFT); in filemap_range_has_page() 479 if (end_byte < start_byte) in filemap_range_has_page() 504 loff_t start_byte, loff_t end_byte) in __filemap_fdatawait_range() argument 506 pgoff_t index = start_byte >> PAGE_SHIFT; in __filemap_fdatawait_range() 549 int filemap_fdatawait_range(struct address_space *mapping, loff_t start_byte, in filemap_fdatawait_range() argument 552 __filemap_fdatawait_range(mapping, start_byte, end_byte); in filemap_fdatawait_range() 572 loff_t start_byte, loff_t end_byte) in filemap_fdatawait_range_keep_errors() argument 574 __filemap_fdatawait_range(mapping, start_byte, end_byte); in filemap_fdatawait_range_keep_errors() 595 int file_fdatawait_range(struct file *file, loff_t start_byte, loff_t end_byte) in file_fdatawait_range() argument [all …]
|
/openbmc/linux/fs/ocfs2/ |
H A D | journal.h | 580 loff_t start_byte, loff_t length) in ocfs2_jbd2_inode_add_write() argument 584 start_byte, length); in ocfs2_jbd2_inode_add_write()
|
H A D | aops.c | 2029 loff_t start_byte = in ocfs2_write_end_nolock() local 2034 start_byte, length); in ocfs2_write_end_nolock()
|
H A D | file.c | 713 loff_t start_byte, in ocfs2_zero_start_ordered_transaction() argument 730 ret = ocfs2_jbd2_inode_add_write(handle, inode, start_byte, length); in ocfs2_zero_start_ordered_transaction()
|
H A D | alloc.c | 6809 loff_t start_byte = ((loff_t)page->index << PAGE_SHIFT) + from; in ocfs2_map_and_dirty_page() local 6831 start_byte, length); in ocfs2_map_and_dirty_page()
|
/openbmc/linux/include/linux/ |
H A D | pagemap.h | 42 loff_t start_byte, loff_t end_byte); 1232 loff_t start_byte, loff_t end_byte); 1249 loff_t start_byte, in filemap_range_needs_writeback() argument 1257 return filemap_range_has_writeback(mapping, start_byte, end_byte); in filemap_range_needs_writeback()
|
H A D | jbd2.h | 1576 struct jbd2_inode *inode, loff_t start_byte, 1579 struct jbd2_inode *inode, loff_t start_byte,
|
/openbmc/linux/drivers/net/ethernet/intel/i40e/ |
H A D | i40e_nvm.c | 1510 int start_byte = buff - (u8 *)hw->nvm_buff.va; in i40e_nvmupd_get_aq_result() local 1513 __func__, start_byte, start_byte + remainder); in i40e_nvmupd_get_aq_result()
|
/openbmc/linux/net/bluetooth/ |
H A D | msft.c | 36 __u8 start_byte; member 548 pattern->start_byte = entry->offset; in msft_add_monitor_sync()
|