Searched refs:startBit (Results 1 - 4 of 4) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DEndian.h117 inline value_type readAtBitAlignment(const void *memory, uint64_t startBit) { argument
118 assert(startBit < 8);
119 if (startBit == 0)
132 make_unsigned_t<value_type> lowerVal = val[0] >> startBit;
135 (sizeof(value_type) * 8) - startBit;
140 val[1] & (((make_unsigned_t<value_type>)1 << startBit) - 1);
152 uint64_t startBit) {
153 assert(startBit < 8);
154 if (startBit == 0)
168 val[0] &= ((make_unsigned_t<value_type>)1 << startBit)
[all...]
/freebsd-13-stable/usr.sbin/ppp/
H A Dchap_ms.c82 Get7Bits(u_char *input, int startBit) argument
86 word = (unsigned)input[startBit / 8] << 8;
87 word |= (unsigned)input[startBit / 8 + 1];
89 word >>= 15 - (startBit % 8 + 7);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonShuffler.cpp141 static unsigned makeAllBits(unsigned startBit, unsigned Lanes) argument
144 startBit = (startBit << 1) | startBit;
145 return startBit;
/freebsd-13-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DFixedLenDecoderEmitter.cpp292 Filter(FilterChooser &owner, unsigned startBit, unsigned numBits, bool mixed);
514 void runSingleFilter(unsigned startBit, unsigned numBit, bool mixed);
553 Filter::Filter(FilterChooser &owner, unsigned startBit, unsigned numBits, argument
555 : Owner(&owner), StartBit(startBit), NumBits(numBits), Mixed(mixed) {
1466 void FilterChooser::runSingleFilter(unsigned startBit, unsigned numBit,
1469 Filters.emplace_back(*this, startBit, numBit, true);
2170 "startBit,\n"
2173 << " assert(startBit + numBits <= 64 && \"Cannot support >64-bit "
2175 << " assert(startBit + numBits <= (sizeof(InsnType) * 8) &&\n"
2181 << " fieldMask = (((InsnType)1 << numBits) - 1) << startBit;\
[all...]

Completed in 53 milliseconds