Searched refs:sz_buff (Results 1 – 3 of 3) sorted by relevance
/third_party/FatFs/documents/res/ |
D | app6.c | 16 UINT sz_buff /* Size of read/write buffer (must be multiple of FF_MAX_SS) */ in test_raw_speed() argument 32 printf("Starting raw write test at sector %lu in %u bytes of data chunks...", lba, sz_buff); in test_raw_speed() 34 for (ofs = 0; ofs < len / ss; ofs += sz_buff / ss) { in test_raw_speed() 35 if (disk_write(pdrv, buff, lba + ofs, sz_buff / ss) != RES_OK) { in test_raw_speed() 47 printf("Starting raw read test at sector %lu in %u bytes of data chunks...", lba, sz_buff); in test_raw_speed() 49 for (ofs = 0; ofs < len / ss; ofs += sz_buff / ss) { in test_raw_speed() 50 if (disk_read(pdrv, buff, lba + ofs, sz_buff / ss) != RES_OK) { in test_raw_speed()
|
D | app2.c | 11 UINT sz_buff, /* Size of path name buffer (items) */ in delete_node() argument 31 if (i + j >= sz_buff) { /* Buffer over flow? */ in delete_node() 37 fr = delete_node(path, sz_buff, fno); in delete_node()
|
D | app4.c | 40 UINT sz_buff /* Size of the working buffer in unit of byte */ in test_diskio() argument 51 printf("test_diskio(%u, %u, 0x%08X, 0x%08X)\n", pdrv, ncyc, (UINT)buff, sz_buff); in test_diskio() 53 if (sz_buff < FF_MAX_SS + 8) { in test_diskio() 156 lba = 5; ns = sz_buff / sz_sect; in test_diskio()
|