Searched refs:BitPosition (Results 1 – 8 of 8) sorted by relevance
| /freebsd-14.2/sys/contrib/dev/acpica/compiler/ |
| H A D | dtfield.c | 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() 711 BitPosition = 12; in DtCompileFlag() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/Disassembler/ |
| H A D | AMDGPUDisassembler.h | 45 void insertBits(uint64_t SubBits, unsigned BitPosition, unsigned NumBits) { in insertBits() argument 48 assert(BitPosition < 128); in insertBits() 49 if (BitPosition < 64) { in insertBits() 50 Lo |= SubBits << BitPosition; in insertBits() 51 Hi |= SubBits >> 1 >> (63 - BitPosition); in insertBits() 53 Hi |= SubBits << (BitPosition - 64); in insertBits() 57 unsigned BitPosition) const { in extractBitsAsZExtValue() argument 59 assert(BitPosition < 128); in extractBitsAsZExtValue() 61 if (BitPosition < 64) in extractBitsAsZExtValue() 62 Val = Lo >> BitPosition | Hi << 1 << (63 - BitPosition); in extractBitsAsZExtValue() [all …]
|
| /freebsd-14.2/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-14.2/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | KnownBits.h | 210 void insertBits(const KnownBits &SubBits, unsigned BitPosition) { in insertBits() 211 Zero.insertBits(SubBits.Zero, BitPosition); in insertBits() 212 One.insertBits(SubBits.One, BitPosition); in insertBits() 216 KnownBits extractBits(unsigned NumBits, unsigned BitPosition) const { in extractBits() 217 return KnownBits(Zero.extractBits(NumBits, BitPosition), in extractBits() 218 One.extractBits(NumBits, BitPosition)); in extractBits()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | APInt.h | 1302 void setBit(unsigned BitPosition) { in setBit() argument 1303 assert(BitPosition < BitWidth && "BitPosition out of range"); in setBit() 1304 WordType Mask = maskBit(BitPosition); in setBit() 1308 U.pVal[whichWord(BitPosition)] |= Mask; in setBit() 1315 void setBitVal(unsigned BitPosition, bool BitValue) { in setBitVal() argument 1317 setBit(BitPosition); in setBitVal() 1319 clearBit(BitPosition); in setBitVal() 1379 void clearBit(unsigned BitPosition) { in clearBit() argument 1380 assert(BitPosition < BitWidth && "BitPosition out of range"); in clearBit() 1381 WordType Mask = ~maskBit(BitPosition); in clearBit() [all …]
|
| /freebsd-14.2/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-14.2/sys/contrib/dev/acpica/include/ |
| H A D | aclocal.h | 1255 UINT8 BitPosition; member
|