Lines Matching refs:bptr
670 volatile uint16_t *bptr;
674 bptr = ((volatile uint16_t *)buf) + (boff - 1);
675 *bptr = (*from++ << 8) | (*bptr & 0xff);
676 bptr += 2;
679 bptr = ((volatile uint16_t *)buf) + boff;
681 *bptr = (from[1] << 8) | (from[0] & 0xff);
682 bptr += 2;
687 *bptr = (uint16_t)*from;
695 volatile uint16_t *bptr;
700 bptr = ((volatile uint16_t *)buf) + (boff - 1);
701 *to++ = (*bptr >> 8) & 0xff;
702 bptr += 2;
705 bptr = ((volatile uint16_t *)buf) + boff;
707 tmp = *bptr;
710 bptr += 2;
714 *to = *bptr & 0xff;
721 volatile uint16_t *bptr;
724 bptr = ((volatile uint16_t *)buf) + (boff - 1);
725 *bptr &= 0xff;
726 bptr += 2;
729 bptr = ((volatile uint16_t *)buf) + boff;
731 *bptr = 0;
732 bptr += 2;
748 uint8_t *bptr;
751 bptr = buf + ((boff << 1) & ~0x1f);
755 memcpy(bptr + boff, from, xfer);
757 bptr += 32;
769 uint8_t *bptr;
772 bptr = buf + ((boff << 1) & ~0x1f);
776 memcpy(to, bptr + boff, xfer);
778 bptr += 32;
789 uint8_t *bptr;
792 bptr = buf + ((boff << 1) & ~0x1f);
796 memset(bptr + boff, 0, xfer);
797 bptr += 32;