Lines Matching refs:bptr
241 uint8_t *bptr = dst; in ix_copyin() local
252 *bptr = bus_space_read_1(sc->bt, sc->bh, IX_DATAPORT); in ix_copyin()
254 *bptr = bus_space_read_1(sc->bt, sc->bh, offset); in ix_copyin()
255 offset++; bptr++; size--; in ix_copyin()
259 wptr = (uint16_t*)bptr; in ix_copyin()
268 (uint16_t *)bptr, size / 2); in ix_copyin()
271 bptr += size - 1; in ix_copyin()
275 *bptr = bus_space_read_1(sc->bt, sc->bh, IX_DATAPORT); in ix_copyin()
277 *bptr = bus_space_read_1(sc->bt, sc->bh, offset); in ix_copyin()
285 const uint8_t *bptr = src; in ix_copyout() local
296 bus_space_write_1(sc->bt, sc->bh, IX_DATAPORT, *bptr); in ix_copyout()
298 bus_space_write_1(sc->bt, sc->bh, offset, *bptr); in ix_copyout()
299 offset++; bptr++; size--; in ix_copyout()
303 wptr = (const uint16_t*)bptr; in ix_copyout()
312 (const uint16_t *)bptr, size / 2); in ix_copyout()
315 bptr += size - 1; in ix_copyout()
319 bus_space_write_1(sc->bt, sc->bh, IX_DATAPORT, *bptr); in ix_copyout()
321 bus_space_write_1(sc->bt, sc->bh, offset, *bptr); in ix_copyout()