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 | 47 unsigned BitPosition) const { in extractBitsAsZExtValue() argument 49 assert(BitPosition < 128); in extractBitsAsZExtValue() 51 if (BitPosition < 64) in extractBitsAsZExtValue() 52 Val = Lo >> BitPosition | Hi << 1 << (63 - BitPosition); in extractBitsAsZExtValue() 54 Val = Hi >> (BitPosition - 64); in extractBitsAsZExtValue()
|
| /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 | 212 void insertBits(const KnownBits &SubBits, unsigned BitPosition) { in insertBits() 213 Zero.insertBits(SubBits.Zero, BitPosition); in insertBits() 214 One.insertBits(SubBits.One, BitPosition); in insertBits() 218 KnownBits extractBits(unsigned NumBits, unsigned BitPosition) const { in extractBits() 219 return KnownBits(Zero.extractBits(NumBits, BitPosition), in extractBits() 220 One.extractBits(NumBits, BitPosition)); in extractBits()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | APInt.h | 1330 void setBit(unsigned BitPosition) { in setBit() argument 1331 assert(BitPosition < BitWidth && "BitPosition out of range"); in setBit() 1332 WordType Mask = maskBit(BitPosition); in setBit() 1336 U.pVal[whichWord(BitPosition)] |= Mask; in setBit() 1343 void setBitVal(unsigned BitPosition, bool BitValue) { in setBitVal() argument 1345 setBit(BitPosition); in setBitVal() 1347 clearBit(BitPosition); in setBitVal() 1406 void clearBit(unsigned BitPosition) { in clearBit() argument 1407 assert(BitPosition < BitWidth && "BitPosition out of range"); in clearBit() 1408 WordType Mask = ~maskBit(BitPosition); in clearBit() [all …]
|
| /freebsd/sys/dev/acpica/ |
| H A D | acpi_apei.c | 107 uint16_t BitPosition; member 211 printf(" Bit Position: %u\n", p->BitPosition); in apei_mem_handler()
|
| /freebsd/contrib/llvm-project/llvm/lib/TargetParser/ |
| H A D | RISCVISAInfo.cpp | 1068 unsigned BitPosition; member 1080 return std::make_pair(E.GroupID, E.BitPosition); in getRISCVFeaturesBitsInfo()
|
| /freebsd/sys/contrib/dev/acpica/include/ |
| H A D | aclocal.h | 1264 UINT8 BitPosition; member
|