Home
last modified time | relevance | path

Searched refs:fat (Results 1 – 25 of 70) sorted by relevance

123

/openbsd/src/sbin/fsck_msdos/
Dfat.c45 checkclnum(struct bootblock *boot, int fat, cl_t cl, cl_t *next) in checkclnum() argument
60 cl, fat, in checkclnum()
78 struct fatEntry *fat; in readfat() local
85 fat = calloc(boot->NumClusters, sizeof(struct fatEntry)); in readfat()
87 if (fat == NULL || buffer == NULL) { in readfat()
89 free(fat); in readfat()
100 free(fat); in readfat()
108 free(fat); in readfat()
153 fat[cl].next = p[0] + (p[1] << 8) in readfat()
155 fat[cl].next &= boot->ClustMask; in readfat()
[all …]
Dcheck.c52 struct fatEntry *fat = NULL; in checkfilesys() local
99 mod |= readfat(dosfs, &boot, boot.ValidFat >= 0 ? boot.ValidFat : 0, &fat); in checkfilesys()
111 free(fat); in checkfilesys()
116 mod |= comparefat(&boot, fat, currentFat, i); in checkfilesys()
119 free(fat); in checkfilesys()
128 mod |= checkfat(&boot, fat); in checkfilesys()
130 free(fat); in checkfilesys()
136 mod |= writefat(dosfs, &boot, fat); /* delay writing fats? XXX */ in checkfilesys()
138 free(fat); in checkfilesys()
146 mod |= resetDosDirSection(&boot, fat); in checkfilesys()
[all …]
Ddir.c211 resetDosDirSection(struct bootblock *boot, struct fatEntry *fat) in resetDosDirSection() argument
232 if (fat[boot->RootCl].head != boot->RootCl) { in resetDosDirSection()
237 fat[boot->RootCl].flags |= FAT_USED; in resetDosDirSection()
281 delete(int f, struct bootblock *boot, struct fatEntry *fat, cl_t startcl, in delete() argument
314 startcl = fat[startcl].next; in delete()
321 removede(int f, struct bootblock *boot, struct fatEntry *fat, u_char *start, in removede() argument
337 if (delete(f, boot, fat, in removede()
356 checksize(struct bootblock *boot, struct fatEntry *fat, u_char *p, in checksize() argument
369 physicalSize = fat[dir->head].length * boot->ClusterSize; in checksize()
392 cl = fat[cl].next; in checksize()
[all …]
DMakefile5 SRCS= main.c check.c boot.c fat.c dir.c fsutil.c
/openbsd/src/gnu/usr.bin/cvs/vms/
Dvmsmunch_private.h27 unsigned char fat$b_rtype;
29 unsigned fat$v_rtype : 4;
30 unsigned fat$v_fileorg : 4;
31 } fat$r_rtype_bits;
32 } fat$r_rtype_overlay;
49 unsigned char fat$b_rattrib;
51 unsigned fat$v_fortrancc : 1;
52 unsigned fat$v_impliedcc : 1;
53 unsigned fat$v_printcc : 1;
54 unsigned fat$v_nospan : 1;
[all …]
Dvmsmunch.c92 #define RTYPE fat$r_rtype_overlay.fat$r_rtype_bits
93 #define RATTRIB fat$r_rattrib_overlay.fat$r_rattrib_bits
262 *(int *)ptr = Fat.RTYPE.fat$v_rtype;
267 old_rtype = Fat.RTYPE.fat$v_rtype; /* save current one */
270 Fat.RTYPE.fat$v_rtype = FAT$C_STREAMLF; /* Unix I/O happy */
272 Fat.RTYPE.fat$v_rtype = *(int *)ptr;
276 Fat.RTYPE.fat$v_rtype = old_rtype;
/openbsd/src/sbin/newfs_msdos/
Dnewfs_msdos.c71 #define mincls(fat) ((fat) == 12 ? MINCLS12 : \ argument
72 (fat) == 16 ? MINCLS16 : \
75 #define maxcls(fat) ((fat) == 12 ? MAXCLS12 : \ argument
76 (fat) == 16 ? MAXCLS16 : \
251 u_int fat, bss, rds, cls, dir, lsn, x, x1, x2; in main() local
380 if (!(fat = opt_F)) { in main()
382 fat = 12; in main()
384 fat = 32; in main()
386 if ((fat == 32 && opt_e) || (fat != 32 && (opt_i || opt_k))) in main()
388 fat == 32 ? 'e' : opt_i ? 'i' : 'k', in main()
[all …]
/openbsd/src/usr.bin/file/magdir/
Dcafebabe6 # Since Java bytecode and Mach-O fat-files have the same magic number, the test
8 # at offset 4 in a mach-O fat file tells the number of architectures; the short at
23 >>4 belong 1 Mach-O fat file with 1 architecture
25 >>>4 belong <20 Mach-O fat file with %ld architectures
/openbsd/src/gnu/llvm/llvm/tools/llvm-lipo/
DLipoOpts.td40 "fat input file. Requires -output option">;
45 "arch_type from the fat input file. Requires -output option">;
/openbsd/src/distrib/special/fsck_msdos/
DMakefile4 SRCS= main.c check.c boot.c fat.c dir.c fsutil.c
/openbsd/src/gnu/llvm/llvm/docs/CommandGuide/
Dllvm-lipo.rst43 Architectures in the fat file: <filename> are: <architectures>
44 Non-fat file: <filename> is architecture: <architecture>
/openbsd/src/gnu/llvm/clang/docs/
DOffloadingDesign.rst36 from the device phase then needs to be embedded into the host to create a fat
37 object. A special tool then needs to extract the device code from the fat
56 * Run the backend on the host bitcode file and create a :ref:`fat object file
58 * Pass the fat object file to the :ref:`linker wrapper tool <Device Linking>`
220 A fat binary is a binary file that contains information intended for another
221 device. We create a fat object by embedding the output of the device compilation
235 is run on the host, creating a fat object. Using fat objects allows us to treat
DClangOffloadBundler.rst161 ``clang-offload-bundler`` is used to create a *fat binary*
162 to be loaded by the HIP runtime. The fat binary can be
168 ``clang-offload-bundler`` is used to create a *fat binary*
169 to be loaded by the HIP runtime. The fat binary can be
DClangOffloadPackager.rst17 create a fat-binary.
/openbsd/src/gnu/usr.bin/binutils-2.17/bfd/
Dmach-o-target.c38 #error Mach-O fat files must always be big-endian.
/openbsd/src/gnu/usr.bin/binutils/bfd/
Dmach-o-target.c38 #error Mach-O fat files must always be big-endian.
/openbsd/src/games/quiz/datfiles/
Dposneg19 fat|thick:thin|skinny
Dlatin116 pinguis:fat|rich
/openbsd/src/distrib/notes/loongson/
Dinstall33 dnl Alternatively, if your particular PMON flavour supports `fat' filesystems,
36 dnl PMON> boot /dev/fs/fat@usb0:/bsd.rd
/openbsd/src/sys/dev/ata/
Datascsi.c731 int fat; in atascsi_disk_vpd_supported() local
734 fat = ISSET(ap->ap_features, ATA_PORT_F_TRIM) ? 0 : 1; in atascsi_disk_vpd_supported()
740 _lto2b(sizeof(pg.list) - fat, pg.hdr.page_length); in atascsi_disk_vpd_supported()
749 bcopy(&pg, xs->data, MIN(sizeof(pg) - fat, xs->datalen)); in atascsi_disk_vpd_supported()
/openbsd/src/gnu/usr.bin/gcc/gcc/
Dtree.def514 examples of such types. This mechanism is also used to create "fat
515 pointers" for unconstrained array types in Ada; the fat pointer is a
519 to by the first field in the fat pointer refer to the values in the
541 In the latter case, we need the fat pointer, because the bounds of
544 the fat pointer that obtained the array pointer.
/openbsd/src/gnu/gcc/gcc/
Dtree.def563 examples of such types. This mechanism is also used to create "fat
564 pointers" for unconstrained array types in Ada; the fat pointer is a
568 to by the first field in the fat pointer refer to the values in the
598 In the latter case, we need the fat pointer, because the bounds of
601 the fat pointer that obtained the array pointer. */
/openbsd/src/gnu/llvm/llvm/docs/
DCompileCudaWithLLVM.rst251 single "fat binary" file, ``F``.
274 single fat binary file, ``F``.
/openbsd/src/gnu/usr.bin/perl/
DREADME.macosx137 libgdbm.3.0.0.dylib: Mach-O fat file with 2 architectures
/openbsd/src/games/fortune/datfiles/
Dfortunes.sp.ok1692 net.fat

123