Set Node and UnsetMatched
| 656 | ALWAYS_INLINE void SetNode(DuplicateNode* node) { SetPtr(node); } |
| 657 | // Set Node and UnsetMatched |
| 658 | ALWAYS_INLINE void SetNodeUnMatched(DuplicateNode* node) { |
| 659 | SetData(reinterpret_cast<uintptr_t>(node)); |
| 660 | DCHECK(!IsMatched()); |
| 661 | } |
| 662 | }; |
| 663 | /// struct DuplicateNode is referenced by SIZE_OF_DUPLICATENODE of |
| 664 | /// planner/PlannerContext.java. If struct DuplicateNode is modified, please modify |