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 | 142 static unsigned makeAllBits(unsigned startBit, unsigned Lanes) 145 startBit = (startBit << 1) | startBit; in makeAllBits() 146 return startBit; in makeAllBits() 143 makeAllBits(unsigned startBit,unsigned Lanes) makeAllBits() argument
|
/freebsd/contrib/llvm-project/llvm/utils/TableGen/ |
H A D | DecoderEmitter.cpp | 333 Filter(FilterChooser &owner, unsigned startBit, unsigned numBits, bool mixed); 556 void runSingleFilter(unsigned startBit, unsigned numBit, bool mixed); 594 Filter::Filter(FilterChooser &owner, unsigned startBit, unsigned numBits, in Filter() argument 596 : Owner(&owner), StartBit(startBit), NumBits(numBits), Mixed(mixed) { in Filter() 1551 void FilterChooser::runSingleFilter(unsigned startBit, unsigned numBit, in runSingleFilter() argument 1554 Filters.emplace_back(*this, startBit, numBit, true); in runSingleFilter()
|