Home | History | Annotate | Download | only in ibus

Lines Matching defs:bptr

109 	volatile uint16_t *bptr;
113 bptr = ((volatile uint16_t *)buf) + (boff - 1);
114 *bptr = (*from++ << 8) | (*bptr & 0xff);
115 bptr += 2;
118 bptr = ((volatile uint16_t *)buf) + boff;
120 *bptr = (from[1] << 8) | (from[0] & 0xff);
121 bptr += 2;
126 *bptr = (uint16_t)*from;
134 volatile uint16_t *bptr;
139 bptr = ((volatile uint16_t *)buf) + (boff - 1);
140 *to++ = (*bptr >> 8) & 0xff;
141 bptr += 2;
144 bptr = ((volatile uint16_t *)buf) + boff;
146 tmp = *bptr;
149 bptr += 2;
153 *to = *bptr & 0xff;
160 volatile uint16_t *bptr;
163 bptr = ((volatile uint16_t *)buf) + (boff - 1);
164 *bptr &= 0xff;
165 bptr += 2;
168 bptr = ((volatile uint16_t *)buf) + boff;
170 *bptr = 0;
171 bptr += 2;