Searched refs:BitPosition (Results 1 – 7 of 7) sorted by relevance
| /freebsd-13.1/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 = 4; in DtCompileFlag() 687 BitPosition = 0; in DtCompileFlag() 693 BitPosition = 4; in DtCompileFlag() 699 BitPosition = 8; in DtCompileFlag() 705 BitPosition = 12; in DtCompileFlag() [all …]
|
| /freebsd-13.1/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() 380 SleepTypeRegInfo->BitPosition); in AcpiHwLegacyWakePrep() 382 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-13.1/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-13.1/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | APInt.h | 1442 void setBit(unsigned BitPosition) { 1443 assert(BitPosition < BitWidth && "BitPosition out of range"); 1444 WordType Mask = maskBit(BitPosition); 1448 U.pVal[whichWord(BitPosition)] |= Mask; 1457 void setBitVal(unsigned BitPosition, bool BitValue) { 1459 setBit(BitPosition); 1461 clearBit(BitPosition); 1525 void clearBit(unsigned BitPosition) { 1526 assert(BitPosition < BitWidth && "BitPosition out of range"); 1527 WordType Mask = ~maskBit(BitPosition); [all …]
|
| /freebsd-13.1/sys/dev/acpica/ |
| H A D | acpi_apei.c | 110 uint16_t BitPosition; member 205 printf(" Bit Position: %u\n", p->BitPosition); in apei_mem_handler()
|
| /freebsd-13.1/sys/contrib/dev/acpica/include/ |
| H A D | aclocal.h | 1255 UINT8 BitPosition; member
|