Home
last modified time | relevance | path

Searched refs:cg (Results 1 – 25 of 38) sorted by relevance

12

/illumos-gate/usr/src/test/util-tests/tests/awk/examples/out/
H A Dt.re11 /dev/rrp3: matches /[a-cg-j1-3]/
3 17379 mel matches /[a-cg-j1-3]/
5 16693 bwk me matches /[a-cg-j1-3]/
9 15713 srb matches /[a-cg-j1-3]/
11 11895 lem matches /[a-cg-j1-3]/
13 10409 scj matches /[a-cg-j1-3]/
15 10252 rhm matches /[a-cg-j1-3]/
19 9748 a68 matches /[a-cg-j1-3]/
21 9492 sif matches /[a-cg-j1-3]/
23 9190 pjw matches /[a-cg-j1-3]/
[all …]
H A Dt.re1a1 /dev/rrp3: matches /[a-cg-j1-3]/
3 17379 mel matches /[a-cg-j1-3]/
5 16693 bwk me matches /[a-cg-j1-3]/
9 15713 srb matches /[a-cg-j1-3]/
11 11895 lem matches /[a-cg-j1-3]/
13 10409 scj matches /[a-cg-j1-3]/
15 10252 rhm matches /[a-cg-j1-3]/
19 9748 a68 matches /[a-cg-j1-3]/
21 9492 sif matches /[a-cg-j1-3]/
23 9190 pjw matches /[a-cg-j1-3]/
[all …]
/illumos-gate/usr/src/uts/common/syscall/
H A Dcorectl.c174 struct core_globals *cg; in core_init_zone() local
176 cg = kmem_alloc(sizeof (*cg), KM_SLEEP); in core_init_zone()
178 cg->core_file = NULL; in core_init_zone()
185 return (cg); in core_init_zone()
197 if (cg == NULL) in core_free_zone()
203 kmem_free(cg, sizeof (*cg)); in core_free_zone()
212 struct core_globals *cg; in init_core() local
246 struct core_globals *cg; in corectl() local
250 ASSERT(cg != NULL); in corectl()
328 rp = cg->core_file; in corectl()
[all …]
/illumos-gate/usr/src/cmd/fs.d/ufs/fsck/
H A Dpass5.c51 struct cg *cg = &cgrp; in pass5() local
61 struct cg cg; /* the rest of buf has the bitmaps */ in pass5() member
65 struct cg *newcg = &u.cg; in pass5()
143 err = cg_sanity(cg, c); in pass5()
149 fix_cg(cg, c); in pass5()
157 if (now > cg->cg_time) in pass5()
158 newcg->cg_time = cg->cg_time; in pass5()
176 if ((cg->cg_rotor >= 0) && (cg->cg_rotor < newcg->cg_ndblk)) in pass5()
177 newcg->cg_rotor = cg->cg_rotor; in pass5()
180 if ((cg->cg_frotor >= 0) && (cg->cg_frotor < newcg->cg_ndblk)) in pass5()
[all …]
H A Dsetup.c64 /* base cg */ (sizeof (struct cg) + \
543 int cg = 0; in find_superblock() local
570 cg = proto.fs_ncg; in find_superblock()
582 for (cg = 0; cg < proto.fs_ncg; cg++) { in find_superblock()
583 bflag = fsbtodb(&proto, cgsblock(&proto, cg)); in find_superblock()
598 if (first && (cg >= 9)) { in find_superblock()
601 cg = proto.fs_ncg; in find_superblock()
603 cg = 9; in find_superblock()
605 cg = proto.fs_ncg - 10; in find_superblock()
669 if (cg >= 0) { in find_superblock()
H A Dinode.c1136 struct cg *cgp = &cgrp; in allocino()
1137 int cg; in allocino() local
1180 cg = itog(&sblock, ino); in allocino()
1181 (void) getblk(&cgblk, cgtod(&sblock, cg), (size_t)sblock.fs_cgsize); in allocino()
1182 err = cg_sanity(cgp, cg); in allocino()
1184 pfatal("CG %d: %s\n", cg, err); in allocino()
1188 fix_cg(cgp, cg); in allocino()
1387 int cg; in freeino() local
1389 struct cg *cgp; in freeino()
1422 cg = itog(&sblock, ino); in freeino()
[all …]
H A Dfsck.h113 struct cg *b_cg; /* cylinder group */
527 caddr_t cg_sanity(struct cg *, int);
553 void fix_cg(struct cg *, int);
H A Dpass4.c162 struct cg *cgp = &cgrp; in pass4check()
/illumos-gate/usr/src/uts/common/fs/ufs/
H A Dufs_alloc.c110 int cg; in alloc() local
299 int cg; in ufs_ialloc() local
492 for (cg = 0; cg < fs->fs_ncg; cg++) { in dirpref()
539 int cg; in blkpref() local
566 for (cg = startcg; cg < fs->fs_ncg; cg++) in blkpref()
572 for (cg = 0; cg <= startcg; cg++) in blkpref()
778 int cg; in ufs_ifree() local
863 cg += i; in hashalloc()
880 cg++; in hashalloc()
882 cg = 0; in hashalloc()
[all …]
H A Dufs_snap.c283 struct cg *cgp; /* cylinder group data */ in ufs_snap_find_candidates()
284 ulong_t cg; in ufs_snap_find_candidates() local
298 for (cg = 0; cg < fs->fs_ncg; cg++) { in ufs_snap_find_candidates()
301 (daddr_t)fsbtodb(fs, cgtod(fs, cg)), (int)fs->fs_cgsize); in ufs_snap_find_candidates()
312 "magic number (0x%x)", cg, cgp->cg_magic, CG_MAGIC); in ufs_snap_find_candidates()
H A Dufs_subr.c1232 #define SI_BUFSZ roundup(sizeof (struct cg), DEV_BSIZE)
1245 struct cg *cgp; in ufs_construct_si()
1247 int error = 0, cg = 0; in ufs_construct_si() local
1271 ncg = MIN(NSIBUF, (fs->fs_ncg - cg)); in ufs_construct_si()
1273 bp->b_blkno = (daddr_t)fsbtodb(fs, cgtod(fs, cg + i)); in ufs_construct_si()
1289 sip[cg + i] = cgp->cg_cs; in ufs_construct_si()
1296 cg += ncg; in ufs_construct_si()
1297 } while (cg < fs->fs_ncg); in ufs_construct_si()
/illumos-gate/usr/src/uts/common/os/
H A Dcore.c93 if (!(cg->core_options & CC_GLOBAL_LOG)) in core_log()
342 mutex_enter(&cg->core_lock); in do_core()
343 content = cg->core_content; in do_core()
344 mutex_exit(&cg->core_lock); in do_core()
345 rlimit = cg->core_rlimit; in do_core()
375 !(cg->core_options & CC_PROCESS_SETID))) in do_core()
571 struct core_globals *cg, char **name) in dump_one_core() argument
583 mutex_enter(&cg->core_lock); in dump_one_core()
584 if ((rp = cg->core_file) != NULL) in dump_one_core()
586 mutex_exit(&cg->core_lock); in dump_one_core()
[all …]
/illumos-gate/usr/src/cmd/mdb/common/modules/ufs/
H A Dufs.c462 struct cg cg; in cg_walk_step() local
464 if (mdb_vread(&cg, sizeof (cg), addr) == -1) { in cg_walk_step()
469 if (cg.cg_magic != CG_MAGIC) in cg_walk_step()
472 return (wsp->walk_callback(addr, &cg, wsp->walk_cbdata)); in cg_walk_step()
512 cg(uintptr_t addr, uint_t flags, int argc, const mdb_arg_t *argv) in cg() function
515 struct cg cg; in cg() local
516 struct cg *cgp = &cg; in cg()
534 if (mdb_vread(cgp, sizeof (cg), addr) == -1) { in cg()
647 { "cg", "?[-v]", "display a summarized cylinder group structure", cg },
/illumos-gate/usr/src/boot/sys/ufs/ffs/
H A Dfs.h432 #define ACTIVECGNUM(fs, cg) ((fs)->fs_active[(cg) / (NBBY * sizeof(int))]) argument
433 #define ACTIVECGOFF(cg) (1 << ((cg) % (NBBY * sizeof(int)))) argument
434 #define ACTIVESET(fs, cg) do { \ argument
436 ACTIVECGNUM((fs), (cg)) |= ACTIVECGOFF((cg)); \
438 #define ACTIVECLEAR(fs, cg) do { \ argument
440 ACTIVECGNUM((fs), (cg)) &= ~ACTIVECGOFF((cg)); \
450 /* base cg */ (sizeof(struct cg) + sizeof(int32_t) + \
473 struct cg { struct
/illumos-gate/usr/src/test/util-tests/tests/awk/examples/awk/
H A Dt.re11 /[a-cg-j1-3]/ { print $0 " matches /[a-cg-j1-3]/" }
H A Dt.re1a1 BEGIN { r1 = "[a-cg-j1-3]"
5 $0 ~ r1 { print $0 " matches /[a-cg-j1-3]/" }
/illumos-gate/usr/src/uts/intel/os/
H A Dsmt.c588 group_t *cg = &pg->cmt_pg.pghw_pg.pg_cpus; in smt_find_sibling() local
593 if (GROUP_SIZE(cg) == 1) in smt_find_sibling()
596 if (GROUP_SIZE(cg) != 2) { in smt_find_sibling()
597 panic("%u SMT threads unsupported", GROUP_SIZE(cg)); in smt_find_sibling()
600 if (GROUP_ACCESS(cg, 0) != cp) in smt_find_sibling()
601 return (GROUP_ACCESS(cg, 0)); in smt_find_sibling()
603 VERIFY3P(GROUP_ACCESS(cg, 1), !=, cp); in smt_find_sibling()
605 return (GROUP_ACCESS(cg, 1)); in smt_find_sibling()
/illumos-gate/usr/src/cmd/fs.d/ufs/fsdb/
H A Dfsdb.c3602 struct cg *cg; in fprnt() local
3823 cg = (struct cg *)cptr; in fprnt()
3841 printcg(cg); in fprnt()
4673 printcg(struct cg *cg) in printcg() argument
4679 t = cg->cg_time; in printcg()
4683 ((struct ocg *)cg)->cg_magic : cg->cg_magic, in printcg()
4688 cg->cg_magic, in printcg()
4693 cg->cg_cgx, cg->cg_ncyl, cg->cg_niblk, cg->cg_ndblk); in printcg()
4695 cg->cg_cs.cs_nbfree, cg->cg_cs.cs_ndir, in printcg()
4696 cg->cg_cs.cs_nifree, cg->cg_cs.cs_nffree); in printcg()
[all …]
/illumos-gate/usr/src/contrib/mDNSResponder/mDNSCore/
H A DmDNS.c467 for (cg = m->rrcache_hash[slot]; cg; cg=cg->next) in CacheGroupForName()
470 return(cg); in CacheGroupForName()
3395 const CacheRecord *cr = cg ? cg->members : mDNSNULL; in CacheHasAddressTypeForName()
3407 for (cr = cg ? cg->members : mDNSNULL; cr; cr=cr->next) in FindSPSInCache1()
4463 for (rr = cg ? cg->members : mDNSNULL; rr; rr=rr->next) in CheckForSoonToExpireRecords()
4730 if (!cg) in ReleaseCacheRecord()
4738 if (r->resrec.name && cg && r->resrec.name != cg->name) in ReleaseCacheRecord()
5310 cg->rrcache_tail = &cg->members; in GetCacheGroup()
5314 cg->name = (domainname*)cg->namestorage; in GetCacheGroup()
15388 cg->members = cg->members->next; in mDNS_FinalExit()
[all …]
H A DuDNS.h188 const mDNSu32 slot, CacheGroup *cg,
/illumos-gate/usr/src/cmd/fs.d/ufs/quotacheck/
H A Dquotacheck.c428 int cg, i; in chkquota() local
505 for (cg = 0; cg < sblock.fs_ncg; cg++) { in chkquota()
/illumos-gate/usr/src/cmd/fs.d/ufs/fstyp/
H A Dfstyp.c74 struct cg cg; member
82 #define acg cgun.cg
534 struct cg *cgp; in dumpcg()
546 cgp = (struct cg *)&h->acg; in dumpcg()
/illumos-gate/usr/src/uts/common/sys/fs/
H A Dufs_trans.h303 #define TRANS_SI(ufsvfsp, fs, cg) \ argument
310 ((caddr_t)&fs->fs_cs(fs, cg) - \
313 ufs_trans_push_si, cg)
/illumos-gate/usr/src/uts/common/io/audio/drv/audiosolo/
H A DTHIRDPARTYLICENSE2 Copyright (c) 1999 Cameron Grant <cg@freebsd.org>
/illumos-gate/usr/src/cmd/fs.d/udfs/fsck/
H A Dfsck.h91 struct cg *b_cg; /* cylinder group */

12