Lines Matching refs:p2
4822 wordnode_T *p2; in node_equal() local
4824 for (p1 = n1, p2 = n2; p1 != NULL && p2 != NULL; in node_equal()
4825 p1 = p1->wn_sibling, p2 = p2->wn_sibling) in node_equal()
4826 if (p1->wn_byte != p2->wn_byte in node_equal()
4828 ? (p1->wn_flags != p2->wn_flags in node_equal()
4829 || p1->wn_region != p2->wn_region in node_equal()
4830 || p1->wn_affixID != p2->wn_affixID) in node_equal()
4831 : (p1->wn_child != p2->wn_child))) in node_equal()
4834 return p1 == NULL && p2 == NULL; in node_equal()
4846 fromto_T *p2 = (fromto_T *)s2; in rep_compare() local
4848 return STRCMP(p1->ft_from, p2->ft_from); in rep_compare()