/dflybsd-src/sys/vfs/ufs/ |
H A D | fs.h | 189 struct fs { struct 190 int32_t fs_firstfield; /* historic filesystem linked list, */ argument 191 int32_t fs_unused_1; /* used for incore super blocks */ argument 192 ufs_daddr_t fs_sblkno; /* addr of super-block in filesys */ argument 193 ufs_daddr_t fs_cblkno; /* offset of cyl-block in filesys */ argument 194 ufs_daddr_t fs_iblkno; /* offset of inode-blocks in filesys */ argument 195 ufs_daddr_t fs_dblkno; /* offset of first data after cg */ argument 196 int32_t fs_cgoffset; /* cylinder group offset in cylinder */ argument 197 int32_t fs_cgmask; /* used to calc mod fs_ntrak */ argument 198 ufs_time_t fs_time; /* last time written */ argument [all …]
|
H A D | ffs_subr.c | 63 struct fs *fs; in ffs_blkatoff() local 97 struct fs *fs; in ffs_blkatoff_ra() local 163 ffs_fragacct(struct fs *fs, int fragmap, int32_t fraglist[], int cnt) in ffs_fragacct() 221 ffs_isblock(struct fs *fs, unsigned char *cp, ufs_daddr_t h) in ffs_isblock() 246 ffs_isfreeblock(struct fs *fs, unsigned char *cp, ufs_daddr_t h) in ffs_isfreeblock() 266 ffs_clrblock(struct fs *fs, u_char *cp, ufs_daddr_t h) in ffs_clrblock() 290 ffs_setblock(struct fs *fs, unsigned char *cp, ufs_daddr_t h) in ffs_setblock()
|
H A D | ffs_alloc.c | 107 struct fs *fs; in ffs_alloc() local 174 struct fs *fs; in ffs_realloccg() local 351 struct fs *fs; in ffs_reallocblks() local 588 struct fs *fs; in ffs_valloc() local 666 struct fs *fs; in ffs_dirpref() local 799 struct fs *fs; in ffs_blkpref() local 869 struct fs *fs; in ffs_hashalloc() local 917 struct fs *fs; in ffs_fragextend() local 1001 struct fs *fs; in ffs_alloccg() local 1117 struct fs *fs; in ffs_alloccgblk() local [all …]
|
H A D | ffs_vfsops.c | 138 struct fs *fs; in ffs_mount() local 440 struct fs *fs; member 452 struct fs *fs, *newfs; in ffs_reload() local 593 struct fs *fs; in ffs_mountfs() local 796 ffs_oldfscompat(struct fs *fs) in ffs_oldfscompat() 827 struct fs *fs; in ffs_unmount() local 920 struct fs *fs; in ffs_statfs() local 958 struct fs *fs; in ffs_sync() local 1067 struct fs *fs; in ffs_vget() local 1211 struct fs *fs; in ffs_fhtovp() local [all …]
|
/dflybsd-src/stand/boot/common/ |
H A D | fs.h | 247 struct fs { struct 248 int32_t fs_firstfield; /* historic filesystem linked list, */ argument 249 int32_t fs_unused_1; /* used for incore super blocks */ argument 250 int32_t fs_sblkno; /* offset of super-block in filesys */ argument 251 int32_t fs_cblkno; /* offset of cyl-block in filesys */ argument 252 int32_t fs_iblkno; /* offset of inode-blocks in filesys */ argument 253 int32_t fs_dblkno; /* offset of first data after cg */ argument 254 int32_t fs_old_cgoffset; /* cylinder group offset in cylinder */ argument 255 int32_t fs_old_cgmask; /* used to calc mod fs_ntrak */ argument 256 int32_t fs_old_time; /* last time written */ argument [all …]
|
H A D | ufsread.c | 46 #define cgbase(fs, c) ((ufs2_daddr_t)((fs)->fs_fpg * (c))) argument 57 #define INDIRPERVBLK(fs) (NINDIR(fs) / ((fs)->fs_bsize >> VBLKSHIFT)) argument 58 #define IPERVBLK(fs) (INOPB(fs) / ((fs)->fs_bsize >> VBLKSHIFT)) argument 59 #define INO_TO_VBA(fs, ipervblk, x) \ argument 63 #define FS_TO_VBA(fs, fsb, off) (fsbtodb(fs, fsb) + \ argument 65 #define FS_TO_VBO(fs, fsb, off) ((off) & VBLKMASK) argument 174 struct fs *fs; in boot2_ufs_init() local 223 struct fs *fs; in boot2_ufs_read_size() local
|
/dflybsd-src/sys/vfs/ext2fs/ |
H A D | fs.h | 104 #define fsbtodb(fs, b) ((daddr_t)(b) << (fs)->e2fs_fsbtodb) argument 105 #define dbtofsb(fs, b) ((b) >> (fs)->e2fs_fsbtodb) argument 108 #define ino_to_cg(fs, x) (((x) - 1) / (fs->e2fs_ipg)) argument 111 #define ino_to_fsba(fs, x) \ argument 116 #define ino_to_fsbo(fs, x) ((x-1) % (fs->e2fs_ipb)) argument 122 #define dtog(fs, d) (((d) - le32toh(fs->e2fs->e2fs_first_dblock)) / \ argument 124 #define dtogd(fs, d) (((d) - le32toh(fs->e2fs->e2fs_first_dblock)) % \ argument 132 #define blkoff(fs, loc) /* calculates (loc % fs->fs_bsize) */ \ argument 135 #define lblktosize(fs, blk) /* calculates (blk * fs->fs_bsize) */ \ argument 138 #define lblkno(fs, loc) /* calculates (loc / fs->fs_bsize) */ \ argument [all …]
|
H A D | ext2_csum.c | 73 ext2_sb_csum_set_seed(struct m_ext2fs *fs) in ext2_sb_csum_set_seed() 87 ext2_sb_csum_verify(struct m_ext2fs *fs) in ext2_sb_csum_verify() 110 ext2_sb_csum_set(struct m_ext2fs *fs) in ext2_sb_csum_set() 129 struct m_ext2fs *fs; in ext2_is_dirent_tail() local 177 struct m_ext2fs *fs; in ext2_dirent_csum() local 244 struct m_ext2fs *fs; in ext2_dx_csum() local 298 struct m_ext2fs *fs; in ext2_dir_blk_csum_verify() local 323 struct m_ext2fs *fs; in ext2_dirent_csum_set() local 342 struct m_ext2fs *fs; in ext2_dx_csum_set() local 369 struct m_ext2fs *fs; in ext2_extent_blk_csum() local [all …]
|
H A D | ext2_alloc.c | 107 struct m_ext2fs *fs; in ext2_alloc() local 160 struct m_ext2fs *fs; in ext2_alloc_meta() local 205 struct m_ext2fs *fs; in ext2_reallocblks() local 388 struct m_ext2fs *fs; in ext2_valloc() local 581 struct m_ext2fs *fs; in ext2_dirpref() local 691 struct m_ext2fs *fs; in ext2_blkpref() local 735 struct m_ext2fs *fs; in ext2_hashalloc() local 776 ext2_cg_number_gdb_nometa(struct m_ext2fs *fs, int cg) in ext2_cg_number_gdb_nometa() 790 ext2_cg_number_gdb_meta(struct m_ext2fs *fs, int cg) in ext2_cg_number_gdb_meta() 806 ext2_cg_number_gdb(struct m_ext2fs *fs, int cg) in ext2_cg_number_gdb() [all …]
|
H A D | ext2_vfsops.c | 136 struct m_ext2fs *fs; in ext2_mount() local 336 ext2_cg_location(struct m_ext2fs *fs, int number) in ext2_cg_location() 366 ext2_cg_validate(struct m_ext2fs *fs) in ext2_cg_validate() 459 struct m_ext2fs *fs) in ext2_compute_sb_data() 726 struct m_ext2fs *fs; member 788 struct m_ext2fs *fs; in ext2_reload() local 863 struct m_ext2fs *fs; in ext2_mountfs() local 1028 struct m_ext2fs *fs; in ext2_unmount() local 1091 struct m_ext2fs *fs; in ext2_statfs() local 1143 struct m_ext2fs *fs; in ext2_statvfs() local [all …]
|
/dflybsd-src/contrib/gcc-8.0/libgcc/soft-fp/ |
H A D | op-common.h | 42 #define _FP_FRAC_SNANP(fs, X) \ argument 46 #define _FP_FRAC_SNANP_SEMIRAW(fs, X) \ argument 54 #define _FP_UNPACK_CANONICAL(fs, wc, X) \ argument 110 #define _FP_UNPACK_SEMIRAW(fs, wc, X) _FP_FRAC_SLL_##wc (X, _FP_WORKBITS) argument 114 #define _FP_CHECK_FLUSH_ZERO(fs, wc, X) \ argument 129 #define _FP_OVERFLOW_SEMIRAW(fs, wc, X) \ argument 151 #define _FP_CHECK_SIGNAN_SEMIRAW(fs, wc, X) \ argument 163 #define _FP_CHOOSENAN_SEMIRAW(fs, wc, R, X, Y, OP) \ argument 177 #define _FP_SETQNAN(fs, wc, X) \ argument 193 #define _FP_SETQNAN_SEMIRAW(fs, wc, X) \ argument [all …]
|
H A D | op-1.h | 82 #define _FP_FRAC_OVERP_1(fs, X) (X##_f & _FP_OVERFLOW_##fs) argument 83 #define _FP_FRAC_CLEAR_OVERP_1(fs, X) (X##_f &= ~_FP_OVERFLOW_##fs) argument 84 #define _FP_FRAC_HIGHBIT_DW_1(fs, X) (X##_f & _FP_HIGHBIT_DW_##fs) argument 96 #define _FP_UNPACK_RAW_1(fs, X, val) \ argument 108 #define _FP_UNPACK_RAW_1_P(fs, X, val) \ argument 122 #define _FP_PACK_RAW_1(fs, val, X) \ argument 135 #define _FP_PACK_RAW_1_P(fs, val, X) \ argument 254 #define _FP_DIV_MEAT_1_imm(fs, R, X, Y, doit) \ argument 271 #define _FP_DIV_MEAT_1_udiv_norm(fs, R, X, Y) \ argument 306 #define _FP_DIV_MEAT_1_udiv(fs, R, X, Y) \ argument
|
H A D | op-2.h | 141 #define _FP_FRAC_OVERP_2(fs, X) (_FP_FRAC_HIGH_##fs (X) & _FP_OVERFLOW_##fs) argument 142 #define _FP_FRAC_CLEAR_OVERP_2(fs, X) (_FP_FRAC_HIGH_##fs (X) &= ~_FP_OVERFLOW_##fs) argument 143 #define _FP_FRAC_HIGHBIT_DW_2(fs, X) \ argument 213 #define _FP_UNPACK_RAW_2(fs, X, val) \ argument 226 #define _FP_UNPACK_RAW_2_P(fs, X, val) \ argument 242 #define _FP_PACK_RAW_2(fs, val, X) \ argument 256 #define _FP_PACK_RAW_2_P(fs, val, X) \ argument 535 #define _FP_DIV_MEAT_2_udiv(fs, R, X, Y) \ argument
|
/dflybsd-src/contrib/gcc-4.7/libgcc/soft-fp/ |
H A D | op-common.h | 41 #define _FP_UNPACK_CANONICAL(fs, wc, X) \ argument 85 #define _FP_UNPACK_SEMIRAW(fs, wc, X) _FP_FRAC_SLL_##wc(X, _FP_WORKBITS) argument 89 #define _FP_OVERFLOW_SEMIRAW(fs, wc, X) \ argument 109 #define _FP_CHECK_SIGNAN_SEMIRAW(fs, wc, X) \ argument 119 #define _FP_CHOOSENAN_SEMIRAW(fs, wc, R, X, Y, OP) \ argument 129 #define _FP_EXP_NORMAL(fs, wc, X) (((X##_e + 1) & _FP_EXPMAX_##fs) > 1) argument 134 #define _FP_PACK_SEMIRAW(fs, wc, X) \ argument 170 #define _FP_PACK_CANONICAL(fs, wc, X) \ argument 278 #define _FP_ISSIGNAN(fs, wc, X) \ argument 295 #define _FP_ADD_INTERNAL(fs, wc, R, X, Y, OP) \ argument [all …]
|
H A D | op-1.h | 73 #define _FP_FRAC_OVERP_1(fs,X) (X##_f & _FP_OVERFLOW_##fs) argument 74 #define _FP_FRAC_CLEAR_OVERP_1(fs,X) (X##_f &= ~_FP_OVERFLOW_##fs) argument 88 #define _FP_UNPACK_RAW_1(fs, X, val) \ argument 97 #define _FP_UNPACK_RAW_1_P(fs, X, val) \ argument 111 #define _FP_PACK_RAW_1(fs, val, X) \ argument 122 #define _FP_PACK_RAW_1_P(fs, val, X) \ argument 202 #define _FP_DIV_MEAT_1_imm(fs, R, X, Y, doit) \ argument 217 #define _FP_DIV_MEAT_1_udiv_norm(fs, R, X, Y) \ argument 241 #define _FP_DIV_MEAT_1_udiv(fs, R, X, Y) \ argument
|
H A D | op-2.h | 135 #define _FP_FRAC_OVERP_2(fs,X) (_FP_FRAC_HIGH_##fs(X) & _FP_OVERFLOW_##fs) argument 136 #define _FP_FRAC_CLEAR_OVERP_2(fs,X) (_FP_FRAC_HIGH_##fs(X) &= ~_FP_OVERFLOW_##fs) argument 204 #define _FP_UNPACK_RAW_2(fs, X, val) \ argument 214 #define _FP_UNPACK_RAW_2_P(fs, X, val) \ argument 230 #define _FP_PACK_RAW_2(fs, val, X) \ argument 242 #define _FP_PACK_RAW_2_P(fs, val, X) \ argument 447 #define _FP_DIV_MEAT_2_udiv(fs, R, X, Y) \ argument 515 #define _FP_DIV_MEAT_2_gmp(fs, R, X, Y) \ argument
|
/dflybsd-src/usr.sbin/makefs/ffs/ |
H A D | ffs_alloc.c | 96 struct fs *fs = ip->i_fs; in ffs_alloc() local 158 struct fs *fs; in ffs_blkpref_ufs1() local 198 struct fs *fs; in ffs_blkpref_ufs2() local 252 struct fs *fs; in ffs_hashalloc() local 304 struct fs *fs = ip->i_fs; in ffs_alloccg() local 389 struct fs *fs = ip->i_fs; in ffs_alloccgblk() local 421 cg_blks(fs, cgp, cbtocylno(fs, bno))[cbtorpos(fs, bno)]--; in ffs_alloccgblk() local 443 struct fs *fs = ip->i_fs; in ffs_blkfree() local 481 cg_blks(fs, cgp, cbtocylno(fs, bno))[cbtorpos(fs, bno)]++; in ffs_blkfree() local 523 cg_blks(fs, cgp, in ffs_blkfree() local [all …]
|
H A D | ffs_subr.c | 50 ffs_fragacct_swap(struct fs *fs, int fragmap, uint32_t fraglist[], int cnt, int needswap) in ffs_fragacct_swap() 86 ffs_isblock(struct fs *fs, u_char *cp, int32_t h) in ffs_isblock() 114 ffs_isfreeblock(struct fs *fs, u_char *cp, int32_t h) in ffs_isfreeblock() 136 ffs_clrblock(struct fs *fs, u_char *cp, int32_t h) in ffs_clrblock() 162 ffs_setblock(struct fs *fs, u_char *cp, int32_t h) in ffs_setblock()
|
/dflybsd-src/stand/lib/ |
H A D | dosfs.c | 111 #define bytblk(fs, n) ((n) >> (fs)->bshift) argument 112 #define blkbyt(fs, b) ((b) << (fs)->bshift) argument 113 #define secblk(fs, s) ((s) >> ((fs)->bshift - SSHIFT)) argument 114 #define blksec(fs, b) ((b) << ((fs)->bshift - SSHIFT)) argument 117 #define blkoff(fs, b) (secbyt((fs)->lsndta) + blkbyt(fs, (b) - LOCLUS)) argument 120 #define blklsn(fs, b) ((fs)->lsndta + blksec(fs, (b) - LOCLUS)) argument 128 #define okclus(fs, c) ((c) >= LOCLUS && (c) <= (fs)->xclus) argument 153 dos_mount(DOS_FS *fs, struct open_file *fd) in dos_mount() 180 dos_unmount(DOS_FS *fs) in dos_unmount() 195 dosunmount(DOS_FS *fs) in dosunmount() [all …]
|
H A D | ext2fs.c | 132 #define fsb_to_db(fs, blk) ((blk) << (fs)->fs_fsbtodb) argument 140 #define ino_to_bgo(fs, ino) (((ino) - 1) % (fs)->fs_ipg) argument 141 #define ino_to_bg(fs, ino) (((ino) - 1) / (fs)->fs_ipg) argument 142 #define ino_to_db(fs, bg, ino) \ argument 145 #define ino_to_bo(fs, ino) (ino_to_bgo(fs, ino) % (fs)->fs_ipb) argument 147 #define nindir(fs) \ argument 149 #define lblkno(fs, loc) /* loc / bsize */ \ argument 151 #define smalllblktosize(fs, blk) /* blk * bsize */ \ argument 153 #define blkoff(fs, loc) /* loc % bsize */ \ argument 155 #define fragroundup(fs, size) /* roundup(size, fsize) */ \ argument [all …]
|
/dflybsd-src/sys/net/dummynet/ |
H A D | ip_dummynet.c | 547 struct dn_flow_set *fs = q->fs; in ready_event_wfq() local 705 expire_queues(struct dn_flow_set *fs) in expire_queues() 740 create_queue(struct dn_flow_set *fs, int i) in create_queue() 775 find_queue(struct dn_flow_set *fs, struct dn_flow_id *id) in find_queue() 843 red_drops(struct dn_flow_set *fs, struct dn_flow_queue *q, int len) in red_drops() 966 struct dn_flow_set *fs, *fs_next; in dn_iterate_flowset() local 991 struct dn_flow_set *fs; in dn_find_flowset() local 1004 struct dn_flow_set *fs = NULL; in dn_locate_flowset() local 1037 struct dn_flow_set *fs; in dummynet_io() local 1189 purge_flow_set(struct dn_flow_set *fs, int all) in purge_flow_set() [all …]
|
/dflybsd-src/sys/net/dummynet3/ |
H A D | ip_dummynet3.c | 566 struct dn_flow_set *fs = q->fs; in ready_event_wfq() local 724 expire_queues(struct dn_flow_set *fs) in expire_queues() 759 create_queue(struct dn_flow_set *fs, int i) in create_queue() 794 find_queue(struct dn_flow_set *fs, struct dn_flow_id *id) in find_queue() 862 red_drops(struct dn_flow_set *fs, struct dn_flow_queue *q, int len) in red_drops() 985 struct dn_flow_set *fs, *fs_next; in dn_iterate_flowset() local 1010 struct dn_flow_set *fs; in dn_find_flowset() local 1023 struct dn_flow_set *fs = NULL; in dn_locate_flowset() local 1056 struct dn_flow_set *fs; in dummynet_io() local 1208 purge_flow_set(struct dn_flow_set *fs, int all) in purge_flow_set() [all …]
|
/dflybsd-src/usr.sbin/quotaon/ |
H A D | quotaon.c | 69 struct fstab *fs; in main() local 147 quotaonoff(struct fstab *fs, int offmode, int type, char *qfpathname) in quotaonoff() 189 hasquota(struct fstab *fs, int type, char **qfnamep) in hasquota() 225 readonly(struct fstab *fs) in readonly()
|
/dflybsd-src/sys/vm/ |
H A D | vm_fault.c | 208 release_page(struct faultstate *fs) in release_page() 216 unlock_map(struct faultstate *fs) in unlock_map() 243 cleanup_fault(struct faultstate *fs) in cleanup_fault() 275 unlock_things(struct faultstate *fs) in unlock_things() 366 #define TRYPAGER(fs) \ argument 392 struct faultstate fs; in vm_fault() local 851 vm_fault_bypass(struct faultstate *fs, vm_pindex_t first_pindex, in vm_fault_bypass() 1030 struct faultstate fs; in vm_fault_page() local 1397 struct faultstate fs; in vm_fault_object_page() local 1563 vm_fault_object(struct faultstate *fs, vm_pindex_t first_pindex, in vm_fault_object() [all …]
|
/dflybsd-src/lib/libfsid/ |
H A D | ext2.c | 49 static struct ext2fs *fs; in ext2_probe() local 65 static struct ext2fs *fs; in ext2_volname() local
|