Home
last modified time | relevance | path

Searched refs:tmpstr (Results 1 – 14 of 14) sorted by relevance

/openbsd/src/lib/libcurses/widechar/
Dlib_get_wstr.c97 wint_t *tmpstr = str; in wgetn_wstr() local
159 if (tmpstr > oldstr) { in wgetn_wstr()
160 tmpstr = WipeOut(win, y, x, oldstr, tmpstr, save_flags._echo); in wgetn_wstr()
163 while (tmpstr > oldstr) { in wgetn_wstr()
164 tmpstr = WipeOut(win, y, x, oldstr, tmpstr, save_flags._echo); in wgetn_wstr()
169 } else if (tmpstr - oldstr >= maxlen) { in wgetn_wstr()
172 *tmpstr++ = ch; in wgetn_wstr()
173 *tmpstr = 0; in wgetn_wstr()
177 if (wadd_wint(win, tmpstr - 1) == ERR) { in wgetn_wstr()
184 tmpstr = WipeOut(win, y, x, oldstr, tmpstr, save_flags._echo); in wgetn_wstr()
[all …]
/openbsd/src/lib/libcrypto/x509/
Dx509_akey.c103 char *tmpstr = NULL; in STACK_OF() local
111 if ((tmpstr = hex_to_string(akeyid->keyid->data, in STACK_OF()
114 if (!X509V3_add_value("keyid", tmpstr, &extlist)) in STACK_OF()
116 free(tmpstr); in STACK_OF()
117 tmpstr = NULL; in STACK_OF()
127 if ((tmpstr = hex_to_string(akeyid->serial->data, in STACK_OF()
130 if (!X509V3_add_value("serial", tmpstr, &extlist)) in STACK_OF()
132 free(tmpstr); in STACK_OF()
133 tmpstr = NULL; in STACK_OF()
142 free(tmpstr); in STACK_OF()
/openbsd/src/usr.bin/snmp/
Dsnmpc.c1388 char *str = NULL, *tmpstr, *endstr; in snmpc_varbindparse() local
1414 tmpstr = argv[i + 2]; in snmpc_varbindparse()
1417 lval = strtoll(tmpstr, &endstr, 10); in snmpc_varbindparse()
1422 if (tmpstr == endstr) { in snmpc_varbindparse()
1423 tmpstr++; in snmpc_varbindparse()
1437 tmpstr = endstr + 1; in snmpc_varbindparse()
1459 tmpstr = argv[i + 2]; in snmpc_varbindparse()
1462 lval = strtoll(tmpstr, &endstr, 10); in snmpc_varbindparse()
1467 if (tmpstr == endstr) { in snmpc_varbindparse()
1468 tmpstr++; in snmpc_varbindparse()
[all …]
/openbsd/src/gnu/usr.bin/perl/
Dsv.c2367 SV * tmpstr; in Perl_sv_2iv_flags() local
2370 tmpstr = AMG_CALLunary(sv, numer_amg); in Perl_sv_2iv_flags()
2371 if (tmpstr && (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv)))) { in Perl_sv_2iv_flags()
2372 return SvIV(tmpstr); in Perl_sv_2iv_flags()
2462 SV *tmpstr; in Perl_sv_2uv_flags() local
2465 tmpstr = AMG_CALLunary(sv, numer_amg); in Perl_sv_2uv_flags()
2466 if (tmpstr && (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv)))) { in Perl_sv_2uv_flags()
2467 return SvUV(tmpstr); in Perl_sv_2uv_flags()
2574 SV *tmpstr; in Perl_sv_2nv_flags() local
2577 tmpstr = AMG_CALLunary(sv, numer_amg); in Perl_sv_2nv_flags()
[all …]
Dtoke.c11039 SV *tmpstr; in S_scan_heredoc() local
11130 tmpstr = newSV_type(SVt_PVIV); in S_scan_heredoc()
11133 SvIV_set(tmpstr, -1); in S_scan_heredoc()
11137 SvIV_set(tmpstr, '\\'); in S_scan_heredoc()
11241 sv_setpvn_fresh(tmpstr,d+1,s-d); in S_scan_heredoc()
11288 sv_grow_fresh(tmpstr, 80); in S_scan_heredoc()
11289 SvPVCLEAR_FRESH(tmpstr); /* avoid "uninitialized" warning */ in S_scan_heredoc()
11305 && (!SvCUR(tmpstr) || SvEND(tmpstr)[-1] != '\n')) in S_scan_heredoc()
11382 sv_catsv(tmpstr,PL_linestr); in S_scan_heredoc()
11398 sv_catsv(tmpstr,PL_linestr); in S_scan_heredoc()
[all …]
Dpp_sort.c788 SV *tmpstr = sv_newmortal(); in PP() local
789 gv_efullname3(tmpstr, gv, NULL); in PP()
791 SVfARG(tmpstr)); in PP()
Dpp_ctl.c3193 SV *tmpstr; in PP() local
3202 tmpstr = sv_newmortal(); in PP()
3203 gv_efullname3(tmpstr, gv, NULL); in PP()
3204 DIE(aTHX_ "Goto undefined subroutine &%" SVf, SVfARG(tmpstr)); in PP()
3288 SV * const tmpstr = sv_newmortal(); in PP() local
3289 gv_efullname3(tmpstr, gv, NULL); in PP()
3291 SVfARG(tmpstr)); in PP()
3662 SV * const tmpstr = newSV_type(SVt_PVMG); in S_save_lines() local
3670 sv_setpvn_fresh(tmpstr, s, t - s); in S_save_lines()
3671 av_store(array, line++, tmpstr); in S_save_lines()
Dop.c10496 SV * const tmpstr = sv_newmortal(); in Perl_newMYSUB() local
10505 sv_sethek(tmpstr, HvNAME_HEK(PL_curstash)); in Perl_newMYSUB()
10506 sv_catpvs(tmpstr, "::"); in Perl_newMYSUB()
10509 sv_setpvs(tmpstr, "__ANON__::"); in Perl_newMYSUB()
10511 sv_catpvn_flags(tmpstr, PadnamePV(name)+1, PadnameLEN(name)-1, in Perl_newMYSUB()
10513 (void)hv_store_ent(GvHV(PL_DBsub), tmpstr, sv, 0); in Perl_newMYSUB()
10515 if (HvTOTALKEYS(hv) > 0 && hv_exists_ent(hv, tmpstr, 0)) { in Perl_newMYSUB()
10522 rpp_xpush_1(tmpstr); in Perl_newMYSUB()
11117 SV * const tmpstr = cv_name(cv,NULL,0); in Perl_newATTRSUB_x() local
11125 (void)hv_store_ent(GvHV(PL_DBsub), tmpstr, sv, 0); in Perl_newATTRSUB_x()
[all …]
Dpp.c1889 SV * const tmpstr = POPs; variable
1893 if (TARG != tmpstr)
1894 sv_setsv_nomg(TARG, tmpstr);
/openbsd/src/gnu/usr.bin/gcc/gcc/config/i960/
Di960.c1329 char tmpstr[1000]; local
1385 sprintf (tmpstr, "\tmov%s %s,%s\n",
1391 strcat (epilogue_string, tmpstr);
1489 sprintf (tmpstr,"\tld%s %d(fp),%s\n",
1494 strcat (epilogue_string, tmpstr);
/openbsd/src/gnu/usr.bin/perl/dist/Storable/t/
Dblessed.t391 my $ostr = bless \(my $tmpstr = "Foo"), "ThawHookDies";
/openbsd/src/usr.sbin/unbound/util/
Dconfig_file.c1022 char* tmpstr = NULL; \
1025 tmpstr = config_taglist2str(cfg, p->str2, p->str2len); \
1026 if(tmpstr) {\
1027 snprintf(buf, len, "%s %s", p->str, tmpstr); \
1029 free(tmpstr); \
/openbsd/src/sbin/unwind/libunbound/util/
Dconfig_file.c1022 char* tmpstr = NULL; \
1025 tmpstr = config_taglist2str(cfg, p->str2, p->str2len); \
1026 if(tmpstr) {\
1027 snprintf(buf, len, "%s %s", p->str, tmpstr); \
1029 free(tmpstr); \
/openbsd/src/gnu/usr.bin/cvs/src/
Dserver.c585 char tmpstr[80]; local
591 sprintf (tmpstr, "unknown error %d", status);
592 msg = tmpstr;