Searched refs:byte_offset (Results 1 – 4 of 4) sorted by relevance
142 u8 byte_offset = offset & 0x3; in omap_ctrl_readb() local146 return (val >> (byte_offset * 8)) & 0xff; in omap_ctrl_readb()152 u16 byte_offset = offset & 0x2; in omap_ctrl_readw() local156 return (val >> (byte_offset * 8)) & 0xffff; in omap_ctrl_readw()169 u8 byte_offset = offset & 0x3; in omap_ctrl_writeb() local173 tmp &= 0xffffffff ^ (0xff << (byte_offset * 8)); in omap_ctrl_writeb()174 tmp |= val << (byte_offset * 8); in omap_ctrl_writeb()182 u8 byte_offset = offset & 0x2; in omap_ctrl_writew() local186 tmp &= 0xffffffff ^ (0xffff << (byte_offset * 8)); in omap_ctrl_writew()187 tmp |= val << (byte_offset * 8); in omap_ctrl_writew()
320 int byte_offset, bit_nr; in vgic_v3_lpi_sync_pending_status() local334 byte_offset = irq->intid / BITS_PER_BYTE; in vgic_v3_lpi_sync_pending_status()336 ptr = pendbase + byte_offset; in vgic_v3_lpi_sync_pending_status()413 int byte_offset, bit_nr; in vgic_v3_save_pending_tables() local425 byte_offset = irq->intid / BITS_PER_BYTE; in vgic_v3_save_pending_tables()427 ptr = pendbase + byte_offset; in vgic_v3_save_pending_tables()
403 int byte_offset, bit_nr; in its_sync_lpi_pending_table() local405 byte_offset = intid / BITS_PER_BYTE; in its_sync_lpi_pending_table()412 if (byte_offset != last_byte_offset) { in its_sync_lpi_pending_table()414 pendbase + byte_offset, in its_sync_lpi_pending_table()419 last_byte_offset = byte_offset; in its_sync_lpi_pending_table()2084 size_t byte_offset; in scan_its_table() local2094 byte_offset = next_offset * esz; in scan_its_table()2095 if (byte_offset >= len) in scan_its_table()2099 gpa += byte_offset; in scan_its_table()2100 len -= byte_offset; in scan_its_table()
1201 unsigned long byte_offset = io_req->offset; in ubd_map_req() local1219 cowify_req(io_req, &io_req->io_desc[i], byte_offset, in ubd_map_req()1222 byte_offset += io_req->io_desc[i].length; in ubd_map_req()
Completed in 18 milliseconds