Searched refs:startBit (Results 1 – 3 of 3) sorted by relevance
| /llvm-project-15.0.7/llvm/include/llvm/Support/ |
| H A D | Endian.h | 118 assert(startBit < 8); in readAtBitAlignment() 119 if (startBit == 0) in readAtBitAlignment() 132 make_unsigned_t<value_type> lowerVal = val[0] >> startBit; in readAtBitAlignment() 135 (sizeof(value_type) * 8) - startBit; in readAtBitAlignment() 152 uint64_t startBit) { in writeAtBitAlignment() argument 153 assert(startBit < 8); in writeAtBitAlignment() 154 if (startBit == 0) in writeAtBitAlignment() 168 val[0] &= ((make_unsigned_t<value_type>)1 << startBit) - 1; in writeAtBitAlignment() 170 (sizeof(value_type) * 8) - startBit; in writeAtBitAlignment() 172 if (startBit > 0) { in writeAtBitAlignment() [all …]
|
| /llvm-project-15.0.7/llvm/lib/Target/Hexagon/MCTargetDesc/ |
| H A D | HexagonShuffler.cpp | 141 static unsigned makeAllBits(unsigned startBit, unsigned Lanes) in makeAllBits() argument 144 startBit = (startBit << 1) | startBit; in makeAllBits() 145 return startBit; in makeAllBits()
|
| /llvm-project-15.0.7/llvm/utils/TableGen/ |
| H A D | DecoderEmitter.cpp | 316 Filter(FilterChooser &owner, unsigned startBit, unsigned numBits, bool mixed); 541 void runSingleFilter(unsigned startBit, unsigned numBit, bool mixed); 580 Filter::Filter(FilterChooser &owner, unsigned startBit, unsigned numBits, in Filter() argument 582 : Owner(&owner), StartBit(startBit), NumBits(numBits), Mixed(mixed) { in Filter() 1511 void FilterChooser::runSingleFilter(unsigned startBit, unsigned numBit, in runSingleFilter() argument 1514 Filters.emplace_back(*this, startBit, numBit, true); in runSingleFilter()
|