| /u-boot/fs/ |
| A D | fs_internal.c | 18 lbaint_t sector, int byte_offset, int byte_len, char *buf) in fs_devread() argument 30 if ((sector + ((byte_offset + byte_len - 1) >> log2blksz)) in fs_devread() 38 sector += byte_offset >> log2blksz; in fs_devread() 39 byte_offset &= blk->blksz - 1; in fs_devread() 41 log_debug(" <" LBAFU ", %d, %d>\n", sector, byte_offset, byte_len); in fs_devread() 43 if (byte_offset != 0) { in fs_devread() 51 readlen = min((int)blk->blksz - byte_offset, in fs_devread() 53 memcpy(buf, sec_buf + byte_offset, readlen); in fs_devread()
|
| /u-boot/fs/btrfs/ |
| A D | dev.c | 19 int byte_offset; in btrfs_devread() local 22 byte_offset = address % btrfs_blk_desc->blksz; in btrfs_devread() 24 return fs_devread(btrfs_blk_desc, btrfs_part_info, sector, byte_offset, in btrfs_devread()
|
| A D | compat.h | 59 int byte_offset; in __btrfs_devread() local 63 byte_offset = offset % desc->blksz; in __btrfs_devread() 66 ret = fs_devread(desc, part, sector, byte_offset, size, buf); in __btrfs_devread()
|
| /u-boot/fs/zfs/ |
| A D | dev.c | 26 int zfs_devread(int sector, int byte_offset, int byte_len, char *buf) in zfs_devread() argument 28 return fs_devread(zfs_blk_desc, part_info, sector, byte_offset, in zfs_devread()
|
| /u-boot/fs/reiserfs/ |
| A D | dev.c | 24 int reiserfs_devread(int sector, int byte_offset, int byte_len, char *buf) in reiserfs_devread() argument 26 return fs_devread(reiserfs_blk_desc, part_info, sector, byte_offset, in reiserfs_devread()
|
| A D | reiserfs_private.h | 509 extern int reiserfs_devread (int sector, int byte_offset, int byte_len, char *buf);
|
| /u-boot/fs/ext4/ |
| A D | dev.c | 50 int ext4fs_devread(lbaint_t sector, int byte_offset, int byte_len, in ext4fs_devread() argument 53 return fs_devread(get_fs()->dev_desc, part_info, sector, byte_offset, in ext4fs_devread()
|
| /u-boot/include/ |
| A D | zfs_common.h | 102 int zfs_devread(int sector, int byte_offset, int byte_len, char *buf);
|
| A D | ext4fs.h | 156 int ext4fs_devread(lbaint_t sector, int byte_offset, int byte_len, char *buf);
|
| /u-boot/drivers/ram/octeon/ |
| A D | octeon_ddr.c | 2042 int dll_offset_mode, int byte_offset, int byte) in load_dll_offset() argument 2063 (abs(byte_offset) & (~(-1 << field_width))) | in load_dll_offset() 2064 (_sign(byte_offset) << field_width)); in load_dll_offset() 2084 int byte_offset; in process_custom_dll_offsets() local 2114 byte_offset = (provided) ? offsets[byte] : 0; in process_custom_dll_offsets() 2120 byte_offset = simple_strtol(s, NULL, 0); in process_custom_dll_offsets() 2124 load_dll_offset(priv, if_num, mode, byte_offset, byte); in process_custom_dll_offsets()
|
| A D | octeon3_lmc.c | 10291 int byte_offset, new_best_offset[9]; in hw_assist_test_dll_offset() local 10358 for (byte_offset = -63; byte_offset < 64; in hw_assist_test_dll_offset() 10359 byte_offset += BYTE_OFFSET_INCR) { in hw_assist_test_dll_offset() 10365 byte_offset, bytelane); in hw_assist_test_dll_offset() 10407 mode_str, byte_offset, in hw_assist_test_dll_offset() 10416 byte_offset); in hw_assist_test_dll_offset() 10432 byte_offset); in hw_assist_test_dll_offset() 10435 byte_offset; in hw_assist_test_dll_offset() 10458 byte_offset, in hw_assist_test_dll_offset()
|
| /u-boot/arch/mips/mach-octeon/include/mach/ |
| A D | octeon_ddr.h | 963 int byte_offset, int byte);
|
| /u-boot/drivers/mtd/ |
| A D | cfi_flash.c | 219 unsigned int byte_offset = offset * info->portwidth; in flash_map() local 221 return (void *)(info->start[sect] + byte_offset); in flash_map()
|