/titanic_44/usr/src/uts/common/fs/ |
H A D | dnlc.c | 698 nc_hash_t *nch; in dnlc_purge() local 710 for (nch = nc_hash; nch < &nc_hash[nc_hashsz]; nch++) { in dnlc_purge() 712 mutex_enter(&nch->hash_lock); in dnlc_purge() 713 ncp = nch->hash_next; in dnlc_purge() 714 while (ncp != (ncache_t *)nch) { in dnlc_purge() 728 mutex_exit(&nch->hash_lock); in dnlc_purge() 734 if (ncp != (ncache_t *)nch) { in dnlc_purge() 735 nch--; /* Do current hash chain again */ in dnlc_purge() 747 nc_hash_t *nch; in dnlc_purge_vp() local 763 for (nch = nc_hash; nch < &nc_hash[nc_hashsz]; nch++) { in dnlc_purge_vp() [all …]
|
/titanic_44/usr/src/lib/fm/topo/modules/i86pc/x86pi/ |
H A D | x86pi.c | 251 int nch, nbb, ncmp, i; in x86pi_enum_gentopo() local 289 for (nch = 0; nch < ch_count; nch++) { in x86pi_enum_gentopo() 293 ch_smbid = stypes[SMB_TYPE_CHASSIS].ids[nch].id; in x86pi_enum_gentopo() 299 if (nch == 0) in x86pi_enum_gentopo() 314 "%s: Failed to create chassis %d\n", f, nch); in x86pi_enum_gentopo() 317 stypes[SMB_TYPE_CHASSIS].ids[nch].node = chassis_node; in x86pi_enum_gentopo()
|
/titanic_44/usr/src/lib/libresolv2/common/resolv/ |
H A D | res_comp.c | 182 int nch = *dn++; in res_hnok() local 189 } else if (periodchar(nch) || nch == '\0') { in res_hnok() 196 pch = ch, ch = nch; in res_hnok()
|
/titanic_44/usr/src/uts/common/io/audio/impl/ |
H A D | audio_output.c | 42 int nch = eng->e_nchan; \ 70 } while (ch < nch); \ 171 int nch; in auimpl_output_mix() local 180 nch = sp->s_cnv_dst_nchan; in auimpl_output_mix() 187 for (int ch = 0; ch < nch; ch++) { in auimpl_output_mix() 204 ip += nch; in auimpl_output_mix() 211 sp->s_cnv_ptr += (nch * nfr); in auimpl_output_mix()
|
H A D | audio_input.c | 43 int nch = e->e_nchan; \ 70 op += nch; \ 79 } while (ch < nch); \
|
H A D | audio_format.c | 70 int ch, nch; in setup_src() local 72 nch = min(sch, tch); in setup_src() 74 ASSERT(nch <= AUDIO_MAX_CHANNELS); in setup_src() 81 for (ch = 0; ch < nch; ch++) { in setup_src()
|
/titanic_44/usr/src/cmd/csh/ |
H A D | sh.tchar.c | 677 write_(int d, tchar *buf, int nch) in write_() argument 688 d, buf, nch); /* Hope printf() doesn't call write_() itself! */ in write_() 690 assert(nch * MB_CUR_MAX < sizeof (chbuf)); in write_() 691 i = nch; in write_() 719 d, buf, nch); /* Hope printf() doesn't call write_() itself! */ in write_() 721 assert(nch <= sizeof (chbuf)); in write_() 722 for (i = 0, t = buf, s = chbuf; i < nch; ++i) { in write_() 725 return (write(d, (char *)chbuf, nch)); in write_()
|
/titanic_44/usr/src/lib/libnsl/rpc/ |
H A D | auth_time.c | 127 void *nch; in get_server() local 135 nch = setnetconfig(); in get_server() 136 while (nc = getnetconfig(nch)) { in get_server() 149 (void) endnetconfig(nch); in get_server()
|
/titanic_44/usr/src/uts/common/io/audio/drv/audio810/ |
H A D | audio810.c | 699 uint8_t nch; in audio810_attach() local 870 nch = 6; in audio810_attach() 872 nch = 4; in audio810_attach() 874 nch = 2; in audio810_attach() 877 statep->maxch = (uint8_t)min(nch, maxch); in audio810_attach()
|
/titanic_44/usr/src/lib/libc/port/locale/ |
H A D | regcomp.c | 1153 wint_t nch, *newwides; in CHadd() local 1168 if ((nch = towlower(ch)) < NC) in CHadd() 1169 cs->bmp[nch >> 3] |= 1 << (nch & 7); in CHadd() 1170 if ((nch = towupper(ch)) < NC) in CHadd() 1171 cs->bmp[nch >> 3] |= 1 << (nch & 7); in CHadd()
|
/titanic_44/usr/src/cmd/mandoc/ |
H A D | mdoc_validate.c | 1873 struct mdoc_node *n, *nch; in post_hyph() local 1892 for (nch = n->child; nch; nch = nch->next) { in post_hyph() 1893 if (MDOC_TEXT != nch->type) in post_hyph() 1895 cp = nch->string; in post_hyph()
|
/titanic_44/usr/src/cmd/mdb/common/modules/mdb_ks/ |
H A D | mdb_ks.c | 241 nc_hash_t nch; /* kernel hash chain header */ in dnlc_load() local 256 if (mdb_vread(&nch, sizeof (nc_hash_t), head) == -1) { in dnlc_load() 263 nc_va = (uintptr_t)(nch.hash_next); in dnlc_load()
|