Lines Matching defs:bptr
198 volatile uint16_t *bptr;
202 bptr = ((volatile uint16_t *)buf) + (boff - 1);
203 *bptr = (*from++ << 8) | (*bptr & 0xff);
204 bptr += 2;
207 bptr = ((volatile uint16_t *)buf) + boff;
209 *bptr = (from[1] << 8) | (from[0] & 0xff);
210 bptr += 2;
215 *bptr = (uint16_t)*from;
223 volatile uint16_t *bptr;
228 bptr = ((volatile uint16_t *)buf) + (boff - 1);
229 *to++ = (*bptr >> 8) & 0xff;
230 bptr += 2;
233 bptr = ((volatile uint16_t *)buf) + boff;
235 tmp = *bptr;
238 bptr += 2;
242 *to = *bptr & 0xff;
257 uint8_t *bptr;
259 bptr = buf + ((boff << 1) & ~0x1f);
269 memcpy(bptr + boff, from, xfer);
271 bptr += 32;
281 uint32_t *dst = (uint32_t *)bptr;
299 bptr += 32;
307 uint32_t *dst = (uint32_t*)bptr;
314 bptr += 32;
322 memcpy(bptr, from, 16);
324 bptr += 32;
330 memcpy(bptr, from, len);
339 uint8_t *bptr;
341 bptr = buf + ((boff << 1) & ~0x1f);
348 memcpy(to, bptr + boff, xfer);
350 bptr += 32;
361 uint32_t *src = (uint32_t *)bptr;
373 bptr += 32;
381 uint32_t *src = (uint32_t *)bptr;
388 bptr += 32;
396 memcpy(to, bptr, 16);
398 bptr += 32;
404 memcpy(to, bptr, len);
411 uint8_t *bptr;
414 bptr = buf + ((boff << 1) & ~0x1f);
418 memset(bptr + boff, 0, xfer);
419 bptr += 32;