Lines Matching refs:Trie

2923                          ArrayRef<uint8_t> T) : E(E), O(O), Trie(T) {}  in ExportEntry()
2958 uint64_t Result = decodeULEB128(Ptr, &Count, Trie.end(), error); in readULEB128()
2960 if (Ptr > Trie.end()) in readULEB128()
2961 Ptr = Trie.end(); in readULEB128()
2989 return Stack.back().Start - Trie.begin(); in nodeOffset()
2997 const uint8_t *Ptr = Trie.begin() + offset; in pushNode()
3010 if (Children > Trie.end()) { in pushNode()
3067 if (End >= Trie.end()) { in pushNode()
3075 while(*End != '\0' && End < Trie.end()) in pushNode()
3118 if (State.ChildCount != 0 && Children + 1 >= Trie.end()) { in pushNode()
3138 for (;*Top.Current != 0 && Top.Current < Trie.end(); Top.Current++) { in pushDownUntilBottom()
3142 if (Top.Current >= Trie.end()) { in pushDownUntilBottom()
3144 Twine::utohexstr(Top.Start - Trie.begin()) + in pushDownUntilBottom()
3155 Twine::utohexstr(Top.Start - Trie.begin())); in pushDownUntilBottom()
3160 if (node.Start == Trie.begin() + childNodeIndex){ in pushDownUntilBottom()
3162 Twine::utohexstr(Top.Start - Trie.begin()) + in pushDownUntilBottom()
3177 Twine::utohexstr(Stack.back().Start - Trie.begin())); in pushDownUntilBottom()
3203 Twine::utohexstr(Stack.back().Start - Trie.begin())); in moveNext()
3228 MachOObjectFile::exports(Error &E, ArrayRef<uint8_t> Trie, in exports() argument
3230 ExportEntry Start(&E, O, Trie); in exports()
3231 if (Trie.empty()) in exports()
3236 ExportEntry Finish(&E, O, Trie); in exports()
3243 ArrayRef<uint8_t> Trie; in exports() local
3245 Trie = getDyldInfoExportsTrie(); in exports()
3247 Trie = getDyldExportsTrie(); in exports()
3249 return exports(Err, Trie, this); in exports()