Lines Matching defs:tmpbuf

286     char tmpbuf[3];
300 *tmpbuf = '^';
301 tmpbuf[1] = toCTRL(PL_multi_close);
303 tmpbuf[2] = '\0';
304 s = tmpbuf;
307 *tmpbuf = (char)PL_multi_close;
308 tmpbuf[1] = '\0';
309 s = tmpbuf;
1569 U8 tmpbuf[UTF8_MAXLEN+1], *d;
1571 d = uvchr_to_utf8(tmpbuf, UNI_TO_NATIVE(uv));
1572 sv_setpvn(res, (char *)tmpbuf, d - tmpbuf);
1772 char tmpbuf[sizeof PL_tokenbuf * 4];
1797 scan_ident(s, send, tmpbuf, sizeof tmpbuf, FALSE);
1798 if ((int)strlen(tmpbuf) > 1 && gv_fetchpv(tmpbuf,FALSE, SVt_PV))
1842 char *d = tmpbuf;
1846 if (keyword(tmpbuf, d - tmpbuf))
1888 char tmpbuf[sizeof PL_tokenbuf];
1907 s = scan_word(s, tmpbuf, sizeof tmpbuf, TRUE, &len);
1910 * tmpbuf is a copy of it
1921 if (!keyword(tmpbuf, len)) {
1922 if (len > 2 && tmpbuf[len - 2] == ':' && tmpbuf[len - 1] == ':') {
1924 tmpbuf[len] = '\0';
1927 indirgv = gv_fetchpv(tmpbuf, FALSE, SVt_PVCV);
1931 if (!gv || GvIO(indirgv) || gv_stashpvn(tmpbuf, len, FALSE)) {
1937 newSVpvn(tmpbuf,len));
3530 char tmpbuf[sizeof PL_tokenbuf];
3534 t = scan_word(t, tmpbuf, sizeof tmpbuf, TRUE, &len);
3536 if (*t == ';' && get_cv(tmpbuf, FALSE))
3538 "You need to quote \"%s\"", tmpbuf);
3554 char tmpbuf[sizeof PL_tokenbuf];
3555 scan_word(s, tmpbuf, sizeof tmpbuf, TRUE, &len);
3556 if ((tmp = keyword(tmpbuf, len))) {
4642 char tmpbuf[1024];
4644 sprintf(tmpbuf, "No such class %.1000s", PL_tokenbuf);
4645 yyerror(tmpbuf);
5009 char tmpbuf[sizeof PL_tokenbuf];
5024 d = scan_word(s, tmpbuf, sizeof tmpbuf, TRUE, &len);
5025 if (strchr(tmpbuf, ':'))
5026 sv_setpv(PL_subname, tmpbuf);
5030 sv_catpvn(PL_subname,tmpbuf,len);
8030 U8 tmpbuf[UTF8_MAXLEN+1];
8060 tmpend = uvchr_to_utf8(tmpbuf, rev);
8061 sv_catpvn(sv, (const char*)tmpbuf, tmpend - tmpbuf);