Lines Matching defs:N1
86 bool operator()(const GepNode *N1, const GepNode *N2) const {
87 auto F1 = Map.find(N1), F2 = Map.find(N2);
479 static NodePair node_pair(GepNode *N1, GepNode *N2) {
480 uintptr_t P1 = reinterpret_cast<uintptr_t>(N1);
483 return std::make_pair(N1, N2);
484 return std::make_pair(N2, N1);
495 static bool node_eq(GepNode *N1, GepNode *N2, NodePairSet &Eq,
499 if (node_hash(N1) != node_hash(N2))
502 NodePair NP = node_pair(N1, N2);
510 bool Root1 = N1->Flags & GepNode::Root;
512 bool Different = (N1->Flags & CmpFlags) != (N2->Flags & CmpFlags);
513 NodePair P = node_pair(N1, N2);
518 if (Different || (Root1 && N1->BaseVal != N2->BaseVal)) {
525 if (Root1 || node_eq(N1->Parent, N2->Parent, Eq, Ne)) {