Lines Matching refs:bptr
688 volatile uint16_t *bptr;
692 bptr = ((volatile uint16_t *)buf) + (boff - 1);
693 *bptr = (*from++ << 8) | (*bptr & 0xff);
694 bptr += 2;
697 bptr = ((volatile uint16_t *)buf) + boff;
699 *bptr = (from[1] << 8) | (from[0] & 0xff);
700 bptr += 2;
705 *bptr = (uint16_t)*from;
713 volatile uint16_t *bptr;
718 bptr = ((volatile uint16_t *)buf) + (boff - 1);
719 *to++ = (*bptr >> 8) & 0xff;
720 bptr += 2;
723 bptr = ((volatile uint16_t *)buf) + boff;
725 tmp = *bptr;
728 bptr += 2;
732 *to = *bptr & 0xff;
739 volatile uint16_t *bptr;
742 bptr = ((volatile uint16_t *)buf) + (boff - 1);
743 *bptr &= 0xff;
744 bptr += 2;
747 bptr = ((volatile uint16_t *)buf) + boff;
749 *bptr = 0;
750 bptr += 2;
765 caddr_t bptr, from = fromv;
768 bptr = buf + ((boff << 1) & ~0x1f);
772 memcpy(bptr + boff, from, xfer);
774 bptr += 32;
785 caddr_t bptr, to = tov;
788 bptr = buf + ((boff << 1) & ~0x1f);
792 memcpy(to, bptr + boff, xfer);
794 bptr += 32;
805 caddr_t bptr;
808 bptr = buf + ((boff << 1) & ~0x1f);
812 memset(bptr + boff, 0, xfer);
813 bptr += 32;