Lines Matching refs:bptr
689 volatile uint16_t *bptr;
693 bptr = ((volatile uint16_t *)buf) + (boff - 1);
694 *bptr = (*from++ << 8) | (*bptr & 0xff);
695 bptr += 2;
698 bptr = ((volatile uint16_t *)buf) + boff;
700 *bptr = (from[1] << 8) | (from[0] & 0xff);
701 bptr += 2;
706 *bptr = (uint16_t)*from;
714 volatile uint16_t *bptr;
719 bptr = ((volatile uint16_t *)buf) + (boff - 1);
720 *to++ = (*bptr >> 8) & 0xff;
721 bptr += 2;
724 bptr = ((volatile uint16_t *)buf) + boff;
726 tmp = *bptr;
729 bptr += 2;
733 *to = *bptr & 0xff;
740 volatile uint16_t *bptr;
743 bptr = ((volatile uint16_t *)buf) + (boff - 1);
744 *bptr &= 0xff;
745 bptr += 2;
748 bptr = ((volatile uint16_t *)buf) + boff;
750 *bptr = 0;
751 bptr += 2;
766 caddr_t bptr, from = fromv;
769 bptr = buf + ((boff << 1) & ~0x1f);
773 memcpy(bptr + boff, from, xfer);
775 bptr += 32;
786 caddr_t bptr, to = tov;
789 bptr = buf + ((boff << 1) & ~0x1f);
793 memcpy(to, bptr + boff, xfer);
795 bptr += 32;
806 caddr_t bptr;
809 bptr = buf + ((boff << 1) & ~0x1f);
813 memset(bptr + boff, 0, xfer);
814 bptr += 32;