Searched refs:numBits (Results 1 - 20 of 20) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPInt.h183 void fromString(unsigned numBits, StringRef str, uint8_t radix);
267 /// Create a new APInt of numBits width, initialized as val.
274 /// \param numBits the bit width of the constructed APInt
277 APInt(unsigned numBits, uint64_t val, bool isSigned = false) argument
278 : BitWidth(numBits) {
288 /// Construct an APInt of numBits width, initialized as bigVal[].
293 /// \param numBits the bit width of the constructed APInt
295 APInt(unsigned numBits, ArrayRef<uint64_t> bigVal);
297 /// Equivalent to APInt(numBits, ArrayRef<uint64_t>(bigVal, numWords)), but
304 APInt(unsigned numBits, unsigne
534 getMaxValue(unsigned numBits) argument
539 getSignedMaxValue(unsigned numBits) argument
546 getMinValue(unsigned numBits) argument
549 getSignedMinValue(unsigned numBits) argument
566 getAllOnesValue(unsigned numBits) argument
573 getNullValue(unsigned numBits) argument
592 getOneBitSet(unsigned numBits, unsigned BitNo) argument
611 getBitsSet(unsigned numBits, unsigned loBit, unsigned hiBit) argument
622 getBitsSetWithWrap(unsigned numBits, unsigned loBit, unsigned hiBit) argument
640 getBitsSetFrom(unsigned numBits, unsigned loBit) argument
652 getHighBitsSet(unsigned numBits, unsigned hiBitsSet) argument
664 getLowBitsSet(unsigned numBits, unsigned loBitsSet) argument
[all...]
H A DAPSInt.h287 static APSInt getMaxValue(uint32_t numBits, bool Unsigned) { argument
288 return APSInt(Unsigned ? APInt::getMaxValue(numBits)
289 : APInt::getSignedMaxValue(numBits), Unsigned);
294 static APSInt getMinValue(uint32_t numBits, bool Unsigned) { argument
295 return APSInt(Unsigned ? APInt::getMinValue(numBits)
296 : APInt::getSignedMinValue(numBits), Unsigned);
/freebsd-11-stable/tools/tools/net80211/wlantxtime/
H A Dwlantxtime.c333 uint32_t bitsPerSymbol, numBits, numSymbols, phyTime, txTime; local
346 numBits = frameLen << 3;
348 + ((numBits * 1000)/kbps);
354 numBits = OFDM_PLCP_BITS + (frameLen << 3);
355 numSymbols = howmany(numBits, bitsPerSymbol);
364 numBits = OFDM_PLCP_BITS + (frameLen << 3);
365 numSymbols = howmany(numBits, bitsPerSymbol);
374 numBits = OFDM_PLCP_BITS + (frameLen << 3);
375 numSymbols = howmany(numBits, bitsPerSymbol);
385 numBits
411 uint32_t bitsPerSymbol, numBits, numSymbols, txTime; local
[all...]
/freebsd-11-stable/sys/net80211/
H A Dieee80211_phy.c506 uint32_t bitsPerSymbol, numBits, numSymbols, phyTime, txTime; local
519 numBits = frameLen << 3;
521 + ((numBits * 1000)/kbps);
527 numBits = OFDM_PLCP_BITS + (frameLen << 3);
528 numSymbols = howmany(numBits, bitsPerSymbol);
537 numBits = OFDM_PLCP_BITS + (frameLen << 3);
538 numSymbols = howmany(numBits, bitsPerSymbol);
547 numBits = OFDM_PLCP_BITS + (frameLen << 3);
548 numSymbols = howmany(numBits, bitsPerSymbol);
558 numBits
599 uint32_t bitsPerSymbol, numBits, numSymbols, txTime; local
[all...]
/freebsd-11-stable/sys/dev/ath/ath_hal/ar5212/
H A Dar5212_rfgain.c92 ar5212GetRfField(uint32_t *rfBuf, uint32_t numBits, uint32_t firstBit, uint32_t column) argument
99 HALASSERT(numBits <= 32);
100 HALASSERT(firstBit + numBits <= MAX_ANALOG_START);
104 bitsLeft = numBits;
118 reg32 = ath_hal_reverseBits(reg32, numBits);
H A Dar5212_reset.c69 uint32_t numBits, uint32_t firstBit, uint32_t column);
2674 ar5212ModifyRfBuffer(uint32_t *rfBuf, uint32_t reg32, uint32_t numBits, argument
2682 HALASSERT(numBits <= 32);
2683 HALASSERT(firstBit + numBits <= MAX_ANALOG_START);
2685 tmp32 = ath_hal_reverseBits(reg32, numBits);
2688 bitsLeft = numBits;
H A Dar5111.c60 uint32_t numBits, uint32_t firstBit, uint32_t column);
H A Dar2316.c65 uint32_t numBits, uint32_t firstBit, uint32_t column);
H A Dar2317.c65 uint32_t numBits, uint32_t firstBit, uint32_t column);
H A Dar2413.c61 uint32_t numBits, uint32_t firstBit, uint32_t column);
H A Dar2425.c49 uint32_t numBits, uint32_t firstBit, uint32_t column);
H A Dar5112.c61 uint32_t numBits, uint32_t firstBit, uint32_t column);
H A Dar5413.c61 uint32_t numBits, uint32_t firstBit, uint32_t column);
/freebsd-11-stable/sys/dev/ath/ath_hal/
H A Dah.c327 uint32_t bitsPerSymbol, numBits, numSymbols, txTime; local
336 numBits = OFDM_PLCP_BITS + (frameLen << 3);
337 numSymbols = howmany(numBits, bitsPerSymbol);
355 uint32_t bitsPerSymbol, numBits, numSymbols, phyTime, txTime; local
375 numBits = frameLen << 3;
377 + ((numBits * 1000)/kbps);
383 numBits = OFDM_PLCP_BITS + (frameLen << 3);
384 numSymbols = howmany(numBits, bitsPerSymbol);
393 numBits = OFDM_HALF_PLCP_BITS + (frameLen << 3);
394 numSymbols = howmany(numBits, bitsPerSymbo
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DAPInt.cpp108 APInt::APInt(unsigned numBits, ArrayRef<uint64_t> bigVal) argument
109 : BitWidth(numBits) {
113 APInt::APInt(unsigned numBits, unsigned numWords, const uint64_t bigVal[]) argument
114 : BitWidth(numBits) {
404 void APInt::insertBits(uint64_t subBits, unsigned bitPosition, unsigned numBits) {
405 uint64_t maskBits = maskTrailingOnes<uint64_t>(numBits);
415 unsigned hiWord = whichWord(bitPosition + numBits - 1);
431 APInt APInt::extractBits(unsigned numBits, unsigned bitPosition) const {
432 assert(numBits > 0 && "Can't extract zero bits");
433 assert(bitPosition < BitWidth && (numBits
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeGenTarget.cpp490 unsigned numBits = BI->getNumBits(); local
492 SmallVector<Init *, 16> NewBits(numBits);
494 for (unsigned bit = 0, end = numBits / 2; bit != end; ++bit) {
495 unsigned bitSwapIdx = numBits - bit - 1;
501 if (numBits % 2) {
502 unsigned middle = (numBits + 1) / 2;
H A DFixedLenDecoderEmitter.cpp292 Filter(FilterChooser &owner, unsigned startBit, unsigned numBits, bool mixed);
553 Filter::Filter(FilterChooser &owner, unsigned startBit, unsigned numBits, argument
555 : Owner(&owner), StartBit(startBit), NumBits(numBits), Mixed(mixed) {
2150 << " unsigned numBits, "
2152 << " assert(startBit + numBits <= 64 && \"Cannot support >64-bit "
2154 << " assert(startBit + numBits <= (sizeof(InsnType) * 8) &&\n"
2157 << " if (numBits == sizeof(InsnType) * 8)\n"
2160 << " fieldMask = (((InsnType)1 << numBits) - 1) << startBit;\n"
2167 << " unsigned numBits, "
2169 << " assert(startBit + numBits <
[all...]
/freebsd-11-stable/contrib/wpa/src/utils/
H A Dhttp_curl.c306 ASN1_INTEGER *numBits; member in union:__anon3767::__anon3768
380 ASN1_IMP(LogotypeImageResolution, d.numBits, ASN1_INTEGER, 1),
674 val = ASN1_INTEGER_get(info->resolution->d.numBits);
/freebsd-11-stable/sys/dev/ath/ath_hal/ar5416/
H A Dar2133.c50 uint32_t numBits, uint32_t firstBit, uint32_t column);
/freebsd-11-stable/contrib/llvm-project/lld/ELF/
H A DSyntheticSections.cpp2283 uint64_t numBits = symbols.size() * 12; local
2284 maskWords = NextPowerOf2(numBits / (config->wordsize * 8));

Completed in 169 milliseconds