Lines Matching refs:bptr
694 volatile uint16_t *bptr;
698 bptr = ((volatile uint16_t *)buf) + (boff - 1);
699 *bptr = (*from++ << 8) | (*bptr & 0xff);
700 bptr += 2;
703 bptr = ((volatile uint16_t *)buf) + boff;
705 *bptr = (from[1] << 8) | (from[0] & 0xff);
706 bptr += 2;
711 *bptr = (uint16_t)*from;
719 volatile uint16_t *bptr;
724 bptr = ((volatile uint16_t *)buf) + (boff - 1);
725 *to++ = (*bptr >> 8) & 0xff;
726 bptr += 2;
729 bptr = ((volatile uint16_t *)buf) + boff;
731 tmp = *bptr;
734 bptr += 2;
738 *to = *bptr & 0xff;
745 volatile uint16_t *bptr;
748 bptr = ((volatile uint16_t *)buf) + (boff - 1);
749 *bptr &= 0xff;
750 bptr += 2;
753 bptr = ((volatile uint16_t *)buf) + boff;
755 *bptr = 0;
756 bptr += 2;
771 caddr_t bptr, from = fromv;
774 bptr = buf + ((boff << 1) & ~0x1f);
778 memcpy(bptr + boff, from, xfer);
780 bptr += 32;
791 caddr_t bptr, to = tov;
794 bptr = buf + ((boff << 1) & ~0x1f);
798 memcpy(to, bptr + boff, xfer);
800 bptr += 32;
811 caddr_t bptr;
814 bptr = buf + ((boff << 1) & ~0x1f);
818 memset(bptr + boff, 0, xfer);
819 bptr += 32;