Lines Matching refs:bptr
686 volatile uint16_t *bptr;
690 bptr = ((volatile uint16_t *)buf) + (boff - 1);
691 *bptr = (*from++ << 8) | (*bptr & 0xff);
692 bptr += 2;
695 bptr = ((volatile uint16_t *)buf) + boff;
697 *bptr = (from[1] << 8) | (from[0] & 0xff);
698 bptr += 2;
703 *bptr = (uint16_t)*from;
711 volatile uint16_t *bptr;
716 bptr = ((volatile uint16_t *)buf) + (boff - 1);
717 *to++ = (*bptr >> 8) & 0xff;
718 bptr += 2;
721 bptr = ((volatile uint16_t *)buf) + boff;
723 tmp = *bptr;
726 bptr += 2;
730 *to = *bptr & 0xff;
737 volatile uint16_t *bptr;
740 bptr = ((volatile uint16_t *)buf) + (boff - 1);
741 *bptr &= 0xff;
742 bptr += 2;
745 bptr = ((volatile uint16_t *)buf) + boff;
747 *bptr = 0;
748 bptr += 2;
763 caddr_t bptr, from = fromv;
766 bptr = buf + ((boff << 1) & ~0x1f);
770 memcpy(bptr + boff, from, xfer);
772 bptr += 32;
783 caddr_t bptr, to = tov;
786 bptr = buf + ((boff << 1) & ~0x1f);
790 memcpy(to, bptr + boff, xfer);
792 bptr += 32;
803 caddr_t bptr;
806 bptr = buf + ((boff << 1) & ~0x1f);
810 memset(bptr + boff, 0, xfer);
811 bptr += 32;