Lines Matching refs:pbuf
3320 char_u *pbuf; // search pattern buffer in jumpto_tag() local
3348 pbuf = alloc(LSIZE); in jumpto_tag()
3351 if (pbuf == NULL || lbuf == NULL || parse_match(lbuf, &tagp) == FAIL) in jumpto_tag()
3363 for (pbuf_end = pbuf; *str && *str != '\n' && *str != '\r'; ) in jumpto_tag()
3370 if (pbuf_end - pbuf + 1 >= LSIZE) in jumpto_tag()
3382 str = pbuf; in jumpto_tag()
3533 str = pbuf; in jumpto_tag()
3534 if (pbuf[0] == '/' || pbuf[0] == '?') in jumpto_tag()
3535 str = skip_regexp(pbuf + 1, pbuf[0], FALSE) + 1; in jumpto_tag()
3551 if (do_search(NULL, pbuf[0], pbuf[0], pbuf + 1, (long)1, in jumpto_tag()
3563 if (!do_search(NULL, pbuf[0], pbuf[0], pbuf + 1, (long)1, in jumpto_tag()
3573 sprintf((char *)pbuf, "^%s\\s\\*(", tagp.tagname); in jumpto_tag()
3574 if (!do_search(NULL, '/', '/', pbuf, (long)1, in jumpto_tag()
3578 sprintf((char *)pbuf, "^\\[#a-zA-Z_]\\.\\*\\<%s\\s\\*(", in jumpto_tag()
3580 if (!do_search(NULL, '/', '/', pbuf, (long)1, in jumpto_tag()
3627 do_cmdline_cmd(pbuf); in jumpto_tag()
3710 vim_free(pbuf); in jumpto_tag()