Searched refs:startBit (Results 1 – 4 of 4) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | Endian.h | 128 uint64_t startBit) { in readAtBitAlignment() argument 129 assert(startBit < 8); in readAtBitAlignment() 130 if (startBit == 0) in readAtBitAlignment() 143 make_unsigned_t<value_type> lowerVal = val[0] >> startBit; in readAtBitAlignment() 146 (sizeof(value_type) * 8) - startBit; in readAtBitAlignment() 151 val[1] & (((make_unsigned_t<value_type>)1 << startBit) - 1); in readAtBitAlignment() 163 uint64_t startBit) { in writeAtBitAlignment() argument 164 assert(startBit < 8); in writeAtBitAlignment() 165 if (startBit == 0) in writeAtBitAlignment() 179 val[0] &= ((make_unsigned_t<value_type>)1 << startBit) - 1; in writeAtBitAlignment() [all …]
|
| /freebsd/usr.sbin/ppp/ |
| H A D | chap_ms.c | 80 Get7Bits(u_char *input, int startBit) in Get7Bits() argument 84 word = (unsigned)input[startBit / 8] << 8; in Get7Bits() 85 word |= (unsigned)input[startBit / 8 + 1]; in Get7Bits() 87 word >>= 15 - (startBit % 8 + 7); in Get7Bits()
|
| /freebsd/contrib/llvm-project/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()
|
| /freebsd/contrib/llvm-project/llvm/utils/TableGen/ |
| H A D | DecoderEmitter.cpp | 407 Filter(const FilterChooser &owner, unsigned startBit, unsigned numBits, 617 void runSingleFilter(unsigned startBit, unsigned numBit, bool mixed); 655 Filter::Filter(const FilterChooser &owner, unsigned startBit, unsigned numBits, in Filter() argument 657 : Owner(owner), StartBit(startBit), NumBits(numBits), Mixed(mixed) { in Filter() 1540 void FilterChooser::runSingleFilter(unsigned startBit, unsigned numBit, in runSingleFilter() argument 1543 Filters.emplace_back(*this, startBit, numBit, true); in runSingleFilter()
|