Searched refs:actsize (Results 1 - 2 of 2) sorted by relevance

/u-boot/fs/fat/
H A Dfat.c334 loff_t actsize; local
349 actsize = bytesperclust;
352 while (actsize <= pos) {
359 actsize += bytesperclust;
362 /* actsize > pos */
363 actsize -= bytesperclust;
364 filesize -= actsize;
365 pos -= actsize;
371 actsize = min(filesize, (loff_t)bytesperclust);
372 tmp_buffer = malloc_cache_aligned(actsize);
[all...]
H A Dfat_write.c937 loff_t offset, actsize, wsize; local
996 actsize = bytesperclust;
999 if (filesize <= (cur_pos + actsize))
1014 actsize += bytesperclust;
1023 wsize = min_t(unsigned long long, actsize, filesize - cur_pos);
1027 buffer, wsize, &actsize)) {
1096 actsize = bytesperclust;
1100 while (actsize < filesize) {
1113 actsize += bytesperclust;
1117 actsize
[all...]

Completed in 182 milliseconds