| /freebsd/sys/contrib/dev/acpica/common/ |
| H A D | dmrestag.c | 172 UINT32 BitIndex, 177 UINT32 BitIndex, 186 UINT32 BitIndex); 191 UINT32 BitIndex); 608 UINT32 BitIndex; in AcpiDmCheckResourceReference() local 651 BitIndex = (UINT32) IndexOp->Common.Value.Integer; in AcpiDmCheckResourceReference() 657 BitIndex = (UINT32) ACPI_MUL_8 (IndexOp->Common.Value.Integer); in AcpiDmCheckResourceReference() 680 ResourceNode = AcpiDmGetResourceNode (BufferNode, BitIndex); in AcpiDmCheckResourceReference() 688 AcpiGetTagPathname (IndexOp, BufferNode, ResourceNode, BitIndex); in AcpiDmCheckResourceReference() 708 UINT32 BitIndex) in AcpiDmGetResourceNode() argument [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ |
| H A D | GOFF.h | 179 constexpr static uint8_t bits(uint8_t BitIndex, uint8_t Length, uint8_t Value, in bits() argument 181 uint8_t Pos = 8 - BitIndex - Length; in bits() 189 constexpr Flags(uint8_t BitIndex, uint8_t Length, uint8_t Value) in Flags() argument 190 : Val(bits(BitIndex, Length, Value, 0)) {} in Flags() 193 constexpr void set(uint8_t BitIndex, uint8_t Length, T NewValue) { in set() argument 194 Val = bits(BitIndex, Length, static_cast<uint8_t>(NewValue), Val); in set() 198 constexpr T get(uint8_t BitIndex, uint8_t Length) const { in get() argument 199 return static_cast<T>((Val >> (8 - BitIndex - Length)) & in get()
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ByteCode/ |
| H A D | BitcastBuffer.cpp | 15 static inline bool bitof(const std::byte *B, Bits BitIndex) { in bitof() argument 16 return (B[BitIndex.roundToBytes()] & in bitof() 17 (std::byte{1} << BitIndex.getOffsetInByte())) != std::byte{0}; in bitof() 46 Bits BitIndex; in copyBits() local 48 BitIndex = BitOffset + Bits(It); in copyBits() 50 BitIndex = size() - BitWidth - BitOffset + Bits(It); in copyBits() 52 bool BitValue = bitof(Data.get(), BitIndex); in copyBits()
|
| /freebsd/contrib/llvm-project/llvm/utils/TableGen/ |
| H A D | DecoderEmitter.cpp | 621 void reportRegion(bitAttr_t RA, unsigned StartBit, unsigned BitIndex, 1551 unsigned BitIndex, bool AllowMixed) { in reportRegion() argument 1553 Filters.emplace_back(*this, StartBit, BitIndex - StartBit, true); in reportRegion() 1555 Filters.emplace_back(*this, StartBit, BitIndex - StartBit, false); in reportRegion() 1592 unsigned BitIndex; in filterProcessor() local 1615 for (BitIndex = 0; BitIndex < BitWidth; ++BitIndex) in filterProcessor() 1616 if (FilterBitValues[BitIndex].isSet()) in filterProcessor() 1617 bitAttrs[BitIndex] = ATTR_FILTERED; in filterProcessor() 1624 for (BitIndex = 0; BitIndex < BitWidth; ++BitIndex) { in filterProcessor() 1625 switch (bitAttrs[BitIndex]) { in filterProcessor() [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Object/ |
| H A D | GOFF.h | 58 static void getBits(const uint8_t *Bytes, uint8_t ByteIndex, uint8_t BitIndex, in getBits() argument 61 assert(BitIndex < 8 && "Bit index out of bounds!"); in getBits() 62 assert(Length + BitIndex <= 8 && "Bit length too long!"); in getBits() 65 Value = (Value >> (8 - BitIndex - Length)) & ((1 << Length) - 1); in getBits()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | SIModeRegisterDefaults.cpp | 61 uint32_t BitIndex = ModeVal << 2; in encodeFltRoundsTable() local 62 return static_cast<uint64_t>(FltRoundsVal) << BitIndex; in encodeFltRoundsTable()
|
| H A D | AMDGPUISelLowering.cpp | 4398 unsigned BitIndex = K->getZExtValue(); in performTruncateCombine() local 4399 unsigned PartIndex = BitIndex / SrcEltSize; in performTruncateCombine() 4401 if (PartIndex * SrcEltSize == BitIndex && in performTruncateCombine()
|
| H A D | SIISelLowering.cpp | 14273 unsigned BitIndex = Idx->getZExtValue() * VecEltSize; in performExtractVectorEltCombine() local 14274 unsigned EltIdx = BitIndex / 32; in performExtractVectorEltCombine() 14275 unsigned LeftoverBitIdx = BitIndex % 32; in performExtractVectorEltCombine()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/AggressiveInstCombine/ |
| H A D | AggressiveInstCombine.cpp | 224 const APInt *BitIndex = nullptr; in matchAndOrChain() local 225 if (!match(V, m_LShr(m_Value(Candidate), m_APInt(BitIndex)))) in matchAndOrChain() 233 if (BitIndex && BitIndex->uge(MOps.Mask.getBitWidth())) in matchAndOrChain() 237 MOps.Mask.setBit(BitIndex ? BitIndex->getZExtValue() : 0); in matchAndOrChain()
|
| /freebsd/sys/contrib/dev/acpica/include/ |
| H A D | acdisasm.h | 373 UINT32 BitIndex; member
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
| H A D | LowerTypeTests.cpp | 612 Value *BitIndex = in createMaskedBitTest() local 614 Value *BitMask = B.CreateShl(ConstantInt::get(BitsType, 1), BitIndex); in createMaskedBitTest()
|
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | MicrosoftCXXABI.cpp | 826 unsigned BitIndex = 0; member 2651 GuardNum = GI->BitIndex++; in EmitGuardedInit()
|
| /freebsd/sys/contrib/dev/acpica/ |
| H A D | changes.txt | 12799 Fixed a problem where the CreateField operator could hang if the BitIndex
|