Home
last modified time | relevance | path

Searched refs:WordPos (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DXCOFFDump.cpp698 auto IsWordZero = [&](uint64_t WordPos) { in dumpTracebackTable() argument
699 if (WordPos >= Size) in dumpTracebackTable()
701 uint64_t LineLength = std::min(4 - WordPos % 4, Size - WordPos); in dumpTracebackTable()
702 return std::all_of(Bytes.begin() + WordPos, in dumpTracebackTable()
703 Bytes.begin() + WordPos + LineLength, in dumpTracebackTable()
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSparseBitVector.h152 unsigned WordPos = Curr / BITWORD_SIZE; in find_next() local
154 BitWord Copy = Bits[WordPos]; in find_next()
155 assert(WordPos <= BITWORDS_PER_ELEMENT in find_next()
162 return WordPos * BITWORD_SIZE + llvm::countr_zero(Copy); in find_next()
165 for (unsigned i = WordPos+1; i < BITWORDS_PER_ELEMENT; ++i) in find_next()