Lines Matching refs:varlen
3413 size_t varlen, in compile_call() argument
3432 if ((varlen == 3 && STRNCMP(*arg, "has", 3) == 0) in compile_call()
3433 || (varlen == 15 && STRNCMP(*arg, "exists_compiled", 6) == 0)) in compile_call()
3435 char_u *s = skipwhite(*arg + varlen + 1); in compile_call()
3474 if (varlen >= sizeof(namebuf)) in compile_call()
3479 vim_strncpy(namebuf, *arg, varlen); in compile_call()
3484 is_searchpair = (varlen == 6 && STRNCMP(*arg, "search", 6) == 0) in compile_call()
3485 || (varlen == 9 && STRNCMP(*arg, "searchpos", 9) == 0) in compile_call()
3486 || (varlen == 10 && STRNCMP(*arg, "searchpair", 10) == 0) in compile_call()
3487 || (varlen == 13 && STRNCMP(*arg, "searchpairpos", 13) == 0); in compile_call()
3489 *arg = skipwhite(*arg + varlen + 1); in compile_call()
3539 if (lookup_local(namebuf, varlen, NULL, cctx) == FAIL in compile_call()
3540 && arg_exists(namebuf, varlen, NULL, NULL, NULL, cctx) != OK) in compile_call()
3557 && compile_load(&p, namebuf + varlen, cctx, FALSE, FALSE) == OK) in compile_call()
6616 size_t varlen = lhs->lhs_varlen; in compile_assign_index() local
6622 p = var_start + varlen; in compile_assign_index()
6686 size_t varlen = lhs->lhs_varlen; in compile_load_lhs() local
6687 int c = var_start[varlen]; in compile_load_lhs()
6695 var_start[varlen] = NUL; in compile_load_lhs()
6698 var_start[varlen] = c; in compile_load_lhs()
6700 if (res == FAIL || p != var_start + varlen) in compile_load_lhs()
8092 size_t varlen; in compile_for() local
8230 varlen = p - arg; in compile_for()
8231 name = vim_strnsave(arg, varlen); in compile_for()
8250 else if (varlen == 1 && *arg == '_') in compile_for()
8258 if (lookup_local(arg, varlen, NULL, cctx) == OK) in compile_for()
8282 var_lvar = reserve_local(cctx, arg, varlen, TRUE, lhs_type); in compile_for()