Searched refs:BitOffset (Results 1 - 25 of 42) sorted by relevance

12

/freebsd-11-stable/sys/contrib/dev/acpica/components/hardware/
H A Dhwregs.c211 * 1. Detected if BitOffset is 0 and BitWidth is 8/16/32/64;
215 * 1. Detected if BitOffset is not 0 or BitWidth is not 8/16/32/64;
218 * 3. BitOffset/BitWidth fields are used to describe the "region".
223 if (!Reg->BitOffset && Reg->BitWidth &&
236 Reg->BitOffset + Reg->BitWidth);
282 * pointer, Address, SpaceId, BitWidth, and BitOffset.
336 BitWidth = ACPI_ROUND_UP (Reg->BitOffset + Reg->BitWidth, AccessWidth);
374 UINT8 BitOffset; local
398 BitWidth = Reg->BitOffset + Reg->BitWidth;
399 BitOffset
472 UINT8 BitOffset; local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DSelectionDAGAddressAnalysis.h70 int64_t &BitOffset) const;
74 int64_t BitOffset; local
75 return contains(DAG, BitSize, Other, OtherBitSize, BitOffset);
/freebsd-11-stable/sys/contrib/dev/acpica/components/dispatcher/
H A Ddsopcode.c233 UINT32 BitOffset; local
282 BitOffset = Offset;
300 BitOffset = Offset;
309 BitOffset = 8 * Offset;
318 BitOffset = 8 * Offset;
327 BitOffset = 8 * Offset;
336 BitOffset = 8 * Offset;
352 if ((BitOffset + BitCount) >
358 AcpiUtGetNodeName (ResultDesc), BitOffset, BitCount,
370 ObjDesc, FieldFlags, 0, BitOffset, BitCoun
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ShuffleDecodeConstantPool.cpp84 unsigned BitOffset = i * CstEltSizeInBits; local
87 UndefBits.setBits(BitOffset, BitOffset + CstEltSizeInBits);
91 MaskBits.insertBits(cast<ConstantInt>(COp)->getValue(), BitOffset);
96 unsigned BitOffset = i * MaskEltSizeInBits; local
97 APInt EltUndef = UndefBits.extractBits(MaskEltSizeInBits, BitOffset);
107 APInt EltBits = MaskBits.extractBits(MaskEltSizeInBits, BitOffset);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Drelease.h84 const uptr BitOffset = (I & BitOffsetMask) << CounterSizeBitsLog; local
85 return (Buffer[Index] >> BitOffset) & CounterMask;
91 const uptr BitOffset = (I & BitOffsetMask) << CounterSizeBitsLog; local
92 DCHECK_LT(BitOffset, SCUDO_WORDSIZE);
93 Buffer[Index] += static_cast<uptr>(1U) << BitOffset;
/freebsd-11-stable/sys/contrib/dev/acpica/compiler/
H A Dasldefine.h251 #define RsCreateBitField(Op, Name, ByteOffset, BitOffset) \
252 RsCreateResourceField (Op, Name, ByteOffset, BitOffset, 1)
H A Daslrestype2.c220 Descriptor->GenericReg.BitOffset = (UINT8) InitializerOp->Asl.Value.Integer;
222 CurrentByteOffset + ASL_RESDESC_OFFSET (GenericReg.BitOffset));
H A Daslresource.c555 * BitOffset - Additional bit offset
571 UINT32 BitOffset,
578 Op->Asl.Value.Tag.BitOffset = (ByteOffset * 8) + BitOffset;
567 RsCreateResourceField( ACPI_PARSE_OBJECT *Op, char *Name, UINT32 ByteOffset, UINT32 BitOffset, UINT32 BitLength) argument
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Serialization/
H A DASTBitCodes.h185 uint32_t BitOffset; member in struct:clang::serialization::PPEntityOffset
187 PPEntityOffset(SourceRange R, uint32_t BitOffset) argument
189 End(R.getEnd().getRawEncoding()), BitOffset(BitOffset) {}
225 uint32_t BitOffset = 0; member in struct:clang::serialization::DeclOffset
228 DeclOffset(SourceLocation Loc, uint32_t BitOffset) argument
229 : Loc(Loc.getRawEncoding()), BitOffset(BitOffset) {}
H A DASTRecordWriter.h106 void AddOffset(uint64_t BitOffset) { argument
108 Record->push_back(BitOffset);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGAddressAnalysis.cpp148 int64_t OtherBitSize, int64_t &BitOffset) const {
157 BitOffset = 8 * Offset;
158 return BitOffset + OtherBitSize <= BitSize;
H A DLegalizeVectorOps.cpp774 unsigned BitOffset = 0; local
784 assert(BitOffset < WideBits && "Unexpected offset!"); argument
787 BitOffset, dl, TLI.getShiftAmountTy(WideVT, DAG.getDataLayout()));
790 BitOffset += SrcEltBits;
791 if (BitOffset >= WideBits) {
793 BitOffset -= WideBits;
794 if (BitOffset > 0) {
796 SrcEltBits - BitOffset, dl,
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGObjCRuntime.cpp90 uint64_t BitOffset = FieldBitOffset % CGF.CGM.getContext().getCharWidth(); local
94 llvm::alignTo(BitOffset + BitFieldSize, AlignmentBits));
104 CGBitFieldInfo::MakeInfo(CGF.CGM.getTypes(), Ivar, BitOffset, BitFieldSize,
H A DCGRecordLayoutBuilder.cpp145 CharUnits bitsToCharUnits(uint64_t BitOffset) { argument
146 return Context.toCharUnitsFromBits(BitOffset);
382 uint64_t BitOffset = getFieldBitOffset(*Field); local
391 if (Run == FieldEnd || BitOffset >= Tail) {
393 StartBitOffset = BitOffset;
H A DCodeGenTBAA.cpp311 uint64_t BitOffset = Layout.getFieldOffset(Field->getFieldIndex());
312 uint64_t Offset = Context.toCharUnitsFromBits(BitOffset).getQuantity();
/freebsd-11-stable/sys/contrib/dev/acpica/components/disassembler/
H A Ddmopcode.c1002 Info->BitOffset += (UINT32) Op->Common.Value.Integer;
1010 Info->BitOffset += Offset;
1012 if (Info->BitOffset % 8 == 0)
1014 AcpiOsPrintf ("Offset (0x%.2X)", ACPI_DIV_8 (Info->BitOffset));
/freebsd-11-stable/sys/dev/acpica/
H A Dacpi_package.c151 *class = gas.BitOffset;
/freebsd-11-stable/sys/contrib/dev/acpica/components/events/
H A Devgpeblk.c407 ThisRegister->StatusAddress.BitOffset = 0;
408 ThisRegister->EnableAddress.BitOffset = 0;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DLowerTypeTests.cpp127 uint64_t BitOffset = (Offset - ByteOffset) >> AlignLog2;
128 if (BitOffset >= BitSize)
131 return Bits.count(BitOffset);
456 Value *BitOffset);
575 /// Build a test that bit BitOffset mod sizeof(Bits)*8 is set in
578 Value *BitOffset) {
582 BitOffset = B.CreateZExtOrTrunc(BitOffset, BitsType);
584 B.CreateAnd(BitOffset, ConstantInt::get(BitsType, BitWidth - 1));
659 /// Build a test that bit BitOffset i
577 createMaskedBitTest(IRBuilder< &B, Value *Bits, Value *BitOffset) argument
661 createBitSetTest(IRBuilder< &B, const TypeIdLowering &TIL, Value *BitOffset) argument
768 Value *BitOffset = B.CreateOr(OffsetSHR, OffsetSHL); local
[all...]
/freebsd-11-stable/sys/contrib/dev/acpica/include/
H A Dactbl.h242 UINT8 BitOffset; /* Bit offset within the register */ member in struct:acpi_generic_address
H A Damlresrc.h513 UINT8 BitOffset; member in struct:aml_resource_generic_register
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeRecord.h544 BitFieldRecord(TypeIndex Type, uint8_t BitSize, uint8_t BitOffset) argument
546 BitOffset(BitOffset) {}
549 uint8_t getBitOffset() const { return BitOffset; }
554 uint8_t BitOffset = 0; member in class:llvm::codeview::BitFieldRecord
/freebsd-11-stable/sys/contrib/dev/acpica/components/tables/
H A Dtbfadt.c362 GenericAddress->BitOffset = 0;
760 * AccessSize/BitWidth/BitOffset fields can be correctly
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DUdtRecordCompleter.cpp156 offset += bfr.BitOffset;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetInstrInfo.cpp394 int BitOffset = TRI->getSubRegIdxOffset(SubIdx); local
395 if (BitOffset < 0 || BitOffset % 8)
399 Offset = (unsigned)BitOffset / 8;

Completed in 302 milliseconds

12