Lines Matching refs:p2
297 char *p2; in help_compare() local
301 p2 = *(char **)s2 + strlen(*(char **)s2) + 1; in help_compare()
304 cmp = strcmp(p1, p2); in help_compare()
965 char_u *p1, *p2; in helptags_one() local
1077 p2 = vim_strbyte(p1 + 1, '*'); // find second '*' in helptags_one()
1078 if (p2 != NULL && p2 > p1 + 1) // skip "*" and "**" in helptags_one()
1080 for (s = p1 + 1; s < p2; ++s) in helptags_one()
1087 if (s == p2 in helptags_one()
1092 *p2 = '\0'; in helptags_one()
1099 s = alloc(p2 - p1 + STRLEN(fname) + 2); in helptags_one()
1110 p2 = vim_strchr(p2 + 1, '*'); in helptags_one()
1113 p1 = p2; in helptags_one()
1133 p2 = ((char_u **)ga.ga_data)[i]; in helptags_one()
1134 while (*p1 == *p2) in helptags_one()
1136 if (*p2 == '\t') in helptags_one()
1138 *p2 = NUL; in helptags_one()
1141 ((char_u **)ga.ga_data)[i], dir, p2 + 1); in helptags_one()
1143 *p2 = '\t'; in helptags_one()
1147 ++p2; in helptags_one()