Lines Matching refs:Entry
26 auto &Entry = I.first->second; in getEntry() local
27 Entry.Index = Pool.size() - 1; in getEntry()
28 Entry.Offset = NumBytes; in getEntry()
29 Entry.Symbol = ShouldCreateSymbols ? Asm.createTempSymbol(Prefix) : nullptr; in getEntry()
32 assert(NumBytes > Entry.Offset && "Unexpected overflow"); in getEntry()
52 for (const auto &Entry : Entries) { in emit() local
53 assert(ShouldCreateSymbols == static_cast<bool>(Entry->getValue().Symbol) && in emit()
58 Asm.OutStreamer->EmitLabel(Entry->getValue().Symbol); in emit()
62 Twine(Entry->getValue().Offset)); in emit()
64 StringRef(Entry->getKeyData(), Entry->getKeyLength() + 1)); in emit()
71 for (const auto &Entry : Entries) in emit() local
72 Asm.OutStreamer->EmitIntValue(Entry->getValue().Offset, size); in emit()