Home
last modified time | relevance | path

Searched refs:n (Results 1 – 25 of 3295) sorted by relevance

12345678910>>...132

/illumos-gate/usr/src/cmd/acpi/iasl/
H A Dasltypes.y161 %type <n> ArgList
162 %type <n> AslCode
163 %type <n> BufferData
164 %type <n> BufferTermData
165 %type <n> CompilerDirective
166 %type <n> DataObject
167 %type <n> DefinitionBlockTerm
168 %type <n> DefinitionBlockList
169 %type <n> IntegerData
170 %type <n> NamedObject
[all …]
H A Daslcstyle.y204 : PARSEOP_EXP_LOGICAL_NOT {$<n>$ = TrCreateLeafOp (PARSEOP_LNOT);}
205 TermArg {$$ = TrLinkOpChildren ($<n>2,1,$3);}
206 | PARSEOP_EXP_NOT {$<n>$ = TrCreateLeafOp (PARSEOP_NOT);}
207 … TermArg {$$ = TrLinkOpChildren ($<n>2,2,$3,TrCreateNullTargetOp ());}
209 | SuperName PARSEOP_EXP_INCREMENT {$<n>$ = TrCreateLeafOp (PARSEOP_INCREMENT);}
210 {$$ = TrLinkOpChildren ($<n>3,1,$1);}
211 | SuperName PARSEOP_EXP_DECREMENT {$<n>$ = TrCreateLeafOp (PARSEOP_DECREMENT);}
212 {$$ = TrLinkOpChildren ($<n>3,1,$1);}
216 | TermArg PARSEOP_EXP_ADD {$<n>$ = TrCreateLeafOp (PARSEOP_ADD);}
217 … TermArg {$$ = TrLinkOpChildren ($<n>3,3,$1,$4,TrCreateNullTargetOp ());}
[all …]
H A Daslprimaries.y177 PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp(PARSEOP_ACQUIRE);}
180 PARSEOP_CLOSE_PAREN {$$ = TrLinkOpChildren ($<n>3,2,$4,$6);}
188 PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_ADD);}
192 PARSEOP_CLOSE_PAREN {$$ = TrLinkOpChildren ($<n>3,3,$4,$5,$6);}
200 PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_ALIAS);}
203 PARSEOP_CLOSE_PAREN {$$ = TrLinkOpChildren ($<n>3,2,$4,
212 PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_AND);}
216 PARSEOP_CLOSE_PAREN {$$ = TrLinkOpChildren ($<n>3,3,$4,$5,$6);}
234 PARSEOP_OPEN_PAREN {$<n>$ = TrCreateLeafOp (PARSEOP_BANKFIELD);}
242 FieldUnitList '}' {$$ = TrLinkOpChildren ($<n>3,7,
[all …]
/illumos-gate/usr/src/uts/common/io/scsi/adapters/pmcs/
H A Dpmcs_fwlog.c55 int n = 0; in pmcs_register_dump_int() local
78 n = pmcs_dump_spc_ver(pwp, buf, size_left); in pmcs_register_dump_int()
79 ASSERT(size_left >= n); in pmcs_register_dump_int()
80 buf += n; size_left -= n; in pmcs_register_dump_int()
81 n = pmcs_dump_gsm_conf(pwp, buf, size_left); in pmcs_register_dump_int()
82 ASSERT(size_left >= n); in pmcs_register_dump_int()
83 buf += n; size_left -= n; in pmcs_register_dump_int()
84 n = pmcs_dump_pcie_conf(pwp, buf, size_left); in pmcs_register_dump_int()
85 ASSERT(size_left >= n); in pmcs_register_dump_int()
86 buf += n; size_left -= n; in pmcs_register_dump_int()
[all …]
/illumos-gate/usr/src/cmd/mandoc/
H A Dman_validate.c43 #define CHKARGS struct roff_man *man, struct roff_node *n
111 struct roff_node *n; in man_validate() local
119 n = man->last; in man_validate()
120 switch (n->tok) { in man_validate()
123 n->tok = MAN_PP; in man_validate()
137 if (man->last == n) in man_validate()
145 man->last = n; in man_validate()
147 switch (n->type) { in man_validate()
149 check_text(man, n); in man_validate()
152 check_root(man, n); in man_validate()
[all …]
H A Dmdoc_validate.c304 struct roff_node *n, *np; in mdoc_validate() local
313 n = mdoc->last; in mdoc_validate()
314 switch (n->tok) { in mdoc_validate()
316 n->tok = MDOC_Pp; in mdoc_validate()
320 n->tok = MDOC_Ft; in mdoc_validate()
334 if (mdoc->last == n) in mdoc_validate()
342 mdoc->last = n; in mdoc_validate()
344 switch (n->type) { in mdoc_validate()
346 np = n->parent; in mdoc_validate()
347 if (n->sec != SEC_SYNOPSIS || in mdoc_validate()
[all …]
H A Dmdoc_markdown.c298 md_nodelist(struct roff_node *n) in md_nodelist() argument
300 while (n != NULL) { in md_nodelist()
301 md_node(n); in md_nodelist()
302 n = n->next; in md_nodelist()
307 md_node(struct roff_node *n) in md_node() argument
312 if (n->type == ROFFT_COMMENT || n->flags & NODE_NOPRT) in md_node()
318 n->flags & NODE_LINE && in md_node()
319 !roff_node_transparent(n)) in md_node()
325 n->flags &= ~NODE_ENDED; in md_node()
327 if (n->type == ROFFT_TEXT) { in md_node()
[all …]
H A Dmdoc_html.c40 struct roff_node *n, \
247 synopsis_pre(struct html *h, struct roff_node *n) in synopsis_pre() argument
251 if ((n->flags & NODE_SYNPRETTY) == 0 || in synopsis_pre()
252 (np = roff_node_prev(n)) == NULL) in synopsis_pre()
255 if (np->tok == n->tok && in synopsis_pre()
256 MDOC_Fo != n->tok && in synopsis_pre()
257 MDOC_Ft != n->tok && in synopsis_pre()
258 MDOC_Fn != n->tok) { in synopsis_pre()
271 if (n->tok != MDOC_Fn && n->tok != MDOC_Fo) in synopsis_pre()
286 struct roff_node *n; in html_mdoc() local
[all …]
H A Dmdoc_term.c50 struct roff_node *n
251 struct roff_node *n, *nn; in terminal_mdoc() local
261 n = mdoc->first->child; in terminal_mdoc()
263 for (nn = NULL; n != NULL; n = n->next) { in terminal_mdoc()
264 if (n->tok != MDOC_Sh) in terminal_mdoc()
266 if (n->sec == SEC_SYNOPSIS) in terminal_mdoc()
268 if (nn == NULL && n->sec == SEC_NAME) in terminal_mdoc()
269 nn = n; in terminal_mdoc()
271 if (n == NULL) in terminal_mdoc()
272 n = nn; in terminal_mdoc()
[all …]
/illumos-gate/usr/src/cmd/sgs/rtld/mdbmod/common/
H A Drtld.msg37 @ MSG_STR_DASHES "----------------------------------------------\n"
197 @ MSG_ERR_NAS "%s:: no address specified\n"
198 @ MSG_ERR_READ "%s:: failed to read from: 0x%p\n"
199 @ MSG_ERR_SYMFAILED "rtmaps:: lookup of %s`%s failed\n"
204 @ MSG_FMT_RT "[0x%x]\t0x%0?p 0x%0?p %s\n"
213 @ MSG_EHDR_TITLE "Elf Header located at: 0x%p\n"
214 @ MSG_EHDR_LINE1 " ei_magic: { 0x%x, %c, %c, %c }\n"
215 @ MSG_EHDR_LINE2 " ei_class: %-18s ei_data: %s\n"
216 @ MSG_EHDR_LINE3 " e_machine: %-18s e_version: %s\n"
217 @ MSG_EHDR_LINE4 " e_type: %s\n"
[all …]
/illumos-gate/usr/src/contrib/ast/src/lib/libast/features/
H A Diconv25 printf("#include <ast_common.h>\n");
26 printf("#include <ccode.h>\n");
28 printf("#undef _hdr_iconv\n");
31 printf("#undef _lib_iconv_open\n");
34 printf("#include <%s> /* the native iconv.h */\n", _nxt_iconv_str);
36 printf("\n");
37 printf("#define ICONV_VERSION 20110111L\n");
38 printf("\n");
39 printf("#define ICONV_FATAL 0x02\n");
40 printf("#define ICONV_OMIT 0x04\n");
[all …]
/illumos-gate/usr/src/cmd/lp/lib/lp/
H A DSyscalls.c53 register int n; local
55 while ((n = access(s, i)) == -1 && errno == EINTR)
57 return (n);
70 register int n; local
72 while ((n = chdir(s)) == -1 && errno == EINTR)
74 return (n);
89 register int n; local
91 while ((n = chmod(s, i)) == -1 && errno == EINTR)
93 return (n);
110 register int n; local
[all …]
/illumos-gate/usr/src/lib/cfgadm_plugins/usb/
H A Dusb.xcl56 msgid ""add_entry: failed to write config file\n"
58 msgid "!FOUND\n"
60 msgid "usb_rcm_offline:\n"
62 msgid "usb_rcm_offline: rsrc_fixed: %s\n"
64 msgid "usb_rcm_offline: rcm_request_offline failed\n"
66 msgid "usb_rcm_offline: table = %s\n"
68 msgid "usb_rcm_online:\n"
70 msgid "usb_rcm_online: rcm_notify_online failed\n"
72 msgid "usb_rcm_remove:\n"
74 msgid "usb_rcm_remove: rcm_notify_remove failed\n"
[all …]
/illumos-gate/usr/src/cmd/sgs/elfedit/common/
H A Delfedit.msg37 [-o style] [file] [outfile]\n"
38 @ MSG_USAGE_DETAIL1 "\t[-a] Autoprint (show edit results)\n"
40 operations\n"
41 @ MSG_USAGE_DETAIL3 "\t[-e cmd] edit command\n"
42 @ MSG_USAGE_DETAIL4 "\t[-L modpath] Set module path\n"
43 @ MSG_USAGE_DETAIL5 "\t[-o ostyle] Output style (default|simple|num)\n"
45 allowed)\n"
46 @ MSG_USAGE_DETAIL_LAST "\n\tExtensive help for edit commands is available.\n\
47 \tEnter 'help' at the elfedit prompt.\n"
48 @ MSG_USAGE_CMD "usage: %s\n"
[all …]
/illumos-gate/usr/src/cmd/bhyve/
H A Dhdac_reg.h81 #define _HDAC_ISDOFFSET(n, iss, oss) (0x80 + ((n) * 0x20)) argument
82 #define _HDAC_ISDCTL(n, iss, oss) (0x00 + _HDAC_ISDOFFSET(n, iss, oss)) argument
83 #define _HDAC_ISDSTS(n, iss, oss) (0x03 + _HDAC_ISDOFFSET(n, iss, oss)) argument
84 #define _HDAC_ISDPICB(n, iss, oss) (0x04 + _HDAC_ISDOFFSET(n, iss, oss)) argument
85 #define _HDAC_ISDCBL(n, iss, oss) (0x08 + _HDAC_ISDOFFSET(n, iss, oss)) argument
86 #define _HDAC_ISDLVI(n, iss, oss) (0x0c + _HDAC_ISDOFFSET(n, iss, oss)) argument
87 #define _HDAC_ISDFIFOD(n, iss, oss) (0x10 + _HDAC_ISDOFFSET(n, iss, oss)) argument
88 #define _HDAC_ISDFMT(n, iss, oss) (0x12 + _HDAC_ISDOFFSET(n, iss, oss)) argument
89 #define _HDAC_ISDBDPL(n, iss, oss) (0x18 + _HDAC_ISDOFFSET(n, iss, oss)) argument
90 #define _HDAC_ISDBDPU(n, iss, oss) (0x1c + _HDAC_ISDOFFSET(n, iss, oss)) argument
[all …]
/illumos-gate/usr/src/cmd/sgs/elfedit/modules/common/
H A Dehdr.msg35 @ MSG_DEBUG_E_S_OK "ehdr.%s: value unchanged: %s\n"
36 @ MSG_DEBUG_E_S_CHG "ehdr.%s: change from %s to %s\n"
37 @ MSG_DEBUG_E_D_OK "ehdr.%s: value unchanged: %d\n"
38 @ MSG_DEBUG_E_D_CHG "ehdr.%s: change from %d to %d\n"
39 @ MSG_DEBUG_E_LLX_OK "ehdr.%s: value unchanged: %#llx\n"
40 @ MSG_DEBUG_E_LLX_CHG "ehdr.%s: change from %#llx to %#llx\n"
41 @ MSG_DEBUG_EI_S_S_OK "ehdr.e_ident[%s]: value unchanged: %s\n";
42 @ MSG_DEBUG_EI_S_S_CHG "ehdr.e_ident[%s]: change from %s to %s\n"
43 @ MSG_DEBUG_EI_D_X_OK "ehdr.e_ident[%d]: value unchanged: %#x\n"
44 @ MSG_DEBUG_EI_D_X_CHG "ehdr.e_ident[%d]: change from %#x to %#x\n"
[all …]
H A Dshdr.msg36 @ MSG_ELF_SHDR "Section Header[%d]: sh_name: %s\n"
40 @ MSG_DEBUG_S_OK "shdr[%d: %s].%s: value unchanged: %s\n"
41 @ MSG_DEBUG_S_CHG "shdr[%d: %s].%s: change from %s to %s\n"
42 @ MSG_DEBUG_LLX_OK "shdr[%d: %s].%s: value unchanged: %#llx\n"
43 @ MSG_DEBUG_LLX_CHG "shdr[%d: %s].%s: change from %#llx to %#llx\n"
44 @ MSG_DEBUG_D_OK "shdr[%d: %s].%s: value unchanged: %d\n"
45 @ MSG_DEBUG_D_CHG "shdr[%d: %s].%s: change from %d to %d\n"
49 module, and should otherwise be completely zero\n"
51 be 0, 1, or a power of 2: %s\n"
78 Interpret the sec argument as a section index rather than\n\
[all …]
H A Ddyn.msg41 @ MSG_DEBUG_S_OK "[%d: %s][%d]: value unchanged: %s\n"
42 @ MSG_DEBUG_S_CHG "[%d: %s][%d]: change from %s to %s\n"
43 @ MSG_DEBUG_X_OK "[%d: %s][%d]: value unchanged: %#llx\n"
44 @ MSG_DEBUG_X_CHG "[%d: %s][%d]: change from %#llx to %#llx\n"
45 @ MSG_DEBUG_PREVRPATH "[%d: %s][%d]: Reusing existing %s entry: %s\n"
47 value\n"
49 extra DT_NULL\n"
50 @ MSG_DEBUG_DT2NDX "[%d: %s][%d]: Dynamic entry for tag: %s\n"
53 elements that follow: %s\n"
56 ignored by the runtime linker: %s\n"
[all …]
H A Dsym.msg46 @ MSG_FMT_SYMTAB "Symbol Table Section: %s\n"
50 @ MSG_DEBUG_S_OK "[%d: %s][%d].%s: value unchanged: %s\n"
51 @ MSG_DEBUG_S_CHG "[%d: %s][%d].%s: change from %s to %s\n"
52 @ MSG_DEBUG_EXT_S_OK "[%d: %s][%d]: value unchanged: %s\n"
53 @ MSG_DEBUG_EXT_S_CHG "[%d: %s][%d]: change from %s to %s\n"
54 @ MSG_DEBUG_D_OK "[%d: %s][%d].%s: value unchanged: %d\n"
55 @ MSG_DEBUG_D_CHG "[%d: %s][%d].%s: change from %d to %d\n"
56 @ MSG_DEBUG_LLX_OK "[%d: %s][%d].%s: value unchanged: %#llx\n"
57 @ MSG_DEBUG_LLX_CHG "[%d: %s][%d].%s: change from %#llx to %#llx\n"
59 SHN_UNDEF\n"
[all …]
/illumos-gate/usr/src/contrib/ast/src/lib/libdll/features/
H A Ddll95 printf("\n");
96 printf("#if defined(__MVS__) && !defined(__SUSV3)\n");
97 printf("#define __SUSV3 1\n");
98 printf("#endif\n");
100 printf("#include <dlfcn.h>\n");
104 printf("\n");
105 printf("#define RTLD_LAZY 1\n");
113 printf("\n");
115 printf("#define RTLD_NOW 2\n");
121 printf("\n");
[all …]
/illumos-gate/usr/src/contrib/ast/src/lib/libast/sfio/
H A Dsftable.c58 int v, n, skip, dollar, decimal, thousand; local
71 while((n = *form) )
72 { if(n != '%') /* collect the non-pattern chars */
107 for(n = 0; n < FP_INDEX; ++n)
108 need[n] = -1;
131 { t_str = sffmtint(t_str+1,&n);
134 else n = -1;
135 if((n = FP_SET(n,argn)) > maxp)
136 maxp = n;
137 if(fp && fp[n].ft.fmt == 0)
[all …]
/illumos-gate/usr/src/cmd/powertop/common/
H A Dsuggestions.c68 sugg_t *new, *n, *pos = NULL; in pt_sugg_add() local
98 for (n = sugg; n != NULL; n = n->next) { in pt_sugg_add()
99 if (strcmp(n->text, text) == 0) in pt_sugg_add()
102 if (weight > n->weight && pos == NULL) in pt_sugg_add()
103 pos = n; in pt_sugg_add()
125 for (n = sugg; n->next != NULL; n = n->next) in pt_sugg_add()
128 n->next = new; in pt_sugg_add()
129 new->prev = n; in pt_sugg_add()
160 sugg_t *n; in pt_sugg_remove() local
163 for (n = sugg; n != NULL; n = n->next) { in pt_sugg_remove()
[all …]
/illumos-gate/usr/src/test/libc-tests/tests/qsort/
H A Dqsort_test.c57 void (*fill)(void *x, int n, int m);
58 int (*test)(struct test_distribution *d, int n, void *x, void *y, void *z);
72 extern int antiqsort(int n, int *a, int *ptr);
139 int m, int n) in check_result() argument
147 "max %zu(%zu)", d->name, sub, m, n, in check_result()
151 "max %zu(%zu)", d->name, sub, n, in check_result()
157 "max %zu(%zu)", d->name, m, n, in check_result()
161 "max %zu(%zu)", d->name, n, in check_result()
167 for (i = 0; i < n; i++) { in check_result()
173 if (i == n) in check_result()
[all …]
/illumos-gate/usr/src/lib/libresolv2/common/resolv/
H A Dres_mkupdate.c81 int n, i, soanum, multiline; in res_nmkupdate() local
178 if ((n = dn_comp(rrecp->r_dname, cp, buflen, dnptrs, in res_nmkupdate()
181 cp += n; in res_nmkupdate()
182 ShrinkBuffer(n + 2*INT16SZ); in res_nmkupdate()
224 n = dn_comp(buf2, cp, buflen, dnptrs, lastdnptr); in res_nmkupdate()
225 if (n < 0) in res_nmkupdate()
227 cp += n; in res_nmkupdate()
228 ShrinkBuffer(n); in res_nmkupdate()
237 n = dn_comp(buf2, cp, buflen, in res_nmkupdate()
239 if (n < 0) in res_nmkupdate()
[all …]
/illumos-gate/usr/src/cmd/cron/
H A Delm.c136 struct notice *nprev, *n; in el_init() local
150 n = (struct notice *)xmalloc(sizeof (struct notice)); in el_init()
151 n->time = LB; in el_init()
152 n->isdummy = TRUE; in el_init()
153 n->left = NULL; in el_init()
154 nprev = n; in el_init()
159 k->notice = n; in el_init()
163 n->key = k; in el_init()
170 n = (struct notice *)xmalloc(sizeof (struct notice)); in el_init()
171 n->time = t; in el_init()
[all …]

12345678910>>...132