Home
last modified time | relevance | path

Searched refs:LastWord (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DBitVector.h201 unsigned LastWord = (End - 1) / BITWORD_SIZE; variable
208 for (unsigned i = FirstWord; i <= LastWord; ++i) {
218 if (i == LastWord) {
235 unsigned LastWord = (End - 1) / BITWORD_SIZE; in find_last_in() local
238 for (unsigned i = LastWord + 1; i >= FirstWord + 1; --i) { in find_last_in()
242 if (CurrentWord == LastWord) { in find_last_in()
272 unsigned LastWord = (End - 1) / BITWORD_SIZE; in find_last_unset_in() local
275 for (unsigned i = LastWord + 1; i >= FirstWord + 1; --i) { in find_last_unset_in()
279 if (CurrentWord == LastWord) { in find_last_unset_in()
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DXCOFFObjectWriter.cpp1714 std::array<uint8_t, WordSize> LastWord = {0}; in writeSectionForCInfoSymSectionEntry() local
1715 ::memcpy(LastWord.data(), Metadata.data() + Index, Metadata.size() - Index); in writeSectionForCInfoSymSectionEntry()
1716 W.write<uint32_t>(llvm::support::endian::read32be(LastWord.data())); in writeSectionForCInfoSymSectionEntry()
H A DMCAsmStreamer.cpp1040 std::array<uint8_t, WordSize> LastWord = {0}; in emitXCOFFCInfoSym() local
1041 ::memcpy(LastWord.data(), Metadata.data() + Index, MetadataSize - Index); in emitXCOFFCInfoSym()
1042 PrintWord(LastWord.data()); in emitXCOFFCInfoSym()