Home
last modified time | relevance | path

Searched refs:n (Results 26 – 50 of 4010) sorted by relevance

12345678910>>...161

/illumos-gate/usr/src/cmd/sgs/elfedit/modules/common/
H A Dcap.msg112 \n\
186 \n\
198 \n\
221 \n\
225 \n \
227 \n \
230 \n \
241 \n\
245 \n \
261 \n\
[all …]
H A Dphdr.msg160 \n\
170 \n\
181 \n\
184 \n\
195 \n\
198 \n\
209 \n\
216 \n\
227 \n\
230 \n\
[all …]
H A Dstr.msg151 \n\
155 \n\
159 \n\
165 \n\
169 \t\\n\tnewline\n\
182 \n\
186 \n\
191 \n\
201 \n\
203 \n\
[all …]
H A Dsyminfo.msg74 request\n"
103 \n\
106 \n\
110 displayed.\n"
118 ELF object.\n\
119 \n\
125 \n\
140 \n\
146 \n \
148 \n \
[all …]
/illumos-gate/usr/src/cmd/mandoc/
H A Dtag.c97 if (n->child == NULL || n->child->type != ROFFT_TEXT) in tag_put()
205 np = n; in tag_move_id()
234 n->child->string : n->tag); in tag_move_id()
267 if (n == NULL || n->type != ROFFT_TEXT || in tag_move_href()
268 *n->string == '\0' || *n->string == ' ') in tag_move_href()
271 cp = n->string; in tag_move_href()
281 n->pos + (cp - n->string), cp + 1); in tag_move_href()
302 tag_move_href(man, n->next, n->tag); in tag_postprocess()
307 tag_move_href(man, n->child, n->tag); in tag_postprocess()
313 if (n->type == ROFFT_ELEM || n->tok == MDOC_Fo) in tag_postprocess()
[all …]
H A Droff_validate.c61 n = man->last; in roff_validate()
64 (*roff_valids[n->tok])(man, n); in roff_validate()
72 if (n->next != NULL && n->next->type == ROFFT_TEXT && in roff_valid_br()
74 mandoc_msg(MANDOCERR_PAR_SKIP, n->line, n->pos, in roff_valid_br()
88 n->line, n->pos, "br after %s", roff_name[np->tok]); in roff_valid_br()
100 mandoc_msg(MANDOCERR_FI_SKIP, n->line, n->pos, "fi"); in roff_valid_fi()
110 roff_word_alloc(man, n->line, n->pos, "P"); in roff_valid_ft()
111 man->last = n; in roff_valid_ft()
118 mandoc_msg(MANDOCERR_FT_BAD, n->line, n->pos, "ft %s", cp); in roff_valid_ft()
126 mandoc_msg(MANDOCERR_NF_SKIP, n->line, n->pos, "nf"); in roff_valid_nf()
[all …]
H A Dmdoc_man.c615 for (n = mdoc->first->child; n != NULL; n = n->next) { in man_mdoc()
634 for (; n != NULL; n = n->next) in man_mdoc()
1060 while ((n = n->parent) != NULL) in post_bk()
1241 n = n->child; in pre_fa()
1249 if (NULL != (n = n->next)) in pre_fa()
1308 n = n->child; in pre_fn()
1322 n = n->next; in pre_fn()
1639 for (n = n->child->next; n != NULL; n = n->next) in pre_onearg()
1801 for (n = n->child; n != NULL; n = n->next) in pre_ta()
1838 n = n->child; in pre_xr()
[all …]
H A Dman_html.c126 if (n != NULL && n->type == ROFFT_COMMENT) in html_man()
159 n = n->next; in print_man_nodelist()
175 n->tok != ROFF_fi && n->flags & NODE_LINE && in print_man_node()
176 (n->prev == NULL || n->prev->tok != MAN_YS)) in print_man_node()
233 assert(n->tok >= MAN_TH && n->tok < MAN_MAX); in print_man_node()
246 (n->tok == MAN_IP || n->tok == MAN_TP || n->tok == MAN_TQ)) { in print_man_node()
449 nn = n->type == ROFFT_BLOCK ? n : n->parent; in man_IP_pre()
526 if ((n = n->child) != NULL) { in man_OP_pre()
533 if (n != NULL && n->next != NULL) { in man_OP_pre()
616 n = n->child; in man_UR_pre()
[all …]
/illumos-gate/usr/src/uts/common/sys/
H A Davl_impl.h66 #define AVL_XPARENT(n) ((n)->avl_parent) argument
67 #define AVL_SETPARENT(n, p) ((n)->avl_parent = (p)) argument
69 #define AVL_XCHILD(n) ((n)->avl_child_index) argument
72 #define AVL_XBALANCE(n) ((n)->avl_balance) argument
73 #define AVL_SETBALANCE(n, b) ((n)->avl_balance = (short)(b)) argument
100 ((n)->avl_pcb = (((n)->avl_pcb & 7) | (uintptr_t)(p)))
105 #define AVL_XCHILD(n) (((n)->avl_pcb >> 2) & 1)
107 ((n)->avl_pcb = (uintptr_t)(((n)->avl_pcb & ~4) | ((c) << 2)))
114 #define AVL_XBALANCE(n) ((int)(((n)->avl_pcb & 3) - 1))
126 #define AVL_NODE2DATA(n, o) ((void *)((uintptr_t)(n) - (o))) argument
[all …]
/illumos-gate/usr/src/lib/libeti/menu/common/
H A Dlink.c40 int n; in link_col_major() local
46 for (i = IthItem(m, 0), n = 0; i; i = IthItem(m, ++n)) { in link_col_major()
63 Down(IthItem(m, n-1)) = IthItem(m, n - Rows(m)); in link_col_major()
70 for (n = 0; n < Rows(m); n++) { in link_col_major()
81 for (n = 0; n < Nitems(m); n += Rows(m)) { in link_col_major()
84 Up(IthItem(m, n)) = IthItem(m, n-1); in link_col_major()
96 int n; in link_row_major() local
103 for (i = IthItem(m, 0), n = 0; i; i = IthItem(m, ++n)) { in link_row_major()
134 for (n = 0; n < Nitems(m); n += Cols(m)) { in link_row_major()
146 for (n = 0; n < Cols(m); n++) { in link_row_major()
[all …]
/illumos-gate/usr/src/cmd/ipf/lib/
H A Dnat_setgroupmap.c13 ipnat_t *n; in nat_setgroupmap()
15 if (n->in_outmsk == n->in_inmsk)
16 n->in_ippip = 1;
18 n->in_ippip = ~ntohl(n->in_inmsk);
20 n->in_ippip /= (~ntohl(n->in_outmsk) + 1);
21 n->in_ippip++;
24 n->in_ppip = USABLE_PORTS / n->in_ippip;
26 n->in_space = USABLE_PORTS * ~ntohl(n->in_outmsk);
27 n->in_nip = 0;
28 if (!(n->in_ppip = n->in_pmin))
[all …]
/illumos-gate/usr/src/cmd/fm/dicts/
H A DZFS.po42n\n\n# zpool import\n pool: test\n id: 12743384782310107047\n state: ONLINE\naction: The pool …
58n\nIf this error was encountered while running 'zpool import', please see\nthe section below. Oth…
74n\nIf this error was encountered while running 'zpool import', please see\nthe section below. Oth…
90n\nIf this error was encountered while running 'zpool import', please see\nthe section below. Oth…
106n\nIf this error was encountered while running 'zpool import', please see\nthe section below. Oth…
122n\n\n# zpool import\n pool: test\n id: 13783646421373024673\n state: FAULTED\nstatus: One or m…
138n\nIf this error is encountered during 'zpool import', see the\nsection below. Otherwise, run 'zp…
154n\n\n# zpool status -x\n pool: test\n state: ONLINE\nstatus: One or more devices has experienced …
170n\n\n# zpool status\n pool: test\n state: ONLINE\nstatus: One or more devices has experienced an …
186n\n\n# zpool status -x\n pool: test\n state: FAULTED\nstatus: The ZFS version for the pool is inc…
[all …]
/illumos-gate/usr/src/cmd/sgs/crle/common/
H A Dcrle.msg43 name\n\
61 \n\
71 \n\
94 option\n"
187 @ MSG_DMP_HASH "Object Entries:\n Id\tBkt\tString\n"
193 configuration file creation\n\n"
195 configuration file creation\n\n"
198 @ MSG_DMP_CMD_ONE " crle %s\n\n"
201 @ MSG_DMP_CMD_END "%s\n\n"
203 @ MSG_DMP_CMD_ONE_V " crle %s\n\n"
[all …]
/illumos-gate/usr/src/contrib/ast/src/lib/libast/features/
H A Dccode4 printf("\n");
5 printf("#define CC_ASCII 1 /* ISO-8859-1 */\n");
13 printf("\n");
15 printf("\n");
16 printf("#define CC_EBCDIC CC_EBCDIC_E\n");
17 printf("#define CC_EBCDIC1 CC_EBCDIC_E\n");
18 printf("#define CC_EBCDIC2 CC_EBCDIC_I\n");
20 printf("\n");
30 switch ('\n')
65 printf("#define CC_ALIEN CC_EBCDIC /* alien character code */\n\n");
[all …]
H A Dnl_types22 printf("\n");
24 printf("#undef NL_SETMAX\n");
32 printf("#undef NL_SETD\n");
40 printf("#undef nl_catd\n");
42 printf("#undef catopen\n");
49 printf("\n");
51 printf("\n");
54 printf("#endif\n");
55 printf("\n");
59 printf("\n");
[all …]
H A Daso161 #define _aso_cas8(p,o,n) cas8(p,o,n)
164 #define _aso_cas16(p,o,n) cas16(p,o,n)
167 #define _aso_cas32(p,o,n) cas32(p,o,n)
170 #define _aso_cas64(p,o,n) cas64(p,o,n)
192 #define _aso_cas8(p,o,n) cas8(p,o,n)
193 #define _aso_cas16(p,o,n) cas16(p,o,n)
194 #define _aso_cas32(p,o,n) cas32(p,o,n)
195 #define _aso_cas64(p,o,n) cas64(p,o,n)
212 #define _aso_cas8(p,o,n) cas8(p,o,n)
215 #define _aso_cas16(p,o,n) cas16(p,o,n)
[all …]
/illumos-gate/usr/src/cmd/sh/
H A Dname.c125 high = n - 1; in syslook()
183 n->namenv = n->namval = argscan; in setname()
207 assign(n, v); in dfault()
220 if (n == &pathnod || eq(n->namid,"SHELL")) in assign()
228 freefunc(n); in assign()
230 n->namenv = 0; in assign()
362 n = 0; in readvar()
414 while (n) in readvar()
420 n = 0; in readvar()
604 if (n->namval) in countnam()
[all …]
/illumos-gate/usr/src/cmd/isns/isnsd/
H A Dsched.c113 n = n->pred; in il_shift()
115 n = n->sucd; in il_shift()
194 npred = n; in el_init()
407 n = n->pred; in el_add()
478 n = curr; in el_remove()
526 n->pred->sucd = n->sucd; in el_remove()
527 n->sucd->pred = n->pred; in el_remove()
540 n = n->sucd; in el_remove()
579 n = n->sucd; in el_first()
593 while (n != NULL && n->isdummy) { in el_first()
[all …]
/illumos-gate/usr/src/contrib/ast/src/lib/libast/string/
H A Dstrexpr.c105 n = 0; in expr()
135 if (!n) n = x; in expr()
161 n = n || x; in expr()
181 n = n && x; in expr()
196 if (c == '=') n = n == x; in expr()
197 else n = n != x; in expr()
216 if (c == '<') n = n <= x; in expr()
217 else n = n >= x; in expr()
222 if (c == '<') n = n < x; in expr()
223 else n = n > x; in expr()
[all …]
/illumos-gate/usr/src/lib/libldap5/sources/ldap/common/
H A Dcharset.c1025 Byte n; in c_to_hh() local
1028 n = c >> 4; in c_to_hh()
1029 *o++ = ((n < 0xA) ? '0' : 'A' - 0xA) + n; in c_to_hh()
1030 n = c & 0x0F; in c_to_hh()
1031 *o++ = ((n < 0xA) ? '0' : 'A' - 0xA) + n; in c_to_hh()
1212 int n, c = 0; in cc_to_t61() local
1535 n = -c; in cc_to_t61()
1730 Byte n; local
1742 *o++ = ((n < 0xA) ? '0' : 'A' - 0xA) + n;
1744 *o++ = ((n < 0xA) ? '0' : 'A' - 0xA) + n;
[all …]
/illumos-gate/usr/src/lib/libdemangle/common/
H A Dcxx_util.c40 (void) memset(n, 0, sizeof (*n)); in name_init()
47 if (n == NULL) in name_fini()
50 name_clear(n); in name_fini()
51 xfree(n->nm_ops, n->nm_items, n->nm_size); in name_fini()
71 if (n == NULL) in name_clear()
82 n->nm_len = 0; in name_clear()
102 void *temp = xrealloc(n->nm_ops, n->nm_items, in name_reserve()
146 n->nm_items[n->nm_len++] = sp; in name_add_str()
156 return (&n->nm_items[n->nm_len - idx - 1]); in name_at()
180 n->nm_len--; in name_pop()
[all …]
/illumos-gate/usr/src/cmd/mailx/
H A Dtranslate.c41 struct name *n, *t, *x; in translate() local
55 for (n = np; n; n = n->n_flink) in translate()
60 for (n = np; n; n = n->n_flink) in translate()
79 for (n = np; n; n = n->n_flink) { in translate()
80 if (n->n_type & GDEL) in translate()
88 n->n_type |= GDEL; in translate()
89 n->n_name = ""; in translate()
94 cat(t, n->n_flink); in translate()
95 n->n_flink = NULL; in translate()
96 cat(n, x); in translate()
[all …]
/illumos-gate/usr/src/test/util-tests/tests/awk/examples/awk/
H A Dt.addops1 { n = $1
2 n += $1
4 n = $1
5 n -= $1
7 n = $1
8 n *= 3.5
10 n = $1
11 n /= 4
13 n = NR
14 n ^= 2
[all …]
/illumos-gate/usr/src/uts/common/io/nxge/npi/
H A Dnpi_vir.h41 #define VIR_ID_SHIFT(n) (n << NPI_PORT_CHAN_SHIFT) argument
81 #define NPI_VIR_SR_FREE(n) (VIR_ID_SHIFT(n) | VIR_ERR_ST | VIR_SR_FREE) argument
85 #define NPI_VIR_SR_INITIALIZED(n) (VIR_ID_SHIFT(n) | \ argument
96 #define NPI_VIR_BD_FUNC_INVALID(n) (VIR_ID_SHIFT(n) | \ argument
98 #define NPI_VIR_BD_REG_INVALID(n) (VIR_ID_SHIFT(n) | \ argument
100 #define NPI_VIR_BD_ID_INVALID(n) (VIR_ID_SHIFT(n) | \ argument
102 #define NPI_VIR_BD_TXDMA_INVALID(n) (VIR_ID_SHIFT(n) | \ argument
104 #define NPI_VIR_BD_RXDMA_INVALID(n) (VIR_ID_SHIFT(n) | \ argument
112 #define NPI_VIR_LDSV_INVALID(n) (VIR_ID_SHIFT(n) | \ argument
114 #define NPI_VIR_INTM_TM_INVALID(n) (VIR_ID_SHIFT(n) | \ argument
[all …]
/illumos-gate/usr/src/lib/libresolv2/common/nameser/
H A Dns_rdata.c39 rdata += n, rdlen -= n; \
44 nrdata += n, nrdsiz -= n, nrdlen += n; \
56 n = t; \
62 n = (x); \
63 if ((size_t)n > rdlen || (size_t)n > nrdsiz) { \
73 n = (x); \
88 int n; in ns_rdata_unpack() local
144 rdata1 += n, rdlen1 -= n; \
145 rdata2 += n, rdlen2 -= n; \
165 if (n > rdlen1 || n > rdlen2) { \
[all …]

12345678910>>...161