Home
last modified time | relevance | path

Searched refs:start_sec (Results 1 – 3 of 3) sorted by relevance

/freebsd/sys/dev/cxgbe/cudbg/
H A Dcudbg_flash_utils.c35 int write_flash(struct adapter *adap, u32 start_sec, void *data, u32 size);
36 int read_flash(struct adapter *adap, u32 start_sec , void *data, u32 size,
241 int write_flash(struct adapter *adap, u32 start_sec, void *data, u32 size) in cudbg_write_flash()
249 addr = start_sec * SF_SEC_SIZE; in write_flash()
252 rc = t4_flash_erase_sectors(adap, start_sec, start_sec + i - 1); in write_flash()
457 int read_flash(struct adapter *adap, u32 start_sec , void *data, u32 size, in cudbg_read_flash()
463 addr = start_sec * SF_SEC_SIZE + start_address; in cudbg_read_flash()
246 write_flash(struct adapter * adap,u32 start_sec,void * data,u32 size) write_flash() argument
465 read_flash(struct adapter * adap,u32 start_sec,void * data,u32 size,u32 start_address) read_flash() argument
/freebsd/stand/libsa/zfs/
H A Dzfs.c463 off_t start_sec; in vdev_read() local
503 start_sec = offset / secsz; in vdev_read()
523 if (lseek(fd, start_sec * secsz, SEEK_SET) == -1) { in vdev_read()
585 off_t start_sec; in vdev_write() local
597 start_sec = offset / secsz; in vdev_write()
617 if (lseek(fd, start_sec * secsz, SEEK_SET) == -1) { in vdev_write()
/freebsd/sys/dev/cxgbe/common/
H A Dt4_hw.c3821 return (FLASH_START(l->start_sec)); in t4_flash_loc_start()