MCPcopy Create free account
hub / github.com/beefytech/Beef / MoveToNextHashMatch

Method MoveToNextHashMatch

BeefySysLib/util/MultiHashSet.h:141–151  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

139 }
140
141 void MoveToNextHashMatch()
142 {
143 int wantHash = this->mSet->mEntries[this->mCurEntry].mHashCode;
144 do
145 {
146 this->mCurEntry = this->mSet->mEntries[this->mCurEntry].mNext;
147 }
148 while ((this->mCurEntry != -1) && (this->mSet->mEntries[this->mCurEntry].mHashCode != wantHash));
149 if (this->mCurEntry == -1)
150 this->mCurBucket = mSet->mHashSize;
151 }
152 };
153
154protected:

Callers 9

UpdateRevisedTypesMethod · 0.45
UpdateRevisedTypesMethod · 0.45
GetTypeDefsMethod · 0.45
VisitMethod · 0.45
FindTypeDefMethod · 0.45
FindTypeDefExMethod · 0.45
GetCombinedPartialMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected