Home
last modified time | relevance | path

Searched refs:pp (Results 1 – 25 of 80) sorted by relevance

1234

/vim-8.2.3635/src/xxd/
H A Dxxd.c469 char *pp; in main() local
479 for (pp = pname; *pp; ) in main()
483 for (pp = pname; *pp; pp++) in main()
486 *pp = '\0'; in main()
511 if (pp[2] && !STRNCMP("apitalize", pp + 2, 9)) in main()
513 else if (pp[2] && STRNCMP("ols", pp + 2, 3)) in main()
526 if (pp[2] && STRNCMP("roup", pp + 2, 4)) in main()
541 if (pp[2] && STRNCMP("ffset", pp + 2, 5)) in main()
566 if (pp[2] && STRNCMP("kip", pp+2, 3) && STRNCMP("eek", pp+2, 3)) in main()
593 if (pp[2] && STRNCMP("en", pp + 2, 2)) in main()
[all …]
/vim-8.2.3635/src/
H A Dmemline.c279 PTR_BL *pp; in ml_open() local
486 PTR_BL *pp; in ml_set_crypt_key() local
1153 PTR_BL *pp; in ml_recover() local
2788 PTR_BL *pp; in ml_append_int() local
3125 if (pp->pb_count < pp->pb_count_max) in ml_append_int()
3131 ++pp->pb_count; in ml_append_int()
3608 PTR_BL *pp; in ml_delete_int() local
3725 mch_memmove(&pp->pb_pointer[idx], &pp->pb_pointer[idx + 1], in ml_delete_int()
4095 PTR_BL *pp; in ml_new_ptr() local
4128 PTR_BL *pp; in ml_find_line() local
[all …]
H A Dalloc.c45 void **pp, in mem_post_alloc() argument
48 if (*pp == NULL) in mem_post_alloc()
51 *(long_u *)*pp = size; in mem_post_alloc()
60 *pp = (void *)((char *)*pp + sizeof(size_t)); in mem_post_alloc()
64 mem_pre_free(void **pp) in mem_pre_free() argument
68 *pp = (void *)((char *)*pp - sizeof(size_t)); in mem_pre_free()
69 size = *(size_t *)*pp; in mem_pre_free()
721 char_u *pp; in ga_grow_inner() local
733 pp = vim_realloc(gap->ga_data, new_len); in ga_grow_inner()
734 if (pp == NULL) in ga_grow_inner()
[all …]
H A Dprofiler.c844 sn_prl_T *pp; in script_dump_profile() local
894 fprintf(fd, "%5d ", pp->snp_count); in script_dump_profile()
895 if (profile_equal(&pp->sn_prl_total, &pp->sn_prl_self)) in script_dump_profile()
944 sn_prl_T *pp; in script_line_start() local
960 pp = &PRL_ITEM(si, si->sn_prl_ga.ga_len); in script_line_start()
961 pp->snp_count = 0; in script_line_start()
962 profile_zero(&pp->sn_prl_total); in script_line_start()
963 profile_zero(&pp->sn_prl_self); in script_line_start()
995 sn_prl_T *pp; in script_line_end() local
1005 pp = &PRL_ITEM(si, si->sn_prl_idx); in script_line_end()
[all …]
H A Doption.c3336 *pp = value; in set_num_option()
3361 if (pp == &p_wh || pp == &p_hh) in set_num_option()
3389 else if (pp == &p_wmh) in set_num_option()
3404 else if (pp == &p_wiw) in set_num_option()
3422 else if (pp == &p_wmw) in set_num_option()
3439 else if (pp == &p_ls) in set_num_option()
3500 else if (pp == &curbuf->b_p_sw || pp == &curbuf->b_p_ts) in set_num_option()
3583 else if (pp == &p_ch) in set_num_option()
3604 else if (pp == &p_uc) in set_num_option()
3644 else if (pp == &p_ul) in set_num_option()
[all …]
H A Dspellfile.c1221 char_u *pp; in read_compound() local
1316 pp = pat; in read_compound()
1317 *pp++ = '^'; in read_compound()
1318 *pp++ = '\\'; in read_compound()
1319 *pp++ = '('; in read_compound()
1374 *pp++ = '|'; in read_compound()
1382 pp += mb_char2bytes(c, pp); in read_compound()
1384 *pp++ = c; in read_compound()
1389 *pp++ = ')'; in read_compound()
1390 *pp++ = '$'; in read_compound()
[all …]
H A Dmbyte.c1887 mb_ptr2char_adv(char_u **pp) in mb_ptr2char_adv() argument
1891 c = (*mb_ptr2char)(*pp); in mb_ptr2char_adv()
1892 *pp += (*mb_ptr2len)(*pp); in mb_ptr2char_adv()
1901 mb_cptr2char_adv(char_u **pp) in mb_cptr2char_adv() argument
1905 c = (*mb_ptr2char)(*pp); in mb_cptr2char_adv()
1907 *pp += utf_ptr2len(*pp); in mb_cptr2char_adv()
1909 *pp += (*mb_ptr2len)(*pp); in mb_cptr2char_adv()
4358 mb_unescape(char_u **pp) in mb_unescape() argument
4363 char_u *str = *pp; in mb_unescape()
4402 *pp = str + n + 1; in mb_unescape()
H A Dregister.c425 char_u **pp; in stuff_yank() local
441 pp = &(y_current->y_array[y_current->y_size - 1]); in stuff_yank()
442 lp = alloc(STRLEN(*pp) + STRLEN(p) + 1); in stuff_yank()
448 STRCPY(lp, *pp); in stuff_yank()
451 vim_free(*pp); in stuff_yank()
452 *pp = lp; in stuff_yank()
2898 char_u **pp; in str_to_reg() local
2945 if (pp == NULL) // out of memory in str_to_reg()
2948 pp[lnum] = y_ptr->y_array[lnum]; in str_to_reg()
2950 y_ptr->y_array = pp; in str_to_reg()
[all …]
H A Dregexp.c154 get_char_class(char_u **pp) in get_char_class() argument
200 if ((*pp)[1] == ':') in get_char_class()
203 if (STRNCMP(*pp + 2, class_names[i], STRLEN(class_names[i])) == 0) in get_char_class()
205 *pp += STRLEN(class_names[i]) + 2; in get_char_class()
400 get_equi_class(char_u **pp) in get_equi_class() argument
404 char_u *p = *pp; in get_equi_class()
416 *pp += l + 4; in get_equi_class()
454 get_coll_element(char_u **pp) in get_coll_element() argument
458 char_u *p = *pp; in get_coll_element()
470 *pp += l + 4; in get_coll_element()
H A Doptionstr.c319 clear_string_option(char_u **pp) in clear_string_option() argument
321 if (*pp != empty_option) in clear_string_option()
322 vim_free(*pp); in clear_string_option()
323 *pp = empty_option; in clear_string_option()
327 check_string_option(char_u **pp) in check_string_option() argument
329 if (*pp == NULL) in check_string_option()
330 *pp = empty_option; in check_string_option()
H A Duserfunc.c3543 char_u **pp, in trans_function_name() argument
3564 start = *pp; in trans_function_name()
3568 if ((*pp)[0] == K_SPECIAL && (*pp)[1] == KS_EXTRA in trans_function_name()
3571 *pp += 3; in trans_function_name()
3620 *pp = end; in trans_function_name()
3626 *pp = end; in trans_function_name()
3636 *pp = end; in trans_function_name()
3645 *pp = end; in trans_function_name()
3663 if (name == *pp) in trans_function_name()
3669 *pp = end; in trans_function_name()
[all …]
H A Dnormal.c3869 *pp = ml_get_curline(); in get_visual_text()
3884 if (**pp == NUL) in get_visual_text()
6863 pos_T *pp; in unadjust_for_sel() local
6870 pp = &VIsual; in unadjust_for_sel()
6871 if (pp->coladd > 0) in unadjust_for_sel()
6872 --pp->coladd; in unadjust_for_sel()
6874 if (pp->col > 0) in unadjust_for_sel()
6876 --pp->col; in unadjust_for_sel()
6879 else if (pp->lnum > 1) in unadjust_for_sel()
6881 --pp->lnum; in unadjust_for_sel()
[all …]
H A Deval.c368 skip_expr(char_u **pp, evalarg_T *evalarg) in skip_expr() argument
372 *pp = skipwhite(*pp); in skip_expr()
373 return eval1(pp, &rettv, evalarg); in skip_expr()
4430 char_u *pp; in garbage_collect() local
4442 pp = vim_realloc(exestack.ga_data, new_len); in garbage_collect()
4443 if (pp == NULL) in garbage_collect()
4446 exestack.ga_data = pp; in garbage_collect()
5236 pos_T *pp; in var2fpos() local
5314 if (pp == NULL || pp == (pos_T *)-1 || pp->lnum <= 0) in var2fpos()
5317 pp->col = buf_byteidx_to_charidx(curbuf, pp->lnum, pp->col); in var2fpos()
[all …]
H A Dfileio.c35 static char_u *next_fenc(char_u **pp, int *alloced);
2774 next_fenc(char_u **pp, int *alloced) in next_fenc() argument
2780 if (**pp == NUL) in next_fenc()
2782 *pp = NULL; in next_fenc()
2785 p = vim_strchr(*pp, ','); in next_fenc()
2788 r = enc_canonize(*pp); in next_fenc()
2789 *pp += STRLEN(*pp); in next_fenc()
2793 r = vim_strnsave(*pp, p - *pp); in next_fenc()
2794 *pp = p + 1; in next_fenc()
2808 *pp = NULL; in next_fenc()
H A Dex_docmd.c2728 && (*pp)[i] != '_' && (!noparen || (*pp)[i] != '(')) in checkforcmd_opt()
2730 *pp = skipwhite(*pp + i); in checkforcmd_opt()
5168 int *pp = NULL; in getargopt() local
5199 pp = &eap->force_ff; in getargopt()
5204 pp = &eap->force_ff; in getargopt()
5212 pp = &eap->force_enc; in getargopt()
5217 pp = &bad_char_idx; in getargopt()
5220 if (pp == NULL || *arg != '=') in getargopt()
5224 *pp = (int)(arg - eap->cmd); in getargopt()
5229 if (pp == &eap->force_ff) in getargopt()
[all …]
H A Dhighlight.c375 char **pp; in init_highlight() local
405 pp = highlight_init_both; in init_highlight()
406 for (i = 0; pp[i] != NULL; ++i) in init_highlight()
407 do_highlight((char_u *)pp[i], reset, TRUE); in init_highlight()
416 pp = highlight_init_light; in init_highlight()
418 pp = highlight_init_dark; in init_highlight()
419 for (i = 0; pp[i] != NULL; ++i) in init_highlight()
420 do_highlight((char_u *)pp[i], reset, TRUE); in init_highlight()
3407 syn_check_group(char_u *pp, int len) in syn_check_group() argument
3412 name = vim_strnsave(pp, len); in syn_check_group()
/vim-8.2.3635/src/proto/
H A Doptionstr.pro6 void clear_string_option(char_u **pp);
7 void check_string_option(char_u **pp);
H A Dmbyte.pro26 int mb_ptr2char_adv(char_u **pp);
27 int mb_cptr2char_adv(char_u **pp);
69 char_u *mb_unescape(char_u **pp);
H A Dex_docmd.pro10 int checkforcmd(char_u **pp, char *cmd, int len);
11 int checkforcmd_noparen(char_u **pp, char *cmd, int len);
/vim-8.2.3635/runtime/ftplugin/
H A Dpascal.vim40 let b:browsefilter = "Pascal Source Files (*.pas *.pp *.inc)\t*.pas;*.pp;*.inc\n" .
/vim-8.2.3635/runtime/spell/fr/
H A Dfr_FR.diff67 - REP pp p
68 - REP p pp
/vim-8.2.3635/runtime/indent/
H A Dzimbu.vim72 let pp = searchpair('(\|{\|\[', '', ')\|}\|\]', 'bW',
76 if pp > 0
H A Dmeson.vim93 let pp = searchpair('(\|{\|\[', '', ')\|}\|\]', 'bW',
97 if pp > 0
/vim-8.2.3635/runtime/syntax/
H A Dmplayerconf.vim52 \ sub-no-text-pp subalign subcc subcp subdelay
67 \ noslices novideo oldpp pp pphelp ssf stereo
/vim-8.2.3635/src/testdir/
H A Dtest_filetype.vim403 \ 'puppet': ['file.pp'],
781 call writefile(['looks like puppet'], 'Xfile.pp')
782 split Xfile.pp
787 split Xfile.pp
793 call writefile(['{ pascal comment'], 'Xfile.pp')
794 split Xfile.pp
798 call writefile(['procedure pascal'], 'Xfile.pp')
799 split Xfile.pp
803 call delete('Xfile.pp')

1234