Home | History | Annotate | Download | only in fsck_msdos

Lines Matching defs:last

447 	int last;
461 last = boot->RootDirEnts * 32;
464 last = boot->SecPerClust * boot->BytesPerSec;
469 buf = malloc(last);
479 if (read(f, buf, last) != last) {
483 last /= 32;
529 int i, j, k, last;
553 last = boot->RootDirEnts * 32;
556 last = boot->SecPerClust * boot->BytesPerSec;
566 if (read(f, buffer, last) != last) {
570 last /= 32;
571 for (p = buffer, i = 0; i < last; i++, p += 32) {
958 last *= 32;
960 || write(f, buffer, last) != last) {