Home
last modified time | relevance | path

Searched refs:ustr (Results 1 – 25 of 32) sorted by relevance

12

/netbsd-src/external/gpl3/binutils.old/dist/binutils/
H A Dmcparse.c208 unichar *ustr; member
1329 cur_node->user_text = (yyvsp[0].ustr); in yyparse()
1407 mcset_msg_id_typedef = (yyvsp[0].ustr); in yyparse()
1437 mc_add_keyword ((yyvsp[-3].ustr), MCTOKEN, "severity", (yyvsp[-1].ival), (yyvsp[0].ustr)); in yyparse()
1463 mc_add_keyword ((yyvsp[-3].ustr), MCTOKEN, "facility", (yyvsp[-1].ival), (yyvsp[0].ustr)); in yyparse()
1489 mc_add_keyword ((yyvsp[-5].ustr), MCTOKEN, "language", (yyvsp[-3].ival), (yyvsp[0].ustr)); in yyparse()
1521 (yyval.ustr) = NULL; in yyparse()
1529 (yyval.ustr) = (yyvsp[0].ustr); in yyparse()
1536 { mc_fatal ("illegal token in identifier"); (yyval.ustr) = NULL; } in yyparse()
1668 mc_last_symbol = (yyvsp[0].ustr); in yyparse()
[all …]
H A Dmclex.c378 yylval.ustr = get_diff (input_stream_pos, start_token); in yylex()
409 yylval.ustr = get_diff (input_stream_pos, start_token); in yylex()
421 yylval.ustr = get_diff (input_stream_pos, start_token); in yylex()
431 yylval.ustr = get_diff (input_stream_pos, start_token); in yylex()
456 yylval.ustr = get_diff (input_stream_pos, start_token); in yylex()
H A Dmcparse.y46 unichar *ustr; member
54 %token<ustr> MCIDENT MCFILENAME MCLINE MCCOMMENT
62 %type<ustr> alias_name token lines comments
H A Dmcparse.h109 unichar *ustr; member
/netbsd-src/external/gpl3/binutils/dist/binutils/
H A Dmcparse.c208 unichar *ustr; member
1329 cur_node->user_text = (yyvsp[0].ustr); in yyparse()
1407 mcset_msg_id_typedef = (yyvsp[0].ustr); in yyparse()
1437 mc_add_keyword ((yyvsp[-3].ustr), MCTOKEN, "severity", (yyvsp[-1].ival), (yyvsp[0].ustr)); in yyparse()
1463 mc_add_keyword ((yyvsp[-3].ustr), MCTOKEN, "facility", (yyvsp[-1].ival), (yyvsp[0].ustr)); in yyparse()
1489 mc_add_keyword ((yyvsp[-5].ustr), MCTOKEN, "language", (yyvsp[-3].ival), (yyvsp[0].ustr)); in yyparse()
1521 (yyval.ustr) = NULL; in yyparse()
1529 (yyval.ustr) = (yyvsp[0].ustr); in yyparse()
1536 { mc_fatal ("illegal token in identifier"); (yyval.ustr) = NULL; } in yyparse()
1668 mc_last_symbol = (yyvsp[0].ustr); in yyparse()
[all …]
H A Dmclex.c378 yylval.ustr = get_diff (input_stream_pos, start_token); in yylex()
409 yylval.ustr = get_diff (input_stream_pos, start_token); in yylex()
421 yylval.ustr = get_diff (input_stream_pos, start_token); in yylex()
431 yylval.ustr = get_diff (input_stream_pos, start_token); in yylex()
456 yylval.ustr = get_diff (input_stream_pos, start_token); in yylex()
H A Dmcparse.y46 unichar *ustr; member
54 %token<ustr> MCIDENT MCFILENAME MCLINE MCCOMMENT
62 %type<ustr> alias_name token lines comments
H A Dmcparse.h109 unichar *ustr; member
/netbsd-src/external/cddl/osnet/sys/kern/
H A Dddi.c199 const unsigned char *ustr = (const unsigned char *)str; in ddi_strtoul() local
202 *ptr = (char *)ustr; /* in case no number is formed */ in ddi_strtoul()
207 if (!isalnum(c = *ustr)) { in ddi_strtoul()
209 c = *++ustr; in ddi_strtoul()
215 c = *++ustr; in ddi_strtoul()
221 else if (ustr[1] == 'x' || ustr[1] == 'X') in ddi_strtoul()
231 if (base == 16 && c == '0' && (ustr[1] == 'x' || ustr[1] == 'X') && in ddi_strtoul()
232 isxdigit(ustr[2])) in ddi_strtoul()
233 c = *(ustr += 2); /* skip over leading "0x" or "0X" */ in ddi_strtoul()
237 for (c = *++ustr; lisalnum(c) && (xx = DIGIT(c)) < base; ) { in ddi_strtoul()
[all …]
/netbsd-src/games/hack/
H A Dhack.potion.c92 if (u.ustr < u.ustrmax) { in dodrink()
93 u.ustr = u.ustrmax; in dodrink()
195 if (u.ustr >= 118) in dodrink()
197 if (u.ustr > 17) in dodrink()
198 u.ustr += rnd(118 - u.ustr); in dodrink()
200 u.ustr++; in dodrink()
201 if (u.ustr > u.ustrmax) in dodrink()
202 u.ustrmax = u.ustr; in dodrink()
373 if (u.ustr < u.ustrmax) in potionbreathe()
374 u.ustr++, flags.botl = 1; in potionbreathe()
H A Dhack.u_init.c269 u.ustr = u.ustrmax = 18; in u_init()
277 u.ustr = u.ustrmax = 8; in u_init()
288 u.ustr = u.ustrmax = 16; in u_init()
296 u.ustr = u.ustrmax = 10; in u_init()
304 u.ustr = u.ustrmax = 10; in u_init()
310 u.ustr = u.ustrmax = 17; in u_init()
315 u.ustr = u.ustrmax = 16; in u_init()
320 u.ustr += dr; in u_init()
329 while (inv_weight() > 0 && u.ustr < 118) in u_init()
330 u.ustr++, u.ustrmax++; in u_init()
H A Dhack.eat.c150 if (u.ustr < 118) in opentin()
151 u.ustr += rnd(((u.ustr < 17) ? 19 : 118) - u.ustr); in opentin()
152 if (u.ustr > u.ustrmax) in opentin()
153 u.ustrmax = u.ustr; in opentin()
231 tmp = 10 + rn2(1 + 500 / ((int) (u.ulevel + u.ustr))); in doeat()
323 if (u.ustr < u.ustrmax) in doeat()
324 u.ustr++; in doeat()
428 else if (newhs < WEAK && u.uhs >= WEAK && u.ustr < u.ustrmax) in newuhs()
H A Dhack.c840 if (u.ustr == 3) in abon()
842 else if (u.ustr < 6) in abon()
844 else if (u.ustr < 8) in abon()
846 else if (u.ustr < 17) in abon()
848 else if (u.ustr < 69) in abon()
850 else if (u.ustr < 118) in abon()
859 if (u.ustr < 6) in dbon()
861 else if (u.ustr < 16) in dbon()
863 else if (u.ustr < 18) in dbon()
865 else if (u.ustr == 18) in dbon()
[all …]
H A Dhack.do_wear.c314 u.ustr += otmp->spe; in dowearring()
316 if (u.ustr > 118) in dowearring()
317 u.ustr = 118; in dowearring()
354 u.ustr -= obj->spe; in ringoff()
356 if (u.ustr > 118) in ringoff()
357 u.ustr = 118; in ringoff()
H A Dhack.pri.c732 if (u.ustr > 18) { in bot()
733 if (u.ustr > 117) in bot()
738 "18/%02d", u.ustr - 18); in bot()
743 "%-2d ", u.ustr); in bot()
H A Dhack.h168 schar ustr,ustrmax; member
/netbsd-src/external/gpl2/groff/dist/src/utils/hpftodit/
H A Dhpftodit.cpp1274 const char *ustr = hp_msl_to_unicode_code(codestr); in hp_msl_to_ucode_name() local
1275 if (ustr == NULL) in hp_msl_to_ucode_name()
1276 ustr = UNNAMED; in hp_msl_to_ucode_name()
1279 int ucode = int(strtol(ustr, &nonum, 16)); in hp_msl_to_ucode_name()
1282 ustr = UNNAMED; in hp_msl_to_ucode_name()
1284 if (!equal(ustr, UNNAMED)) { in hp_msl_to_ucode_name()
1285 const char *uname_decomposed = decompose_unicode(ustr); in hp_msl_to_ucode_name()
1288 ustr = uname_decomposed + 1; in hp_msl_to_ucode_name()
1290 char *value = new char[strlen(ustr) + 1]; in hp_msl_to_ucode_name()
1291 sprintf(value, equal(ustr, UNNAMED) ? ustr : "u%s", ustr); in hp_msl_to_ucode_name()
[all …]
/netbsd-src/usr.bin/pkill/
H A Dpkill.c471 const char *ustr; in killact()
478 ustr = "[-Lfilnqvx] [-d delim]"; in killact()
480 ustr = "[-signal] [-Lfilnvx]"; in killact()
486 getprogname(), ustr); in killact()
445 const char *ustr; usage() local
/netbsd-src/external/bsd/iscsi/dist/src/lib/
H A Dsnprintf.c621 unsigned char *ustr = (unsigned char *)str; in vsnprintf() local
625 state.str = ustr; in vsnprintf()
626 state.s = ustr; in vsnprintf()
627 state.theend = ustr + sz - (sz > 0); in vsnprintf()
/netbsd-src/tools/compat/
H A Dsnprintf.c649 unsigned char *ustr = (unsigned char *)str; in vsnprintf() local
653 state.str = ustr; in vsnprintf()
654 state.s = ustr; in vsnprintf()
655 state.theend = ustr + sz - (sz > 0); in vsnprintf()
/netbsd-src/crypto/external/bsd/heimdal/dist/lib/roken/
H A Dsnprintf.c691 unsigned char *ustr = (unsigned char *)str; in rk_vsnprintf() local
695 state.str = ustr; in rk_vsnprintf()
696 state.s = ustr; in rk_vsnprintf()
697 state.theend = ustr + sz - (sz > 0); in rk_vsnprintf()
/netbsd-src/external/gpl3/binutils/dist/gprofng/src/
H A DDbeSession.h297 Vector<Function *> *match_func_names (const char *ustr, Histable::NameFormat nfmt);
301 Vector<JThread*> *match_java_threads (char *ustr, int matchParent,
305 Vector<FileData *> *match_file_names (char *ustr, Histable::NameFormat nfmt);
H A DDbeSession.cc3347 DbeSession::match_java_threads (char *ustr, int matchParent, in match_java_threads() argument
3351 if (ustr == NULL) in match_java_threads()
3354 char *str = dbe_sprintf (NTXT ("^%s$"), ustr); in match_java_threads()
3398 DbeSession::match_func_names (const char *ustr, Histable::NameFormat nfmt) in match_func_names() argument
3400 if (ustr == NULL) in match_func_names()
3402 char *str = dbe_sprintf (NTXT ("^%s$"), ustr); in match_func_names()
3430 DbeSession::match_file_names (char *ustr, Histable::NameFormat nfmt) in match_file_names() argument
3432 if (ustr == NULL) in match_file_names()
3434 char *str = dbe_sprintf (NTXT ("^%s$"), ustr); in match_file_names()
3469 DbeSession::match_dobj_names (char *ustr) in match_dobj_names() argument
[all …]
/netbsd-src/external/gpl3/binutils.old/dist/gprofng/src/
H A DDbeSession.h297 Vector<Function *> *match_func_names (const char *ustr, Histable::NameFormat nfmt);
301 Vector<JThread*> *match_java_threads (char *ustr, int matchParent,
305 Vector<FileData *> *match_file_names (char *ustr, Histable::NameFormat nfmt);
H A DDbeSession.cc3347 DbeSession::match_java_threads (char *ustr, int matchParent, in match_java_threads() argument
3351 if (ustr == NULL) in match_java_threads()
3354 char *str = dbe_sprintf (NTXT ("^%s$"), ustr); in match_java_threads()
3398 DbeSession::match_func_names (const char *ustr, Histable::NameFormat nfmt) in match_func_names() argument
3400 if (ustr == NULL) in match_func_names()
3402 char *str = dbe_sprintf (NTXT ("^%s$"), ustr); in match_func_names()
3430 DbeSession::match_file_names (char *ustr, Histable::NameFormat nfmt) in match_file_names() argument
3432 if (ustr == NULL) in match_file_names()
3434 char *str = dbe_sprintf (NTXT ("^%s$"), ustr); in match_file_names()
3469 DbeSession::match_dobj_names (char *ustr) in match_dobj_names() argument
[all …]

12