Home
last modified time | relevance | path

Searched refs:byte_offset (Results 1 – 4 of 4) sorted by relevance

/arch/arm/mach-omap2/
Dcontrol.c147 u8 byte_offset = offset & 0x3; in omap_ctrl_readb() local
151 return (val >> (byte_offset * 8)) & 0xff; in omap_ctrl_readb()
157 u16 byte_offset = offset & 0x2; in omap_ctrl_readw() local
161 return (val >> (byte_offset * 8)) & 0xffff; in omap_ctrl_readw()
174 u8 byte_offset = offset & 0x3; in omap_ctrl_writeb() local
178 tmp &= 0xffffffff ^ (0xff << (byte_offset * 8)); in omap_ctrl_writeb()
179 tmp |= val << (byte_offset * 8); in omap_ctrl_writeb()
187 u8 byte_offset = offset & 0x2; in omap_ctrl_writew() local
191 tmp &= 0xffffffff ^ (0xffff << (byte_offset * 8)); in omap_ctrl_writew()
192 tmp |= val << (byte_offset * 8); in omap_ctrl_writew()
/arch/arm64/kvm/vgic/
Dvgic-v3.c317 int byte_offset, bit_nr; in vgic_v3_lpi_sync_pending_status() local
331 byte_offset = irq->intid / BITS_PER_BYTE; in vgic_v3_lpi_sync_pending_status()
333 ptr = pendbase + byte_offset; in vgic_v3_lpi_sync_pending_status()
372 int byte_offset, bit_nr; in vgic_v3_save_pending_tables() local
383 byte_offset = irq->intid / BITS_PER_BYTE; in vgic_v3_save_pending_tables()
385 ptr = pendbase + byte_offset; in vgic_v3_save_pending_tables()
Dvgic-its.c444 int byte_offset, bit_nr; in its_sync_lpi_pending_table() local
446 byte_offset = intids[i] / BITS_PER_BYTE; in its_sync_lpi_pending_table()
453 if (byte_offset != last_byte_offset) { in its_sync_lpi_pending_table()
455 pendbase + byte_offset, in its_sync_lpi_pending_table()
461 last_byte_offset = byte_offset; in its_sync_lpi_pending_table()
2111 size_t byte_offset; in scan_its_table() local
2121 byte_offset = next_offset * esz; in scan_its_table()
2122 if (byte_offset >= len) in scan_its_table()
2126 gpa += byte_offset; in scan_its_table()
2127 len -= byte_offset; in scan_its_table()
/arch/um/drivers/
Dubd_kern.c1324 unsigned long byte_offset = io_req->offset; in ubd_map_req() local
1343 cowify_req(io_req, &io_req->io_desc[i], byte_offset, in ubd_map_req()
1346 byte_offset += io_req->io_desc[i].length; in ubd_map_req()