Lines Matching refs:int32_t

176 	int32_t	cs_ndir;	/* number of directories */
177 int32_t cs_nbfree; /* number of free blocks */
178 int32_t cs_nifree; /* number of free inodes */
179 int32_t cs_nffree; /* number of free frags */
243 int32_t fs_cgoffset; /* cylinder group offset in cylinder */
244 int32_t fs_cgmask; /* used to calc mod fs_ntrak */
246 int32_t fs_size; /* number of blocks in fs */
247 int32_t fs_dsize; /* number of data blocks in fs */
248 int32_t fs_ncg; /* number of cylinder groups */
249 int32_t fs_bsize; /* size of basic blocks in fs */
250 int32_t fs_fsize; /* size of frag blocks in fs */
251 int32_t fs_frag; /* number of frags in a block in fs */
253 int32_t fs_minfree; /* minimum percentage of free blocks */
254 int32_t fs_rotdelay; /* num of ms for optimal next block */
255 int32_t fs_rps; /* disk revolutions per second */
257 int32_t fs_bmask; /* ``blkoff'' calc of blk offsets */
258 int32_t fs_fmask; /* ``fragoff'' calc of frag offsets */
259 int32_t fs_bshift; /* ``lblkno'' calc of logical blkno */
260 int32_t fs_fshift; /* ``numfrags'' calc number of frags */
262 int32_t fs_maxcontig; /* max number of contiguous blks */
263 int32_t fs_maxbpg; /* max number of blks per cyl group */
265 int32_t fs_fragshift; /* block to frag shift */
266 int32_t fs_fsbtodb; /* fsbtodb and dbtofsb shift constant */
267 int32_t fs_sbsize; /* actual size of super block */
268 int32_t fs_csmask; /* csum block offset */
269 int32_t fs_csshift; /* csum block number */
270 int32_t fs_nindir; /* value of NINDIR */
271 int32_t fs_inopb; /* value of INOPB */
272 int32_t fs_nspf; /* value of NSPF */
274 int32_t fs_optim; /* optimization preference, see below */
290 int32_t fs_state; /* file system state time stamp */
292 int32_t fs_npsect; /* # sectors/track including spares */
294 int32_t fs_si; /* summary info state - lufs only */
295 int32_t fs_trackskew; /* sector 0 skew, per track */
300 int32_t fs_id[2]; /* file system id */
303 int32_t fs_cssize; /* size of cyl grp summary area */
304 int32_t fs_cgsize; /* cylinder group size */
306 int32_t fs_ntrak; /* tracks per cylinder */
307 int32_t fs_nsect; /* sectors per track */
308 int32_t fs_spc; /* sectors per cylinder */
310 int32_t fs_ncyl; /* cylinders in file system */
312 int32_t fs_cpg; /* cylinders per group */
313 int32_t fs_ipg; /* inodes per group */
314 int32_t fs_fpg; /* blocks per group * fs_frag */
324 int32_t fs_cgrotor; /* last cg searched */
335 int32_t fs_cpc; /* cyl per cycle in postbl */
337 int32_t fs_sparecon[51]; /* reserved for future constants */
338 int32_t fs_version; /* minor version of ufs */
339 int32_t fs_logbno; /* block # of embedded log */
340 int32_t fs_reclaim; /* reclaim open, deleted files */
341 int32_t fs_sparecon2; /* reserved for future constant */
344 int32_t fs_npsect; /* # sectors/track including spares */
346 int32_t fs_state; /* file system state time stamp */
350 int32_t fs_postblformat; /* format of positional layout tables */
351 int32_t fs_nrpos; /* number of rotaional positions */
352 int32_t fs_postbloff; /* (short) rotation block list head */
353 int32_t fs_rotbloff; /* (uchar_t) blocks for each rotation */
354 int32_t fs_magic; /* magic number */
437 int32_t cg_magic; /* magic number */
439 int32_t cg_cgx; /* we are the cgx'th cylinder group */
442 int32_t cg_ndblk; /* number of data blocks this cg */
444 int32_t cg_rotor; /* position of last used block */
445 int32_t cg_frotor; /* position of last used frag */
446 int32_t cg_irotor; /* position of last used inode */
447 int32_t cg_frsum[MAXFRAG]; /* counts of available frags */
448 int32_t cg_btotoff; /* (int32_t)block totals per cylinder */
449 int32_t cg_boff; /* (short) free block positions */
450 int32_t cg_iusedoff; /* (char) used inode map */
451 int32_t cg_freeoff; /* (uchar_t) free block map */
452 int32_t cg_nextfreeoff; /* (uchar_t) next available space */
453 int32_t cg_sparecon[16]; /* reserved for future use */
465 : ((int32_t *)((char *)(cgp) + (cgp)->cg_btotoff)))
503 int32_t cg_cgx; /* we are the cgx'th cylinder group */
506 int32_t cg_ndblk; /* number of data blocks this cg */
508 int32_t cg_rotor; /* position of last used block */
509 int32_t cg_frotor; /* position of last used frag */
510 int32_t cg_irotor; /* position of last used inode */
511 int32_t cg_frsum[8]; /* counts of available frags */
512 int32_t cg_btot[32]; /* block totals per cylinder */
515 int32_t cg_magic; /* magic number */
644 ((int32_t)((loc) >> (fs)->fs_bshift))
651 ((int32_t)((loc) >> (fs)->fs_fshift))