Searched refs:numStabs (Results 1 – 1 of 1) sorted by relevance
556 uint32_t numStabs = normalizedFile.stabsSymbols.size(); in convertRelocs() local560 assert(symbolIndex >= numStabs && "Searched for stab via atomBySymbol?"); in convertRelocs()561 if (symbolIndex < numStabs+numLocal) { in convertRelocs()562 sym = &normalizedFile.localSymbols[symbolIndex-numStabs]; in convertRelocs()563 } else if (symbolIndex < numStabs+numLocal+numGlobal) { in convertRelocs()564 sym = &normalizedFile.globalSymbols[symbolIndex-numStabs-numLocal]; in convertRelocs()565 } else if (symbolIndex < numStabs+numLocal+numGlobal+numUndef) { in convertRelocs()566 sym = &normalizedFile.undefinedSymbols[symbolIndex-numStabs-numLocal- in convertRelocs()