Home | History | Annotate | Download | only in Support

Lines Matching defs:ID

139 // AddNodeID - Adds the Bit data of another ID to *this.
140 void FoldingSetNodeID::AddNodeID(const FoldingSetNodeID &ID) {
141 Bits.append(ID.Bits.begin(), ID.Bits.end());
207 /// GetBucketFor - Hash the specified node ID and return the hash bucket for
208 /// the specified ID.
281 /// FindNodeOrInsertPos - Look up the node specified by ID. If it exists,
285 *FoldingSetImpl::FindNodeOrInsertPos(const FoldingSetNodeID &ID,
287 unsigned IDHash = ID.ComputeHash();
295 if (NodeEquals(NodeInBucket, ID, IDHash, TempID))
381 FoldingSetNodeID ID;
382 GetNodeProfile(N, ID);
384 if (Node *E = FindNodeOrInsertPos(ID, IP))