/linux-4.1.27/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.1.27/arch/parisc/kernel/ |
D | perf.c | 753 uint64_t *bptr; in perf_write_image() local 781 bptr = &buffer[0]; in perf_write_image() 787 tmp64 |= (~(*intrigue_bitmask++)) & *bptr; in perf_write_image() 788 *bptr++ = tmp64; in perf_write_image() 792 *bptr++ = *memaddr++; in perf_write_image()
|
/linux-4.1.27/drivers/usb/storage/ |
D | alauda.c | 814 unsigned char *bptr, *cptr, *xptr; in alauda_write_lba() local 859 bptr = blockbuffer + (i * (pagesize + 64)); in alauda_write_lba() 860 cptr = bptr + pagesize; in alauda_write_lba() 861 nand_compute_ecc(bptr, ecc); in alauda_write_lba() 867 nand_compute_ecc(bptr + (pagesize / 2), ecc); in alauda_write_lba() 880 bptr = blockbuffer + (i * (pagesize + 64)); in alauda_write_lba() 881 cptr = bptr + pagesize; in alauda_write_lba() 882 memcpy(bptr, xptr, pagesize); in alauda_write_lba() 884 nand_compute_ecc(bptr, ecc); in alauda_write_lba() 886 nand_compute_ecc(bptr + (pagesize / 2), ecc); in alauda_write_lba()
|
D | sddr09.c | 867 unsigned char *bptr, *cptr, *xptr; in sddr09_write_lba() local 907 bptr = blockbuffer + i*pagelen; in sddr09_write_lba() 908 cptr = bptr + info->pagesize; in sddr09_write_lba() 909 nand_compute_ecc(bptr, ecc); in sddr09_write_lba() 915 nand_compute_ecc(bptr+(info->pagesize / 2), ecc); in sddr09_write_lba() 928 bptr = blockbuffer + i*pagelen; in sddr09_write_lba() 929 cptr = bptr + info->pagesize; in sddr09_write_lba() 930 memcpy(bptr, xptr, info->pagesize); in sddr09_write_lba() 932 nand_compute_ecc(bptr, ecc); in sddr09_write_lba() 934 nand_compute_ecc(bptr+(info->pagesize / 2), ecc); in sddr09_write_lba()
|
/linux-4.1.27/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.1.27/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.1.27/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.1.27/fs/ |
D | dcache.c | 2898 char *bptr; in prepend_path() local 2907 bptr = *buffer; in prepend_path() 2921 bptr = *buffer; in prepend_path() 2939 error = prepend_name(&bptr, &blen, &dentry->d_name); in prepend_path() 2961 if (error >= 0 && bptr == *buffer) { in prepend_path() 2965 *--bptr = '/'; in prepend_path() 2967 *buffer = bptr; in prepend_path()
|
/linux-4.1.27/tools/lib/traceevent/ |
D | event-parse.c | 4065 void *bptr; in make_bprint_args() local 4107 for (ptr = fmt + 5, bptr = data + field->offset; in make_bprint_args() 4108 bptr < data + size && *ptr; ptr++) { in make_bprint_args() 4158 bptr = (void *)(((unsigned long)bptr + 3) & in make_bprint_args() 4160 val = pevent_read_number(pevent, bptr, vsize); in make_bprint_args() 4161 bptr += vsize; in make_bprint_args() 4193 arg->string.string = strdup(bptr); in make_bprint_args() 4196 bptr += strlen(bptr) + 1; in make_bprint_args()
|