Symbol: byte_offset
usr/src/grub/grub-0.97/stage2/defs.h
42
#define btodb(byte_offset) ((byte_offset) >> 9)
usr/src/grub/grub-0.97/stage2/disk_io.c
161
rawread(int drive, unsigned long long sector, int byte_offset, int byte_len,
usr/src/grub/grub-0.97/stage2/disk_io.c
192
slen = ((byte_offset + byte_len + buf_geom.sector_size - 1)
usr/src/grub/grub-0.97/stage2/disk_io.c
206
+ (soff << sector_size_bits) + byte_offset);
usr/src/grub/grub-0.97/stage2/disk_io.c
222
bufaddr = (char *) BUFFERADDR + byte_offset;
usr/src/grub/grub-0.97/stage2/disk_io.c
244
bufaddr = (char *) BUFFERADDR + byte_offset;
usr/src/grub/grub-0.97/stage2/disk_io.c
273
if (size > ((num_sect << sector_size_bits) - byte_offset))
usr/src/grub/grub-0.97/stage2/disk_io.c
274
size = (num_sect << sector_size_bits) - byte_offset;
usr/src/grub/grub-0.97/stage2/disk_io.c
282
int length = buf_geom.sector_size - byte_offset;
usr/src/grub/grub-0.97/stage2/disk_io.c
285
(*disk_read_func) (sector_num++, byte_offset, length);
usr/src/grub/grub-0.97/stage2/disk_io.c
303
byte_offset = 0;
usr/src/grub/grub-0.97/stage2/disk_io.c
311
devread(unsigned long long sector, int byte_offset, int byte_len, char *buf)
usr/src/grub/grub-0.97/stage2/disk_io.c
316
if ((sector + ((byte_offset + byte_len - 1) >> SECTOR_BITS))
usr/src/grub/grub-0.97/stage2/disk_io.c
326
sector += byte_offset >> SECTOR_BITS;
usr/src/grub/grub-0.97/stage2/disk_io.c
327
byte_offset &= SECTOR_SIZE - 1;
usr/src/grub/grub-0.97/stage2/disk_io.c
331
printf ("<%llu, %d, %d>", sector, byte_offset, byte_len);
usr/src/grub/grub-0.97/stage2/disk_io.c
343
return rawread (current_drive, part_start + sector, byte_offset,
usr/src/grub/grub-0.97/stage2/fsys_iso9660.c
103
return rawread(current_drive, part_start + sector, byte_offset, byte_len, buf);
usr/src/grub/grub-0.97/stage2/fsys_iso9660.c
70
iso9660_devread (int sector, int byte_offset, int byte_len, char *buf)
usr/src/grub/grub-0.97/stage2/fsys_iso9660.c
86
sector += (byte_offset >> sector_size_lg2);
usr/src/grub/grub-0.97/stage2/fsys_iso9660.c
87
byte_offset &= (buf_geom.sector_size - 1);
usr/src/grub/grub-0.97/stage2/fsys_iso9660.c
95
printf ("<%d, %d, %d>", sector, byte_offset, byte_len);
usr/src/grub/grub-0.97/stage2/shared.h
1012
int rawread (int drive, unsigned long long sector, int byte_offset, int byte_len,
usr/src/grub/grub-0.97/stage2/shared.h
1014
int devread (unsigned long long sector, int byte_offset, int byte_len, char *buf);
usr/src/uts/common/fs/hsfs/hsfs_vnops.c
1005
ulong_t byte_offset;
usr/src/uts/common/fs/hsfs/hsfs_vnops.c
1203
for (count = 0, byte_offset = io_off;
usr/src/uts/common/fs/hsfs/hsfs_vnops.c
1204
byte_offset < io_end; count++) {
usr/src/uts/common/fs/hsfs/hsfs_vnops.c
1210
which_chunk_lbn = byte_offset / chunk_data_bytes;
usr/src/uts/common/fs/hsfs/hsfs_vnops.c
1219
offset_extra = byte_offset % chunk_data_bytes;
usr/src/uts/common/fs/hsfs/hsfs_vnops.c
1234
bufs[count].b_un.b_addr = va + byte_offset % PAGESIZE;
usr/src/uts/common/fs/hsfs/hsfs_vnops.c
1236
(offset_t)(byte_offset - io_off + off);
usr/src/uts/common/fs/hsfs/hsfs_vnops.c
1248
- byte_offset;
usr/src/uts/common/fs/hsfs/hsfs_vnops.c
1254
if ((remaining_bytes + byte_offset) < (off + len)) {
usr/src/uts/common/fs/hsfs/hsfs_vnops.c
1259
bufs[count].b_bcount = off + len - byte_offset;
usr/src/uts/common/fs/hsfs/hsfs_vnops.c
1280
remainder = PAGESIZE - (byte_offset % PAGESIZE);
usr/src/uts/common/fs/hsfs/hsfs_vnops.c
1286
if (((offset_t)byte_offset + bufs[count].b_bcount) >
usr/src/uts/common/fs/hsfs/hsfs_vnops.c
1290
byte_offset += bufs[count].b_bcount;
usr/src/uts/common/fs/hsfs/hsfs_vnops.c
720
ulong_t byte_offset;
usr/src/uts/common/fs/hsfs/hsfs_vnops.c
838
for (count = 0, byte_offset = io_off;
usr/src/uts/common/fs/hsfs/hsfs_vnops.c
839
byte_offset < io_end;
usr/src/uts/common/fs/hsfs/hsfs_vnops.c
854
which_chunk_lbn = byte_offset / chunk_data_bytes;
usr/src/uts/common/fs/hsfs/hsfs_vnops.c
863
offset_extra = byte_offset % chunk_data_bytes;
usr/src/uts/common/fs/hsfs/hsfs_vnops.c
878
bufs[count].b_un.b_addr = va + byte_offset % PAGESIZE;
usr/src/uts/common/fs/hsfs/hsfs_vnops.c
880
(offset_t)(byte_offset - io_off + off);
usr/src/uts/common/fs/hsfs/hsfs_vnops.c
891
- byte_offset;
usr/src/uts/common/fs/hsfs/hsfs_vnops.c
897
if ((remaining_bytes + byte_offset) < (off + len)) {
usr/src/uts/common/fs/hsfs/hsfs_vnops.c
902
bufs[count].b_bcount = off + len - byte_offset;
usr/src/uts/common/fs/hsfs/hsfs_vnops.c
905
remainder = PAGESIZE - (byte_offset % PAGESIZE);
usr/src/uts/common/fs/hsfs/hsfs_vnops.c
911
if (((offset_t)byte_offset + bufs[count].b_bcount) >
usr/src/uts/common/fs/hsfs/hsfs_vnops.c
915
byte_offset += bufs[count].b_bcount;
usr/src/uts/common/io/e1000api/e1000_82575.c
3272
s32 e1000_read_i2c_byte_generic(struct e1000_hw *hw, u8 byte_offset,
usr/src/uts/common/io/e1000api/e1000_82575.c
3304
status = e1000_clock_out_i2c_byte(hw, byte_offset);
usr/src/uts/common/io/e1000api/e1000_82575.c
3363
s32 e1000_write_i2c_byte_generic(struct e1000_hw *hw, u8 byte_offset,
usr/src/uts/common/io/e1000api/e1000_82575.c
3391
status = e1000_clock_out_i2c_byte(hw, byte_offset);
usr/src/uts/common/io/e1000api/e1000_82575.h
517
s32 e1000_read_i2c_byte_generic(struct e1000_hw *hw, u8 byte_offset,
usr/src/uts/common/io/e1000api/e1000_82575.h
519
s32 e1000_write_i2c_byte_generic(struct e1000_hw *hw, u8 byte_offset,
usr/src/uts/common/io/e1000api/e1000_phy.c
166
u8 E1000_UNUSEDARG byte_offset,
usr/src/uts/common/io/e1000api/e1000_phy.c
183
u8 E1000_UNUSEDARG byte_offset,
usr/src/uts/common/io/e1000api/e1000_phy.h
44
s32 e1000_read_i2c_byte_null(struct e1000_hw *hw, u8 byte_offset,
usr/src/uts/common/io/e1000api/e1000_phy.h
46
s32 e1000_write_i2c_byte_null(struct e1000_hw *hw, u8 byte_offset,
usr/src/uts/common/io/ib/adapters/hermon/hermon_ioctl.c
1673
int byte_offset;
usr/src/uts/common/io/ib/adapters/hermon/hermon_ioctl.c
1778
byte_offset = addr & 3;
usr/src/uts/common/io/ib/adapters/hermon/hermon_ioctl.c
1779
dword_addr = addr - byte_offset;
usr/src/uts/common/io/ib/adapters/hermon/hermon_ioctl.c
1781
byte_offset = 3 - byte_offset;
usr/src/uts/common/io/ib/adapters/hermon/hermon_ioctl.c
1790
dword.bytes[byte_offset] = data;
usr/src/uts/common/io/ixgbe/core/ixgbe_82598.c
1127
u8 byte_offset, u8 *eeprom_data)
usr/src/uts/common/io/ixgbe/core/ixgbe_82598.c
1152
sfp_addr = (dev_addr << 8) + byte_offset;
usr/src/uts/common/io/ixgbe/core/ixgbe_82598.c
1199
s32 ixgbe_read_i2c_eeprom_82598(struct ixgbe_hw *hw, u8 byte_offset,
usr/src/uts/common/io/ixgbe/core/ixgbe_82598.c
1203
byte_offset, eeprom_data);
usr/src/uts/common/io/ixgbe/core/ixgbe_82598.c
1214
static s32 ixgbe_read_i2c_sff8472_82598(struct ixgbe_hw *hw, u8 byte_offset,
usr/src/uts/common/io/ixgbe/core/ixgbe_82598.c
1218
byte_offset, sff8472_data);
usr/src/uts/common/io/ixgbe/core/ixgbe_82598.c
68
static s32 ixgbe_read_i2c_sff8472_82598(struct ixgbe_hw *hw, u8 byte_offset,
usr/src/uts/common/io/ixgbe/core/ixgbe_82598.h
47
s32 ixgbe_read_i2c_eeprom_82598(struct ixgbe_hw *hw, u8 byte_offset,
usr/src/uts/common/io/ixgbe/core/ixgbe_82599.c
2560
static s32 ixgbe_read_i2c_byte_82599(struct ixgbe_hw *hw, u8 byte_offset,
usr/src/uts/common/io/ixgbe/core/ixgbe_82599.c
2593
status = ixgbe_read_i2c_byte_generic(hw, byte_offset, dev_addr, data);
usr/src/uts/common/io/ixgbe/core/ixgbe_82599.c
2618
static s32 ixgbe_write_i2c_byte_82599(struct ixgbe_hw *hw, u8 byte_offset,
usr/src/uts/common/io/ixgbe/core/ixgbe_82599.c
2651
status = ixgbe_write_i2c_byte_generic(hw, byte_offset, dev_addr, data);
usr/src/uts/common/io/ixgbe/core/ixgbe_82599.c
56
static s32 ixgbe_read_i2c_byte_82599(struct ixgbe_hw *hw, u8 byte_offset,
usr/src/uts/common/io/ixgbe/core/ixgbe_82599.c
58
static s32 ixgbe_write_i2c_byte_82599(struct ixgbe_hw *hw, u8 byte_offset,
usr/src/uts/common/io/ixgbe/core/ixgbe_api.c
1546
s32 ixgbe_read_i2c_byte(struct ixgbe_hw *hw, u8 byte_offset, u8 dev_addr,
usr/src/uts/common/io/ixgbe/core/ixgbe_api.c
1549
return ixgbe_call_func(hw, hw->phy.ops.read_i2c_byte, (hw, byte_offset,
usr/src/uts/common/io/ixgbe/core/ixgbe_api.c
1562
s32 ixgbe_read_i2c_byte_unlocked(struct ixgbe_hw *hw, u8 byte_offset,
usr/src/uts/common/io/ixgbe/core/ixgbe_api.c
1566
(hw, byte_offset, dev_addr, data),
usr/src/uts/common/io/ixgbe/core/ixgbe_api.c
1610
s32 ixgbe_write_i2c_byte(struct ixgbe_hw *hw, u8 byte_offset, u8 dev_addr,
usr/src/uts/common/io/ixgbe/core/ixgbe_api.c
1613
return ixgbe_call_func(hw, hw->phy.ops.write_i2c_byte, (hw, byte_offset,
usr/src/uts/common/io/ixgbe/core/ixgbe_api.c
1627
s32 ixgbe_write_i2c_byte_unlocked(struct ixgbe_hw *hw, u8 byte_offset,
usr/src/uts/common/io/ixgbe/core/ixgbe_api.c
1631
(hw, byte_offset, dev_addr, data),
usr/src/uts/common/io/ixgbe/core/ixgbe_api.c
1674
u8 byte_offset, u8 eeprom_data)
usr/src/uts/common/io/ixgbe/core/ixgbe_api.c
1677
(hw, byte_offset, eeprom_data),
usr/src/uts/common/io/ixgbe/core/ixgbe_api.c
1689
s32 ixgbe_read_i2c_eeprom(struct ixgbe_hw *hw, u8 byte_offset, u8 *eeprom_data)
usr/src/uts/common/io/ixgbe/core/ixgbe_api.c
1692
(hw, byte_offset, eeprom_data),
usr/src/uts/common/io/ixgbe/core/ixgbe_api.h
148
s32 ixgbe_read_i2c_eeprom(struct ixgbe_hw *hw, u8 byte_offset, u8 *eeprom_data);
usr/src/uts/common/io/ixgbe/core/ixgbe_api.h
180
s32 ixgbe_read_i2c_byte(struct ixgbe_hw *hw, u8 byte_offset, u8 dev_addr,
usr/src/uts/common/io/ixgbe/core/ixgbe_api.h
182
s32 ixgbe_read_i2c_byte_unlocked(struct ixgbe_hw *hw, u8 byte_offset,
usr/src/uts/common/io/ixgbe/core/ixgbe_api.h
186
s32 ixgbe_write_i2c_byte(struct ixgbe_hw *hw, u8 byte_offset, u8 dev_addr,
usr/src/uts/common/io/ixgbe/core/ixgbe_api.h
189
s32 ixgbe_write_i2c_byte_unlocked(struct ixgbe_hw *hw, u8 byte_offset,
usr/src/uts/common/io/ixgbe/core/ixgbe_api.h
193
s32 ixgbe_write_i2c_eeprom(struct ixgbe_hw *hw, u8 byte_offset, u8 eeprom_data);
usr/src/uts/common/io/ixgbe/core/ixgbe_e610.c
4917
s32 ixgbe_read_i2c_sff8472_E610(struct ixgbe_hw *hw, u8 byte_offset,
usr/src/uts/common/io/ixgbe/core/ixgbe_e610.c
4921
byte_offset, 0,
usr/src/uts/common/io/ixgbe/core/ixgbe_e610.c
4936
s32 ixgbe_read_i2c_eeprom_E610(struct ixgbe_hw *hw, u8 byte_offset,
usr/src/uts/common/io/ixgbe/core/ixgbe_e610.c
4940
byte_offset, 0,
usr/src/uts/common/io/ixgbe/core/ixgbe_e610.c
4955
s32 ixgbe_write_i2c_eeprom_E610(struct ixgbe_hw *hw, u8 byte_offset,
usr/src/uts/common/io/ixgbe/core/ixgbe_e610.c
4959
byte_offset, 0,
usr/src/uts/common/io/ixgbe/core/ixgbe_e610.h
203
s32 ixgbe_read_i2c_sff8472_E610(struct ixgbe_hw *hw, u8 byte_offset,
usr/src/uts/common/io/ixgbe/core/ixgbe_e610.h
205
s32 ixgbe_read_i2c_eeprom_E610(struct ixgbe_hw *hw, u8 byte_offset,
usr/src/uts/common/io/ixgbe/core/ixgbe_e610.h
207
s32 ixgbe_write_i2c_eeprom_E610(struct ixgbe_hw *hw, u8 byte_offset,
usr/src/uts/common/io/ixgbe/core/ixgbe_phy.c
1949
s32 ixgbe_read_i2c_eeprom_generic(struct ixgbe_hw *hw, u8 byte_offset,
usr/src/uts/common/io/ixgbe/core/ixgbe_phy.c
1954
return hw->phy.ops.read_i2c_byte(hw, byte_offset,
usr/src/uts/common/io/ixgbe/core/ixgbe_phy.c
1967
static s32 ixgbe_read_i2c_sff8472_generic(struct ixgbe_hw *hw, u8 byte_offset,
usr/src/uts/common/io/ixgbe/core/ixgbe_phy.c
1970
return hw->phy.ops.read_i2c_byte(hw, byte_offset,
usr/src/uts/common/io/ixgbe/core/ixgbe_phy.c
1983
s32 ixgbe_write_i2c_eeprom_generic(struct ixgbe_hw *hw, u8 byte_offset,
usr/src/uts/common/io/ixgbe/core/ixgbe_phy.c
1988
return hw->phy.ops.write_i2c_byte(hw, byte_offset,
usr/src/uts/common/io/ixgbe/core/ixgbe_phy.c
2019
static s32 ixgbe_read_i2c_byte_generic_int(struct ixgbe_hw *hw, u8 byte_offset,
usr/src/uts/common/io/ixgbe/core/ixgbe_phy.c
2033
if (ixgbe_is_sfp_probe(hw, byte_offset, dev_addr))
usr/src/uts/common/io/ixgbe/core/ixgbe_phy.c
2051
status = ixgbe_clock_out_i2c_byte(hw, byte_offset);
usr/src/uts/common/io/ixgbe/core/ixgbe_phy.c
2107
s32 ixgbe_read_i2c_byte_generic(struct ixgbe_hw *hw, u8 byte_offset,
usr/src/uts/common/io/ixgbe/core/ixgbe_phy.c
2110
return ixgbe_read_i2c_byte_generic_int(hw, byte_offset, dev_addr,
usr/src/uts/common/io/ixgbe/core/ixgbe_phy.c
2124
s32 ixgbe_read_i2c_byte_generic_unlocked(struct ixgbe_hw *hw, u8 byte_offset,
usr/src/uts/common/io/ixgbe/core/ixgbe_phy.c
2127
return ixgbe_read_i2c_byte_generic_int(hw, byte_offset, dev_addr,
usr/src/uts/common/io/ixgbe/core/ixgbe_phy.c
2142
static s32 ixgbe_write_i2c_byte_generic_int(struct ixgbe_hw *hw, u8 byte_offset,
usr/src/uts/common/io/ixgbe/core/ixgbe_phy.c
2167
status = ixgbe_clock_out_i2c_byte(hw, byte_offset);
usr/src/uts/common/io/ixgbe/core/ixgbe_phy.c
2213
s32 ixgbe_write_i2c_byte_generic(struct ixgbe_hw *hw, u8 byte_offset,
usr/src/uts/common/io/ixgbe/core/ixgbe_phy.c
2216
return ixgbe_write_i2c_byte_generic_int(hw, byte_offset, dev_addr,
usr/src/uts/common/io/ixgbe/core/ixgbe_phy.c
2230
s32 ixgbe_write_i2c_byte_generic_unlocked(struct ixgbe_hw *hw, u8 byte_offset,
usr/src/uts/common/io/ixgbe/core/ixgbe_phy.c
2233
return ixgbe_write_i2c_byte_generic_int(hw, byte_offset, dev_addr,
usr/src/uts/common/io/ixgbe/core/ixgbe_phy.c
50
static s32 ixgbe_read_i2c_sff8472_generic(struct ixgbe_hw *hw, u8 byte_offset,
usr/src/uts/common/io/ixgbe/core/ixgbe_phy.h
203
s32 ixgbe_read_i2c_byte_generic(struct ixgbe_hw *hw, u8 byte_offset,
usr/src/uts/common/io/ixgbe/core/ixgbe_phy.h
205
s32 ixgbe_read_i2c_byte_generic_unlocked(struct ixgbe_hw *hw, u8 byte_offset,
usr/src/uts/common/io/ixgbe/core/ixgbe_phy.h
207
s32 ixgbe_write_i2c_byte_generic(struct ixgbe_hw *hw, u8 byte_offset,
usr/src/uts/common/io/ixgbe/core/ixgbe_phy.h
209
s32 ixgbe_write_i2c_byte_generic_unlocked(struct ixgbe_hw *hw, u8 byte_offset,
usr/src/uts/common/io/ixgbe/core/ixgbe_phy.h
211
s32 ixgbe_read_i2c_eeprom_generic(struct ixgbe_hw *hw, u8 byte_offset,
usr/src/uts/common/io/ixgbe/core/ixgbe_phy.h
213
s32 ixgbe_write_i2c_eeprom_generic(struct ixgbe_hw *hw, u8 byte_offset,
usr/src/uts/common/io/qede/579xx/drivers/ecore/ecore_dbg_fw_funcs.c
1970
u32 byte_offset)
usr/src/uts/common/io/qede/579xx/drivers/ecore/ecore_dbg_fw_funcs.c
1974
offset_in_dword = (u8)(byte_offset & 0x3);
usr/src/uts/common/io/sfxge/common/ef10_nvram.c
1031
*lengthp = byte_offset(tlv_next_item_ptr(&cursor),
usr/src/uts/common/io/sfxge/common/ef10_nvram.c
870
*startp = byte_offset(cursor.current, cursor.block);
usr/src/uts/common/io/sfxge/common/ef10_nvram.c
912
*endp = byte_offset(tlv_last_segment_end(&cursor)+1, cursor.block);
usr/src/uts/common/io/sfxge/common/ef10_nvram.c
951
*startp = byte_offset(cursor.current, cursor.block);
usr/src/uts/common/io/sfxge/common/ef10_nvram.c
952
*lengthp = byte_offset(tlv_next_item_ptr(&cursor),