Searched refs:fat (Results 1 - 25 of 26) sorted by relevance

12

/netbsd-6-1-5-RELEASE/sys/arch/i386/stand/fatboot/fat16/
H A DMakefile6 .include <../Makefile.fat>
/netbsd-6-1-5-RELEASE/sbin/fsck_msdos/
H A Dfat.c1 /* $NetBSD: fat.c,v 1.21 2008/07/24 14:23:16 matthias Exp $ */
31 __RCSID("$NetBSD: fat.c,v 1.21 2008/07/24 14:23:16 matthias Exp $");
52 checkclnum(struct bootblock *boot, u_int fat, cl_t cl, cl_t *next) argument
67 cl, fat,
121 struct fatEntry *fat; local
132 fat = malloc(len = boot->NumClusters * sizeof(struct fatEntry));
133 if (fat == NULL) {
138 (void)memset(fat, 0, len);
203 fat[cl].next = p[0] + (p[1] << 8)
205 fat[c
338 clearchain(struct bootblock *boot, struct fatEntry *fat, cl_t head) argument
352 tryclear(struct bootblock *boot, struct fatEntry *fat, cl_t head, cl_t *truncp) argument
368 checkfat(struct bootblock *boot, struct fatEntry *fat) argument
462 writefat(int fs, struct bootblock *boot, struct fatEntry *fat, int correct_fat) argument
570 checklost(int dosfs, struct bootblock *boot, struct fatEntry *fat) argument
[all...]
H A Dcheck.c49 struct fatEntry *fat = NULL; local
88 mod |= readfat(dosfs, &boot, boot.ValidFat >= 0 ? boot.ValidFat : 0, &fat);
103 mod |= comparefat(&boot, fat, currentFat, i);
112 mod |= checkfat(&boot, fat);
120 mod |= resetDosDirSection(&boot, fat);
126 mod |= handleDirTree(dosfs, &boot, fat);
133 mod |= checklost(dosfs, &boot, fat);
140 mod |= writefat(dosfs, &boot, fat, mod & FSFIXFAT);
164 mod |= writefat(dosfs, &boot, fat, 1);
180 free(fat);
[all...]
H A Ddir.c218 resetDosDirSection(struct bootblock *boot, struct fatEntry *fat) argument
253 cl = fat[boot->RootCl].next;
256 || fat[boot->RootCl].head != boot->RootCl) {
267 fat[boot->RootCl].next = CLUST_FREE;
273 fat[boot->RootCl].flags |= FAT_USED;
314 delete(int f, struct bootblock *boot, struct fatEntry *fat, cl_t startcl, argument
347 startcl = fat[startcl].next;
354 removede(int f, struct bootblock *boot, struct fatEntry *fat, u_char *start, argument
371 if (delete(f, boot, fat,
391 checksize(struct bootblock *boot, struct fatEntry *fat, u_cha argument
463 readDosDirSection(int f, struct bootblock *boot, struct fatEntry *fat, struct dosDirEntry *dir) argument
886 handleDirTree(int dosfs, struct bootblock *boot, struct fatEntry *fat) argument
927 reconnect(int dosfs, struct bootblock *boot, struct fatEntry *fat, cl_t head) argument
[all...]
H A DMakefile7 SRCS= main.c check.c boot.c fat.c dir.c fsutil.c snapshot.c
/netbsd-6-1-5-RELEASE/sys/fs/msdosfs/
H A DMakefile5 INCS= bootsect.h bpb.h denode.h direntry.h fat.h msdosfsmount.h
H A Dmsdosfs_denode.c73 #include <fs/msdosfs/fat.h>
351 fc_purge(ldep, 0); /* init the fat cache for this denode */
H A Dmsdosfs_fat.c74 #include <fs/msdosfs/fat.h>
229 * Rummage around in the fat cache, maybe we can avoid tromping
230 * thru every fat entry for the file. And, keep track of how far
312 /* update last file cluster entry in the fat cache */
318 * Find the closest entry in the fat cache to the cluster we are looking
342 * Purge the fat cache in denode dep of all entries relating to file
359 * Update the fat.
360 * If mirroring the fat, update all copies, with the first copy as last.
361 * Else update only the current fat (ignoring the others).
364 * bp - addr of modified fat bloc
[all...]
H A Dmsdosfs_lookup.c66 #include <fs/msdosfs/fat.h>
H A Dmsdosfs_vfsops.c86 #include <fs/msdosfs/fat.h>
107 MALLOC_JUSTDEFINE(M_MSDOSFSFAT, "MSDOSFS fat", "MSDOS FS fat table");
690 * sure that one fat entry will not be split across
794 * If they want fat updates to be synchronous then let them suffer
796 * the fat being correct just about all the time. I suppose this
/netbsd-6-1-5-RELEASE/sys/netinet/
H A Dtcp_vtw.c121 /*!\brief allocate a fat pointer from a collection.
124 fatp_alloc(fatp_ctl_t *fat) argument
128 if (fat->nfree) {
129 fp = fat->free;
131 fat->free = fatp_next(fat, fp);
132 --fat->nfree;
133 ++fat->nalloc;
143 /*!\brief free a fat pointer.
146 fatp_free(fatp_ctl_t *fat, fatp_ argument
168 fatp_init(fatp_ctl_t *fat, uint32_t n, uint32_t m, fatp_t *fat_base, fatp_t **fat_hash) argument
212 fatp_key(fatp_ctl_t *fat, fatp_t *fp, uint32_t slot) argument
232 fatp_slot_from_key(fatp_ctl_t *fat, uint32_t key) argument
252 fatp_from_key(fatp_ctl_t *fat, uint32_t key) argument
307 fatp_vtw_inshash(fatp_ctl_t *fat, uint32_t idx, uint32_t tag, int which, void *dbg) argument
468 fatp_ctl_t *fat = ctl->fat; local
1232 vtw_init(fatp_ctl_t *fat, vtw_ctl_t *ctl, const uint32_t n, vtw_t *ctl_base_v) argument
1735 fatp_ctl_t *fat; local
1762 fatp_ctl_t *fat; local
1828 fatp_ctl_t *fat; local
[all...]
H A Dtcp_vtw.h40 * One such ad-hoc technique is fat pointers. Additional degrees of
44 * The 'fat pointer' approach aggregates, for x86_32, 15 linked-list
46 * cache line are used for linking fat pointers, and for
54 * All the fat pointers are from a contiguous allocation arena. Thus,
61 * In order to add a data element to a fat pointer, a key value is
96 * search time, and use fat pointers to reduce the cache impacts of
105 * expiration. It will be added to a hash bucket implemented with fat
108 * will be added to this. As more entries are added, the fat pointer
109 * cache line will fill, requiring additional cache lines for fat
112 * expire, the corresponding slot in the fat pointe
246 fatp_ctl_t *fat; /* collection of fatp to use */ member in struct:vtw_ctl
302 fatp_next(fatp_ctl_t *fat, fatp_t *fp) argument
310 fatp_index(fatp_ctl_t *fat, fatp_t *fp) argument
[all...]
/netbsd-6-1-5-RELEASE/sbin/newfs_msdos/
H A Dnewfs_msdos.c83 #define mincls(fat) ((fat) == 12 ? MINCLS12 : \
84 (fat) == 16 ? MINCLS16 : \
87 #define maxcls(fat) ((fat) == 12 ? MAXCLS12 : \
88 (fat) == 16 ? MAXCLS16 : \
270 u_int fat, bss, rds, cls, dir, lsn, x, x1, x2; local
439 if (!(fat = opt_F)) {
441 fat = 12;
443 fat
[all...]
/netbsd-6-1-5-RELEASE/external/lgpl3/gmp/dist/tests/mpn/
H A DMakefile.am24 check_PROGRAMS = t-asmtype t-aors_1 t-divrem_1 t-fat t-get_d \
H A DMakefile.in55 t-divrem_1$(EXEEXT) t-fat$(EXEEXT) t-get_d$(EXEEXT) \
101 t_fat_SOURCES = t-fat.c
102 t_fat_OBJECTS = t-fat$U.$(OBJEXT)
238 SOURCES = t-aors_1.c t-asmtype.c t-bdiv.c t-div.c t-divrem_1.c t-fat.c \
245 t-fat.c t-get_d.c t-hgcd.c t-instrument.c t-invert.c \
479 t-fat$(EXEEXT): $(t_fat_OBJECTS) $(t_fat_DEPENDENCIES)
480 @rm -f t-fat$(EXEEXT)
584 t-fat_.c: t-fat.c $(ANSI2KNR)
585 $(CPP) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) `if test -f $(srcdir)/t-fat.c; then echo $(srcdir)/t-fat
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/gas/config/
H A Dte-vms.c245 if (siz) *siz = (512 * 65536 * recattr.fat$w_efblkh) +
246 (512 * (recattr.fat$w_efblkl - 1)) +
247 recattr.fat$w_ffbyte;
248 if (rfo) *rfo = recattr.fat$v_rtype;
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/bfd/
H A Dmach-o-target.c91 #error Mach-O fat files must always be big-endian.
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/bfd/
H A Dmach-o-target.c91 #error Mach-O fat files must always be big-endian.
/netbsd-6-1-5-RELEASE/external/lgpl3/gmp/dist/mpn/x86/fat/
H A Dfat_entry.asm1 dnl x86 fat binary entrypoints.
38 dnl Emit a fat binary entrypoint function of the given name. This is the
91 dnl Emit a fat binary initializer function of the given name. These
/netbsd-6-1-5-RELEASE/external/lgpl3/gmp/dist/mpn/x86_64/fat/
H A Dfat_entry.asm1 dnl x86 fat binary entrypoints.
52 dnl Emit a fat binary entrypoint function of the given name. This is the
95 dnl Emit a fat binary initializer function of the given name. These
/netbsd-6-1-5-RELEASE/usr.bin/netstat/
H A Dvtw.c295 vtw_tcpv4[i].fat = &fat_tcpv4;
398 vtw_tcpv6[i].fat = &fat_tcpv6;
/netbsd-6-1-5-RELEASE/sys/arch/atari/stand/xxboot/ahdi-xxboot/
H A Dxxboot.ahdi.S56 .byte 0 | fat
/netbsd-6-1-5-RELEASE/sys/arch/atari/stand/xxboot/fdboot/
H A Dfdboot.S56 .byte 0 | fat
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/
H A Dvmsdbgout.c1931 if (siz) *siz = (512 * 65536 * recattr.fat$w_efblkh) +
1932 (512 * (recattr.fat$w_efblkl - 1)) +
1933 recattr.fat$w_ffbyte;
1934 if (rfo) *rfo = recattr.fat$v_rtype;
/netbsd-6-1-5-RELEASE/external/lgpl3/gmp/dist/
H A Dconfigure1606 --enable-fat build a fat binary on systems that support it
3972 # Check whether --enable-fat was given.
3976 *) as_fn_error "bad value $enableval for --enable-fat, need yes or no" "$LINENO" 5 ;;
4051 # fat_path fat binary mpn search path [if fat binary desired]
4052 # fat_functions fat functions
4053 # fat_thresholds fat thresholds
6819 # If the user asked for a fat build, override the path and flags set above
6825 extra_functions="$extra_functions fat fat_entr
[all...]

Completed in 157 milliseconds

12