/openbmc/linux/drivers/mtd/tests/ |
H A D | subpagetest.c | 27 static unsigned char *writebuf; variable 49 prandom_bytes_state(&rnd_state, writebuf, subpgsize); in write_eraseblock() 50 err = mtd_write(mtd, addr, subpgsize, &written, writebuf); in write_eraseblock() 63 prandom_bytes_state(&rnd_state, writebuf, subpgsize); in write_eraseblock() 64 err = mtd_write(mtd, addr, subpgsize, &written, writebuf); in write_eraseblock() 87 prandom_bytes_state(&rnd_state, writebuf, subpgsize * k); in write_eraseblock2() 88 err = mtd_write(mtd, addr, subpgsize * k, &written, writebuf); in write_eraseblock2() 123 prandom_bytes_state(&rnd_state, writebuf, subpgsize); in verify_eraseblock() 137 if (unlikely(memcmp(readbuf, writebuf, subpgsize))) { in verify_eraseblock() 141 print_subpage(writebuf); in verify_eraseblock() [all …]
|
H A D | pagetest.c | 30 static unsigned char *writebuf; variable 45 prandom_bytes_state(&rnd_state, writebuf, mtd->erasesize); in write_eraseblock() 47 return mtdtest_write(mtd, addr, mtd->erasesize, writebuf); in write_eraseblock() 65 prandom_bytes_state(&rnd_state, writebuf, mtd->erasesize); in verify_eraseblock() 78 if (memcmp(twopages, writebuf + (j * pgsize), bufsize)) { in verify_eraseblock() 99 memcpy(boundary, writebuf + mtd->erasesize - pgsize, pgsize); in verify_eraseblock() 213 prandom_bytes_state(&rnd_state, writebuf, pgsize); in erasecrosstest() 214 strcpy(writebuf, "There is no data like this!"); in erasecrosstest() 215 err = mtdtest_write(mtd, addr0, pgsize, writebuf); in erasecrosstest() 226 if (memcmp(writebuf, readbuf, pgsize)) { in erasecrosstest() [all …]
|
H A D | oobtest.c | 33 static unsigned char *writebuf; variable 63 prandom_bytes_state(&rnd_state, writebuf, use_len_max * pgcnt); in write_eraseblock() 72 ops.oobbuf = writebuf + (use_len_max * i) + use_offset; in write_eraseblock() 173 prandom_bytes_state(&rnd_state, writebuf, use_len_max * pgcnt); in verify_eraseblock() 195 writebuf + (use_len_max * i) + use_offset, in verify_eraseblock() 232 writebuf + (use_len_max * i) + use_offset, in verify_eraseblock() 271 prandom_bytes_state(&rnd_state, writebuf, len); in verify_eraseblock_in_one_go() 296 writebuf + (i * oobavail), oobavail); in verify_eraseblock_in_one_go() 382 writebuf = kmalloc(mtd->erasesize, GFP_KERNEL); in mtd_oobtest_init() 383 if (!writebuf) in mtd_oobtest_init() [all …]
|
H A D | stresstest.c | 33 static unsigned char *writebuf; variable 107 err = mtdtest_write(mtd, addr, len, writebuf); in do_write() 180 writebuf = vmalloc(bufsize); in mtd_stresstest_init() 182 if (!readbuf || !writebuf || !offsets) in mtd_stresstest_init() 186 get_random_bytes(writebuf, bufsize); in mtd_stresstest_init() 213 vfree(writebuf); in mtd_stresstest_init()
|
/openbmc/u-boot/lib/ |
H A D | gunzip.c | 125 unsigned char *writebuf; in gzwrite() local 205 writebuf = (unsigned char *)malloc_cache_aligned(szwritebuf); in gzwrite() 222 s.next_out = writebuf; in gzwrite() 230 crc = crc32(crc, writebuf, numfilled); in gzwrite() 235 memset(writebuf+numfilled, 0, in gzwrite() 245 writeblocks, writebuf); in gzwrite() 265 free(writebuf); in gzwrite()
|
/openbmc/u-boot/cmd/ |
H A D | unzip.c | 49 unsigned long writebuf = 1<<20; in do_gzwrite() local 63 writebuf = simple_strtoul(argv[5], NULL, 16); in do_gzwrite() 72 ret = gzwrite(addr, length, bdev, writebuf, startoffs, szexpected); in do_gzwrite()
|
/openbmc/u-boot/drivers/mtd/spi/ |
H A D | sf_dataflash.c | 273 u_char *writebuf = (u_char *)buf; in spi_dataflash_write() local 356 4, writebuf, writelen); in spi_dataflash_write() 380 4, writebuf, writelen); in spi_dataflash_write() 404 writebuf += writelen; in spi_dataflash_write()
|
/openbmc/linux/drivers/char/xillybus/ |
H A D | xillyusb.c | 83 unsigned int writebuf; member 232 unsigned int writebuf = fifo->writebuf; in fifo_write() local 248 fifo->writebuf = writebuf; in fifo_write() 256 rc = (*copier)(fifo->mem[writebuf] + writepos, data + done, n); in fifo_write() 269 writebuf++; in fifo_write() 271 if (writebuf == fifo->bufnum) in fifo_write() 272 writebuf = 0; in fifo_write() 413 fifo->writebuf = 0; in fifo_init()
|
/openbmc/linux/drivers/usb/serial/ |
H A D | iuu_phoenix.c | 56 u8 *writebuf; /* buffer for writing to device */ member 80 priv->writebuf = kzalloc(256, GFP_KERNEL); in iuu_port_probe() 81 if (!priv->writebuf) { in iuu_port_probe() 94 kfree(priv->writebuf); in iuu_port_probe() 108 kfree(priv->writebuf); in iuu_port_remove() 611 memcpy(buf_ptr, priv->writebuf, priv->writelen); in iuu_bulk_write() 711 memcpy(priv->writebuf + priv->writelen, buf, count); in iuu_uart_write()
|
/openbmc/linux/drivers/usb/class/ |
H A D | usblp.c | 722 char *writebuf; in usblp_new_writeurb() local 724 writebuf = kmalloc(transfer_length, GFP_KERNEL); in usblp_new_writeurb() 725 if (writebuf == NULL) in usblp_new_writeurb() 729 kfree(writebuf); in usblp_new_writeurb() 736 writebuf, transfer_length, usblp_bulk_write, usblp); in usblp_new_writeurb()
|
/openbmc/linux/drivers/mtd/devices/ |
H A D | mtd_dataflash.c | 308 u_char *writebuf = (u_char *) buf; in dataflash_write() local 379 x[1].tx_buf = writebuf; in dataflash_write() 425 writebuf += writelen; in dataflash_write()
|
/openbmc/linux/fs/jffs2/ |
H A D | gc.c | 1173 unsigned char *comprbuf = NULL, *writebuf; in jffs2_garbage_collect_dnode() local 1358 writebuf = pg_ptr + (offset & (PAGE_SIZE -1)); in jffs2_garbage_collect_dnode() 1360 comprtype = jffs2_compress(c, f, writebuf, &comprbuf, &datalen, &cdatalen); in jffs2_garbage_collect_dnode() 1386 jffs2_free_comprbuf(comprbuf, writebuf); in jffs2_garbage_collect_dnode()
|
/openbmc/linux/drivers/staging/wlan-ng/ |
H A D | hfa384x_usb.c | 1784 u8 *writebuf; in hfa384x_drvr_flashdl_write() local 1845 writebuf = buf + in hfa384x_drvr_flashdl_write() 1861 writebuf, writelen); in hfa384x_drvr_flashdl_write()
|