Searched defs:nch (Results 1 - 15 of 15) sorted by relevance

/illumos-gate/usr/src/cmd/mandoc/
H A Dmdoc_state.c246 struct roff_node *nch; local
268 for (nch = n->child; nch != NULL; nch = nch->next)
269 nch->sec = n->sec;
H A Dmdoc_html.c984 struct roff_node *nch; local
993 for (nch = n->child; nch != NULL; nch = nch->next) {
994 assert(nch->type == ROFFT_TEXT);
997 print_text(h, nch->string);
1000 if (nch->next == NULL)
1003 if (nch->prev != NULL || nch
1700 struct roff_node *nch; local
[all...]
H A Dmdoc_man.c685 struct roff_node *nch; local
691 for (nch = n->child; nch != NULL; nch = nch->next) {
693 print_word(nch->string);
696 if (nch->next == NULL)
699 if (nch->prev != NULL || nch->next->next != NULL) {
703 if (nch
1648 struct roff_node *nch; local
[all...]
H A Dmdoc_term.c1109 struct roff_node *nch; local
1116 for (nch = n->child; nch != NULL; nch = nch->next) {
1118 term_word(p, nch->string);
1124 if (nch->next == NULL)
1127 if (nch->prev != NULL || nch->next->next != NULL) {
1131 if (nch
1161 struct roff_node *nch; local
[all...]
H A Dmdoc_validate.c676 struct roff_node *np, *nch; local
692 nch = np->child;
694 if (nch == NULL) {
699 nch = nch->next;
701 if (nch != NULL)
703 nch->line, nch->pos, "Bf ... %s", nch->string);
995 struct roff_node *np, *nch; local
1030 struct roff_node *nbl, *nit, *nch; local
1238 struct roff_node *nbl, *nh, *nch, *nnext; local
1396 struct roff_node *nch; local
1467 struct roff_node *n, *nch; local
1488 struct roff_node *np, *nch, *next, *prev; local
1582 struct roff_node *nch; local
[all...]
/illumos-gate/usr/src/lib/fm/topo/modules/i86pc/x86pi/
H A Dx86pi.c251 int nch, nbb, ncmp, i; local
289 for (nch = 0; nch < ch_count; nch++) {
293 ch_smbid = stypes[SMB_TYPE_CHASSIS].ids[nch].id;
299 if (nch == 0)
314 "%s: Failed to create chassis %d\n", f, nch);
317 stypes[SMB_TYPE_CHASSIS].ids[nch].node = chassis_node;
/illumos-gate/usr/src/lib/libresolv2/common/resolv/
H A Dres_comp.c182 int nch = *dn++; local
189 } else if (periodchar(nch) || nch == '\0') {
196 pch = ch, ch = nch;
/illumos-gate/usr/src/lib/libnsl/rpc/
H A Dauth_time.c127 void *nch; local
135 nch = setnetconfig();
136 while (nc = getnetconfig(nch)) {
149 (void) endnetconfig(nch);
/illumos-gate/usr/src/uts/common/io/audio/impl/
H A Daudio_output.c42 int nch = eng->e_nchan; \
70 } while (ch < nch); \
171 int nch; local
180 nch = sp->s_cnv_dst_nchan;
187 for (int ch = 0; ch < nch; ch++) {
204 ip += nch;
211 sp->s_cnv_ptr += (nch * nfr);
H A Daudio_format.c70 int ch, nch; local
72 nch = min(sch, tch);
74 ASSERT(nch <= AUDIO_MAX_CHANNELS);
81 for (ch = 0; ch < nch; ch++) {
/illumos-gate/usr/src/cmd/csh/
H A Dsh.tchar.c677 write_(int d, tchar *buf, int nch) argument
687 tprintf("Entering write_(d=%d, buf=0x%x, nch=%d);\n",
688 d, buf, nch); /* Hope printf() doesn't call write_() itself! */
690 assert(nch * MB_CUR_MAX < sizeof (chbuf));
691 i = nch;
718 tprintf("Entering write_(d=%d, buf=0x%x, nch=%d);\n",
719 d, buf, nch); /* Hope printf() doesn't call write_() itself! */
721 assert(nch <= sizeof (chbuf));
722 for (i = 0, t = buf, s = chbuf; i < nch; ++i) {
725 return (write(d, (char *)chbuf, nch));
[all...]
/illumos-gate/usr/src/uts/common/io/audio/drv/audio810/
H A Daudio810.c699 uint8_t nch; local
870 nch = 6;
872 nch = 4;
874 nch = 2;
877 statep->maxch = (uint8_t)min(nch, maxch);
/illumos-gate/usr/src/lib/libc/port/locale/
H A Dregcomp.c1153 wint_t nch, *newwides; local
1168 if ((nch = towlower(ch)) < NC)
1169 cs->bmp[nch >> 3] |= 1 << (nch & 7);
1170 if ((nch = towupper(ch)) < NC)
1171 cs->bmp[nch >> 3] |= 1 << (nch & 7);
/illumos-gate/usr/src/uts/common/fs/
H A Ddnlc.c697 nc_hash_t *nch; local
709 for (nch = nc_hash; nch < &nc_hash[nc_hashsz]; nch++) {
711 mutex_enter(&nch->hash_lock);
712 ncp = nch->hash_next;
713 while (ncp != (ncache_t *)nch) {
727 mutex_exit(&nch->hash_lock);
733 if (ncp != (ncache_t *)nch) {
734 nch
746 nc_hash_t *nch; local
809 nc_hash_t *nch; local
934 nc_hash_t *nch; local
[all...]
/illumos-gate/usr/src/cmd/mdb/common/modules/mdb_ks/
H A Dmdb_ks.c241 nc_hash_t nch; /* kernel hash chain header */ local
256 if (mdb_vread(&nch, sizeof (nc_hash_t), head) == -1) {
263 nc_va = (uintptr_t)(nch.hash_next);

Completed in 130 milliseconds