Home | History | Annotate | Download | only in ic

Lines Matching refs:bptr

685 	volatile uint16_t *bptr;
689 bptr = ((volatile uint16_t *)buf) + (boff - 1);
690 *bptr = (*from++ << 8) | (*bptr & 0xff);
691 bptr += 2;
694 bptr = ((volatile uint16_t *)buf) + boff;
696 *bptr = (from[1] << 8) | (from[0] & 0xff);
697 bptr += 2;
702 *bptr = (uint16_t)*from;
710 volatile uint16_t *bptr;
715 bptr = ((volatile uint16_t *)buf) + (boff - 1);
716 *to++ = (*bptr >> 8) & 0xff;
717 bptr += 2;
720 bptr = ((volatile uint16_t *)buf) + boff;
722 tmp = *bptr;
725 bptr += 2;
729 *to = *bptr & 0xff;
736 volatile uint16_t *bptr;
739 bptr = ((volatile uint16_t *)buf) + (boff - 1);
740 *bptr &= 0xff;
741 bptr += 2;
744 bptr = ((volatile uint16_t *)buf) + boff;
746 *bptr = 0;
747 bptr += 2;
763 uint8_t *bptr;
766 bptr = buf + ((boff << 1) & ~0x1f);
770 memcpy(bptr + boff, from, xfer);
772 bptr += 32;
784 uint8_t *bptr;
787 bptr = buf + ((boff << 1) & ~0x1f);
791 memcpy(to, bptr + boff, xfer);
793 bptr += 32;
804 uint8_t *bptr;
807 bptr = buf + ((boff << 1) & ~0x1f);
811 memset(bptr + boff, 0, xfer);
812 bptr += 32;