Searched refs:BitPosition (Results 1 – 9 of 9) sorted by relevance
/freebsd/sys/contrib/dev/acpica/compiler/ |
H A D | dtfield.c | 639 UINT8 BitPosition = 0; in DtCompileFlag() local 655 BitPosition = Info->Opcode; in DtCompileFlag() 661 BitPosition = 0; in DtCompileFlag() 668 BitPosition = 1; in DtCompileFlag() 675 BitPosition = 2; in DtCompileFlag() 681 BitPosition = 2; in DtCompileFlag() 687 BitPosition = 4; in DtCompileFlag() 693 BitPosition = 0; in DtCompileFlag() 699 BitPosition = 4; in DtCompileFlag() 705 BitPosition = 8; in DtCompileFlag() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/Disassembler/ |
H A D | AMDGPUDisassembler.h | 46 void insertBits(uint64_t SubBits, unsigned BitPosition, unsigned NumBits) { in insertBits() argument 49 assert(BitPosition < 128); in insertBits() 50 if (BitPosition < 64) { in insertBits() 51 Lo |= SubBits << BitPosition; in insertBits() 52 Hi |= SubBits >> 1 >> (63 - BitPosition); in insertBits() 54 Hi |= SubBits << (BitPosition - 64); in insertBits() 58 unsigned BitPosition) const { in extractBitsAsZExtValue() argument 60 assert(BitPosition < 128); in extractBitsAsZExtValue() 62 if (BitPosition < 64) in extractBitsAsZExtValue() 63 Val = Lo >> BitPosition | Hi << 1 << (63 - BitPosition); in extractBitsAsZExtValue() [all …]
|
/freebsd/sys/contrib/dev/acpica/components/hardware/ |
H A D | hwsleep.c | 242 Pm1aControl |= (AcpiGbl_SleepTypeA << SleepTypeRegInfo->BitPosition); in AcpiHwLegacySleep() 243 Pm1bControl |= (AcpiGbl_SleepTypeB << SleepTypeRegInfo->BitPosition); in AcpiHwLegacySleep() 381 SleepTypeRegInfo->BitPosition); in AcpiHwLegacyWakePrep() 383 SleepTypeRegInfo->BitPosition); in AcpiHwLegacyWakePrep()
|
H A D | hwxface.c | 354 >> BitRegInfo->BitPosition); in ACPI_EXPORT_SYMBOL() 436 ACPI_REGISTER_INSERT_VALUE (RegisterValue, BitRegInfo->BitPosition, in ACPI_EXPORT_SYMBOL() 453 BitRegInfo->BitPosition, BitRegInfo->AccessBitMask); in ACPI_EXPORT_SYMBOL()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | KnownBits.h | 208 void insertBits(const KnownBits &SubBits, unsigned BitPosition) { in insertBits() 209 Zero.insertBits(SubBits.Zero, BitPosition); in insertBits() 210 One.insertBits(SubBits.One, BitPosition); in insertBits() 214 KnownBits extractBits(unsigned NumBits, unsigned BitPosition) const { in extractBits() 215 return KnownBits(Zero.extractBits(NumBits, BitPosition), in extractBits() 216 One.extractBits(NumBits, BitPosition)); in extractBits()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | APInt.h | 1310 void setBit(unsigned BitPosition) { in setBit() argument 1311 assert(BitPosition < BitWidth && "BitPosition out of range"); in setBit() 1312 WordType Mask = maskBit(BitPosition); in setBit() 1316 U.pVal[whichWord(BitPosition)] |= Mask; in setBit() 1323 void setBitVal(unsigned BitPosition, bool BitValue) { in setBitVal() argument 1325 setBit(BitPosition); in setBitVal() 1327 clearBit(BitPosition); in setBitVal() 1387 void clearBit(unsigned BitPosition) { in clearBit() argument 1388 assert(BitPosition < BitWidth && "BitPosition out of range"); in clearBit() 1389 WordType Mask = ~maskBit(BitPosition); in clearBit() [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/TargetParser/ |
H A D | RISCVTargetParser.h | 31 unsigned BitPosition; member
|
/freebsd/sys/dev/acpica/ |
H A D | acpi_apei.c | 108 uint16_t BitPosition; member 212 printf(" Bit Position: %u\n", p->BitPosition); in apei_mem_handler()
|
/freebsd/sys/contrib/dev/acpica/include/ |
H A D | aclocal.h | 1264 UINT8 BitPosition; member
|