Home | History | Annotate | Download | only in if

Lines Matching defs:bptr

239 	volatile uint16_t *bptr;
243 bptr = ((volatile uint16_t *)buf) + (boff - 1);
244 *bptr = (*from++ << 8) | (*bptr & 0xff);
245 bptr += 2;
248 bptr = ((volatile uint16_t *)buf) + boff;
250 *bptr = (from[1] << 8) | (from[0] & 0xff);
251 bptr += 2;
256 *bptr = (uint16_t)*from;
264 volatile uint16_t *bptr;
269 bptr = ((volatile uint16_t *)buf) + (boff - 1);
270 *to++ = (*bptr >> 8) & 0xff;
271 bptr += 2;
274 bptr = ((volatile uint16_t *)buf) + boff;
276 tmp = *bptr;
279 bptr += 2;
283 *to = *bptr & 0xff;
290 volatile uint16_t *bptr;
293 bptr = ((volatile uint16_t *)buf) + (boff - 1);
294 *bptr &= 0xff;
295 bptr += 2;
298 bptr = ((volatile uint16_t *)buf) + boff;
300 *bptr = 0;
301 bptr += 2;