/linux-4.4.14/arch/m68k/sun3/prom/ |
D | printf.c | 26 char ch, *bptr; in prom_printf() local 38 bptr = ppbuf; in prom_printf() 43 putpacket(bptr, 1); in prom_printf() 46 while((ch = *(bptr++)) != 0) { in prom_printf()
|
/linux-4.4.14/arch/parisc/kernel/ |
D | perf.c | 754 uint64_t *bptr; in perf_write_image() local 782 bptr = &buffer[0]; in perf_write_image() 788 tmp64 |= (~(*intrigue_bitmask++)) & *bptr; in perf_write_image() 789 *bptr++ = tmp64; in perf_write_image() 793 *bptr++ = *memaddr++; in perf_write_image()
|
/linux-4.4.14/drivers/usb/storage/ |
D | alauda.c | 817 unsigned char *bptr, *cptr, *xptr; in alauda_write_lba() local 862 bptr = blockbuffer + (i * (pagesize + 64)); in alauda_write_lba() 863 cptr = bptr + pagesize; in alauda_write_lba() 864 nand_compute_ecc(bptr, ecc); in alauda_write_lba() 870 nand_compute_ecc(bptr + (pagesize / 2), ecc); in alauda_write_lba() 883 bptr = blockbuffer + (i * (pagesize + 64)); in alauda_write_lba() 884 cptr = bptr + pagesize; in alauda_write_lba() 885 memcpy(bptr, xptr, pagesize); in alauda_write_lba() 887 nand_compute_ecc(bptr, ecc); in alauda_write_lba() 889 nand_compute_ecc(bptr + (pagesize / 2), ecc); in alauda_write_lba()
|
D | sddr09.c | 870 unsigned char *bptr, *cptr, *xptr; in sddr09_write_lba() local 910 bptr = blockbuffer + i*pagelen; in sddr09_write_lba() 911 cptr = bptr + info->pagesize; in sddr09_write_lba() 912 nand_compute_ecc(bptr, ecc); in sddr09_write_lba() 918 nand_compute_ecc(bptr+(info->pagesize / 2), ecc); in sddr09_write_lba() 931 bptr = blockbuffer + i*pagelen; in sddr09_write_lba() 932 cptr = bptr + info->pagesize; in sddr09_write_lba() 933 memcpy(bptr, xptr, info->pagesize); in sddr09_write_lba() 935 nand_compute_ecc(bptr, ecc); in sddr09_write_lba() 937 nand_compute_ecc(bptr+(info->pagesize / 2), ecc); in sddr09_write_lba()
|
/linux-4.4.14/drivers/media/usb/pvrusb2/ |
D | pvrusb2-ctrl.c | 198 char *bptr,unsigned int bmax, in pvr2_ctrl_get_valname() argument 211 bptr,bmax,"%s", in pvr2_ctrl_get_valname() 226 *blen = scnprintf(bptr,bmax,"%s", in pvr2_ctrl_get_valname()
|
/linux-4.4.14/sound/isa/wavefront/ |
D | wavefront_synth.c | 783 unsigned char *bptr; in wavefront_send_patch() local 790 bptr = buf; in wavefront_send_patch() 791 bptr = munge_int32 (header->number, buf, 2); in wavefront_send_patch() 792 munge_buf ((unsigned char *)&header->hdr.p, bptr, WF_PATCH_BYTES); in wavefront_send_patch()
|
/linux-4.4.14/sound/oss/ |
D | swarm_cs4297a.c | 346 static void clear_advance(void *buf, unsigned bsize, unsigned bptr, in clear_advance() argument 349 if (bptr + len > bsize) { in clear_advance() 350 unsigned x = bsize - bptr; in clear_advance() 351 memset(((char *) buf) + bptr, c, x); in clear_advance() 352 bptr = 0; in clear_advance() 357 (unsigned)c, (unsigned)((char *) buf) + bptr, len)); in clear_advance() 358 memset(((char *) buf) + bptr, c, len); in clear_advance()
|
/linux-4.4.14/fs/ |
D | dcache.c | 2900 char *bptr; in prepend_path() local 2909 bptr = *buffer; in prepend_path() 2923 bptr = *buffer; in prepend_path() 2941 error = prepend_name(&bptr, &blen, &dentry->d_name); in prepend_path() 2963 if (error >= 0 && bptr == *buffer) { in prepend_path() 2967 *--bptr = '/'; in prepend_path() 2969 *buffer = bptr; in prepend_path()
|
/linux-4.4.14/tools/lib/traceevent/ |
D | event-parse.c | 4191 void *bptr; in make_bprint_args() local 4233 for (ptr = fmt + 5, bptr = data + field->offset; in make_bprint_args() 4234 bptr < data + size && *ptr; ptr++) { in make_bprint_args() 4284 bptr = (void *)(((unsigned long)bptr + 3) & in make_bprint_args() 4286 val = pevent_read_number(pevent, bptr, vsize); in make_bprint_args() 4287 bptr += vsize; in make_bprint_args() 4319 arg->string.string = strdup(bptr); in make_bprint_args() 4322 bptr += strlen(bptr) + 1; in make_bprint_args()
|