Home
last modified time | relevance | path

Searched refs:cbase (Results 1 – 4 of 4) sorted by relevance

/titanic_44/usr/src/cmd/fs.d/udfs/fsdb/
H A Dfsdb_yacc.y703 int32_t length, cbase, index, cvalue; variable
712 cbase = 0x10;
715 cbase = 0xa;
718 cbase = 0x8;
721 cbase = base;
730 if (cbase == 0x8) {
739 } else if (cbase == 0xa) {
765 *value = *value * cbase + cvalue;
/titanic_44/usr/src/cmd/awk/
H A Dlib.c378 int cbase; in getfld() local
384 cbase = 0; in getfld()
386 if (idx < (cbase + FLD_INCR)) in getfld()
387 return (&fldcp->fields[idx - cbase]); in getfld()
388 cbase += FLD_INCR; in getfld()
400 int cbase; in fldidx() local
402 cbase = 0; in fldidx()
406 return (cbase + (vp - tbl)); in fldidx()
407 cbase += FLD_INCR; in fldidx()
/titanic_44/usr/src/cmd/fs.d/ufs/mkfs/
H A Dmkfs.c2482 diskaddr_t cbase, d; in initcg() local
2521 cbase = cgbase(&sblock, cylno); in initcg()
2522 dmax = cbase + sblock.fs_fpg; in initcg()
2525 dlower = cgsblock(&sblock, cylno) - cbase; in initcg()
2526 dupper = cgdmin(&sblock, cylno) - cbase; in initcg()
2539 icg.cg_ndblk = dmax - cbase; in initcg()
2677 for (d = dupper; d + sblock.fs_frag <= dmax - cbase; ) { in initcg()
2727 if (d < dmax - cbase) { in initcg()
2728 icg.cg_frsum[dmax - cbase - d]++; in initcg()
2729 for (; d < dmax - cbase; d++) { in initcg()
[all …]
/titanic_44/usr/src/cmd/fs.d/ufs/fsck/
H A Dutilities.c2051 daddr32_t cbase, dmax; in cg_constants() local
2058 cbase = cgbase(&sblock, cgno); in cg_constants()
2059 dmax = cbase + sblock.fs_fpg; in cg_constants()
2070 *ndblk = dmax - cbase; in cg_constants()