Lines Matching refs:p1
4821 wordnode_T *p1; 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()
4827 || (p1->wn_byte == NUL 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()
4845 fromto_T *p1 = (fromto_T *)s1; in rep_compare() local
4848 return STRCMP(p1->ft_from, p2->ft_from); in rep_compare()