/illumos-gate/usr/src/grub/grub-0.97/stage2/ |
H A D | fs.h | 146 struct fs struct 148 int xxx1; /* struct fs *fs_link; */ argument 149 int xxx2; /* struct fs *fs_rlink; */ argument 150 mach_daddr_t fs_sblkno; /* addr of super-block in filesys */ argument 151 mach_daddr_t fs_cblkno; /* offset of cyl-block in filesys */ argument 152 mach_daddr_t fs_iblkno; /* offset of inode-blocks in filesys */ argument 153 mach_daddr_t fs_dblkno; /* offset of first data after cg */ argument 154 int fs_cgoffset; /* cylinder group offset in cylinder */ argument 155 int fs_cgmask; /* used to calc mod fs_ntrak */ argument 156 mach_time_t fs_time; /* last time written */ argument [all …]
|
H A D | ufs.h | 62 struct fs { struct 63 grub_uint32_t fs_link; /* linked list of file systems */ argument 64 grub_uint32_t fs_rolled; /* logging only: fs fully rolled */ argument 65 grub_daddr32_t fs_sblkno; /* addr of super-block in filesys */ argument 66 grub_daddr32_t fs_cblkno; /* offset of cyl-block in filesys */ argument 67 grub_daddr32_t fs_iblkno; /* offset of inode-blocks in filesys */ argument 68 grub_daddr32_t fs_dblkno; /* offset of first data after cg */ argument 69 grub_int32_t fs_cgoffset; /* cylinder group offset in cylinder */ argument 70 grub_int32_t fs_cgmask; /* used to calc mod fs_ntrak */ argument 71 grub_time32_t fs_time; /* last time written */ argument [all …]
|
H A D | ufs2.h | 244 struct fs { struct 245 grub_int32_t fs_firstfield; /* historic filesystem linked list, */ argument 246 grub_int32_t fs_unused_1; /* used for incore super blocks */ argument 247 grub_int32_t fs_sblkno; /* offset of super-block in filesys */ argument 248 grub_int32_t fs_cblkno; /* offset of cyl-block in filesys */ argument 249 grub_int32_t fs_iblkno; /* offset of inode-blocks in filesys */ argument 250 grub_int32_t fs_dblkno; /* offset of first data after cg */ argument 251 grub_int32_t fs_old_cgoffset; /* cylinder group offset in cylinder */ argument 252 grub_int32_t fs_old_cgmask; /* used to calc mod fs_ntrak */ argument 253 grub_int32_t fs_old_time; /* last time written */ argument [all …]
|
/illumos-gate/usr/src/uts/common/sys/fs/ |
H A D | ufs_fs.h | 236 struct fs { struct 237 uint32_t fs_link; /* linked list of file systems */ argument 238 uint32_t fs_rolled; /* logging only: fs fully rolled */ argument 239 daddr32_t fs_sblkno; /* addr of super-block in filesys */ argument 240 daddr32_t fs_cblkno; /* offset of cyl-block in filesys */ argument 241 daddr32_t fs_iblkno; /* offset of inode-blocks in filesys */ argument 242 daddr32_t fs_dblkno; /* offset of first data after cg */ argument 243 int32_t fs_cgoffset; /* cylinder group offset in cylinder */ argument 244 int32_t fs_cgmask; /* used to calc mod fs_ntrak */ argument 245 time32_t fs_time; /* last time written */ argument [all …]
|
/illumos-gate/usr/src/boot/sys/ufs/ffs/ |
H A D | fs.h | 260 struct fs { struct 261 int32_t fs_firstfield; /* historic filesystem linked list, */ argument 262 int32_t fs_unused_1; /* used for incore super blocks */ argument 263 int32_t fs_sblkno; /* offset of super-block in filesys */ argument 264 int32_t fs_cblkno; /* offset of cyl-block in filesys */ argument 265 int32_t fs_iblkno; /* offset of inode-blocks in filesys */ argument 266 int32_t fs_dblkno; /* offset of first data after cg */ argument 267 int32_t fs_old_cgoffset; /* cylinder group offset in cylinder */ argument 268 int32_t fs_old_cgmask; /* used to calc mod fs_ntrak */ argument 269 int32_t fs_old_time; /* last time written */ argument [all …]
|
/illumos-gate/usr/src/uts/common/fs/zfs/lua/ |
H A D | lcode.c | 36 void luaK_nil (FuncState *fs, int from, int n) { in luaK_nil() 58 int luaK_jump (FuncState *fs) { in luaK_jump() 68 void luaK_ret (FuncState *fs, int first, int nret) { in luaK_ret() 73 static int condjump (FuncState *fs, OpCode op, int A, int B, int C) { in condjump() 79 static void fixjump (FuncState *fs, int pc, int dest) { in fixjump() 93 int luaK_getlabel (FuncState *fs) { in luaK_getlabel() 99 static int getjump (FuncState *fs, int pc) { in getjump() 108 static Instruction *getjumpcontrol (FuncState *fs, int pc) { in getjumpcontrol() 121 static int need_value (FuncState *fs, int list) { in need_value() 130 static int patchtestreg (FuncState *fs, int node, int reg) { in patchtestreg() [all …]
|
H A D | lparser.c | 82 static l_noret errorlimit (FuncState *fs, int limit, const char *what) { in errorlimit() 95 static void checklimit (FuncState *fs, int v, int l, const char *what) { in checklimit() 165 FuncState *fs = ls->fs; in registerlocalvar() local 178 FuncState *fs = ls->fs; in new_localvar() local 197 static LocVar *getlocvar (FuncState *fs, int i) { in getlocvar() 205 FuncState *fs = ls->fs; in adjustlocalvars() local 213 static void removevars (FuncState *fs, int tolevel) { in removevars() 220 static int searchupvalue (FuncState *fs, TString *name) { in searchupvalue() 230 static int newupvalue (FuncState *fs, TString *name, expdesc *v) { in newupvalue() 245 static int searchvar (FuncState *fs, TString *n) { in searchvar() [all …]
|
H A D | lcode.h | 39 #define getcode(fs,e) ((fs)->f->code[(e)->u.info]) argument 41 #define luaK_codeAsBx(fs,o,A,sBx) luaK_codeABx(fs,o,A,(sBx)+MAXARG_sBx) argument 43 #define luaK_setmultret(fs,e) luaK_setreturns(fs, e, LUA_MULTRET) argument 45 #define luaK_jumpto(fs,t) luaK_patchlist(fs, luaK_jump(fs), t) argument
|
/illumos-gate/usr/src/boot/libsa/ |
H A D | dosfs.c | 112 #define bytblk(fs, n) ((n) >> (fs)->bshift) argument 113 #define blkbyt(fs, b) ((b) << (fs)->bshift) argument 114 #define secblk(fs, s) ((s) >> ((fs)->bshift - SSHIFT)) argument 115 #define blksec(fs, b) ((b) << ((fs)->bshift - SSHIFT)) argument 118 #define blkoff(fs, b) (secbyt((fs)->lsndta) + blkbyt(fs, (b) - LOCLUS)) argument 121 #define blklsn(fs, b) ((fs)->lsndta + blksec(fs, (b) - LOCLUS)) argument 129 #define okclus(fs, c) ((c) >= LOCLUS && (c) <= (fs)->xclus) argument 149 dos_read_fatblk(DOS_FS *fs, struct open_file *fd, uint_t blknum) in dos_read_fatblk() 183 dos_mount(DOS_FS *fs, struct open_file *fd) in dos_mount() 223 dos_unmount(DOS_FS *fs) in dos_unmount() [all …]
|
H A D | ufs.c | 147 struct fs *fs = fp->f_fs; in read_inode() local 202 struct fs *fs = fp->f_fs; in block_map() local 304 struct fs *fs = fp->f_fs; in buf_write_file() local 379 struct fs *fs = fp->f_fs; in buf_read_file() local 485 struct fs *fs; in ufs_open() local 627 struct fs *fs = fp->f_fs; in ufs_open() local
|
/illumos-gate/usr/src/uts/common/fs/ufs/ |
H A D | ufs_subr.c | 196 struct fs *fs; in ufs_update() local 577 struct fs *fs; in ufs_sync_indir() local 680 struct fs *fs; in ufs_indirblk_sync() local 875 struct fs *fs = ufsvfsp->vfs_fs; in ufs_checkclean() local 991 struct fs *fs = ufsvfsp->vfs_fs; in ufs_setreclaim() local 1026 struct fs *fs = ufsvfsp->vfs_fs; in ufs_notclean() local 1124 struct fs *fs = ufsvfsp->vfs_fs; in ufs_sbwrite() local 1240 ufs_construct_si(dev_t dev, struct fs *fs, struct ufsvfs *ufsvfsp) in ufs_construct_si() 1309 ufs_getsummaryinfo(dev_t dev, struct ufsvfs *ufsvfsp, struct fs *fs) in ufs_getsummaryinfo() 1385 ufs_putsummaryinfo(dev_t dev, struct ufsvfs *ufsvfsp, struct fs *fs) in ufs_putsummaryinfo() [all …]
|
H A D | ufs_alloc.c | 107 struct fs *fs; in alloc() local 186 struct fs *fs; in realloccg() local 298 struct fs *fs; in ufs_ialloc() local 478 struct fs *fs = dp->i_fs; in dirpref() local 537 struct fs *fs; in blkpref() local 625 struct fs *fs = ip->i_fs; in free() local 773 struct fs *fs = ip->i_fs; in ufs_ifree() local 847 struct fs *fs; in hashalloc() local 897 struct fs *fs = ip->i_fs; in fragextend() local 978 struct fs *fs = ip->i_fs; in alloccg() local [all …]
|
H A D | ufs_trans.c | 218 struct fs *fs; in ufs_trans_push_si() local 324 struct fs *fs = ufsvfsp->vfs_fs; in ufs_trans_mata_mount() local 360 ufs_trans_mata_si(struct ufsvfs *ufsvfsp, struct fs *fs) in ufs_trans_mata_si() 380 struct fs *fs = ufsvfsp->vfs_fs; in ufs_trans_mata_direct() local 406 struct fs *fs = ufsvfsp->vfs_fs; in ufs_trans_mata_indir() local 473 struct fs *fs = ufsvfsp->vfs_fs; in ufs_trans_mata_alloc() local 646 struct fs *fs = ufsvfsp->vfs_fs; in ufs_log_amt() local 804 struct fs *fs = ufsvfsp->vfs_fs; in ufs_trans_itrunc() local
|
H A D | ufs_snap.c | 65 struct fs *fs = ufsvfsp->vfs_fs; in ufs_snap_create() local 281 struct fs *fs = ufsvfsp->vfs_fs; in ufs_snap_find_candidates() local 359 struct fs *fs = ufsvfsp->vfs_fs; in ufs_snap_delete() local
|
H A D | ufs_bmap.c | 112 #define DOEXTENT(fs, lbn, boff, bnp, lenp, size, tblp, n, chkfrag, maxtrans) {\ argument 209 struct fs *fs = ufsvfsp->vfs_fs; in bmap_read() local 311 struct fs *fs; in bmap_write() local 918 struct fs *fs = ip->i_fs; in bmap_has_holes() local 990 findextent(struct fs *fs, daddr32_t *sbp, int n, int *lenp, int maxtransfer) in findextent() 1184 struct fs *fs = ufsvfsp->vfs_fs; in bmap_find() local 1335 struct fs *fs; in bmap_set_bn() local
|
H A D | ufs_filio.c | 99 struct fs *fs; /* fs for file system */ in ufs_fioio() local 315 struct fs *fs; in ufs_fiosdio() local 563 struct fs *fs; in ufs_fiotune() local
|
H A D | lufs.c | 268 lufs_snarf(ufsvfs_t *ufsvfsp, struct fs *fs, int ronly) in lufs_snarf() 566 struct fs *fs = ufsvfsp->vfs_fs; in lufs_free() local 667 struct fs *fs = ufsvfsp->vfs_fs; in lufs_alloc() local 853 struct fs *fs = ufsvfsp->vfs_fs; in lufs_disable() local 988 struct fs *fs; in lufs_enable() local
|
H A D | ufs_extvnops.c | 69 struct fs *fs; in ufs_rdwr_data() local 248 struct fs *fs; in ufs_alloc_data() local
|
/illumos-gate/usr/src/lib/libc/port/gen/ |
H A D | strtod.c | 46 fp_exception_field_type fs; in strtod() local 79 fp_exception_field_type fs; in strtof() local 110 fp_exception_field_type fs; in strtold() local
|
/illumos-gate/usr/src/contrib/ast/src/lib/libast/features/ |
H A D | sfinit.c | 34 char* fs = ""; in main() local 38 char* fs = "F"; in main() local
|
/illumos-gate/usr/src/lib/libc/port/i18n/ |
H A D | wstod.c | 58 fp_exception_field_type fs; in wcstod() local 88 fp_exception_field_type fs; in wcstof() local 118 fp_exception_field_type fs; in wcstold() local
|
/illumos-gate/usr/src/contrib/ast/src/lib/libast/misc/ |
H A D | fmtrec.c | 32 fmtrec(Recfmt_t f, int fs) in fmtrec()
|
/illumos-gate/usr/src/cmd/fs.d/ufs/fsck/ |
H A D | pass5.c | 50 struct fs *fs = &sblock; in pass5() local 251 cg_blks(fs, newcg, j)[cbtorpos(fs, i)]++; in pass5() local
|
/illumos-gate/usr/src/contrib/ast/src/lib/libcmd/ |
H A D | id.c | 105 register struct fsg* fs; in getfsids() local 202 register struct fsg* fs; in getids() local
|
/illumos-gate/usr/src/lib/libc/i386/threads/ |
H A D | machdep.c | 92 static greg_t fs, es, ds, cs, ss; in setup_context() local 213 greg_t fs, greg_t es, greg_t ds, in __csigsetjmp()
|