Home
last modified time | relevance | path

Searched refs:BitOffset (Results 1 – 25 of 41) sorted by relevance

12

/freebsd-13.1/sys/contrib/dev/acpica/components/hardware/
H A Dhwregs.c223 if (!Reg->BitOffset && Reg->BitWidth && in AcpiHwGetAccessBitWidth()
236 Reg->BitOffset + Reg->BitWidth); in AcpiHwGetAccessBitWidth()
374 UINT8 BitOffset; in AcpiHwRead() local
398 BitWidth = Reg->BitOffset + Reg->BitWidth; in AcpiHwRead()
399 BitOffset = Reg->BitOffset; in AcpiHwRead()
408 if (BitOffset >= AccessWidth) in AcpiHwRead()
411 BitOffset -= AccessWidth; in AcpiHwRead()
472 UINT8 BitOffset; in AcpiHwWrite() local
493 BitOffset = Reg->BitOffset; in AcpiHwWrite()
509 if (BitOffset >= AccessWidth) in AcpiHwWrite()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ShuffleDecodeConstantPool.cpp86 unsigned BitOffset = i * CstEltSizeInBits; in extractConstantMask() local
89 UndefBits.setBits(BitOffset, BitOffset + CstEltSizeInBits); in extractConstantMask()
93 MaskBits.insertBits(cast<ConstantInt>(COp)->getValue(), BitOffset); in extractConstantMask()
98 unsigned BitOffset = i * MaskEltSizeInBits; in extractConstantMask() local
99 APInt EltUndef = UndefBits.extractBits(MaskEltSizeInBits, BitOffset); in extractConstantMask()
109 APInt EltBits = MaskBits.extractBits(MaskEltSizeInBits, BitOffset); in extractConstantMask()
/freebsd-13.1/sys/contrib/dev/acpica/components/dispatcher/
H A Ddsopcode.c233 UINT32 BitOffset; in AcpiDsInitBufferField() local
282 BitOffset = Offset; in AcpiDsInitBufferField()
300 BitOffset = Offset; in AcpiDsInitBufferField()
309 BitOffset = 8 * Offset; in AcpiDsInitBufferField()
318 BitOffset = 8 * Offset; in AcpiDsInitBufferField()
327 BitOffset = 8 * Offset; in AcpiDsInitBufferField()
336 BitOffset = 8 * Offset; in AcpiDsInitBufferField()
352 if ((BitOffset + BitCount) > in AcpiDsInitBufferField()
359 AcpiUtGetNodeName (ResultDesc), BitOffset, BitCount, in AcpiDsInitBufferField()
370 ObjDesc, FieldFlags, 0, BitOffset, BitCount); in AcpiDsInitBufferField()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Serialization/
H A DASTBitCodes.h185 uint32_t BitOffset; member
187 PPEntityOffset(SourceRange R, uint32_t BitOffset) in PPEntityOffset()
189 BitOffset(BitOffset) {} in PPEntityOffset()
228 UnderalignedInt64(uint64_t BitOffset) { setBitOffset(BitOffset); } in UnderalignedInt64()
248 UnderalignedInt64 BitOffset; member
251 DeclOffset(SourceLocation Loc, uint64_t BitOffset, in DeclOffset()
254 setBitOffset(BitOffset, DeclTypesBlockStartOffset); in DeclOffset()
264 BitOffset.setBitOffset(Offset - DeclTypesBlockStartOffset); in setBitOffset()
268 return BitOffset.getBitOffset() + DeclTypesBlockStartOffset; in getBitOffset()
H A DASTRecordWriter.h107 void AddOffset(uint64_t BitOffset) { in AddOffset() argument
109 Record->push_back(BitOffset); in AddOffset()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DSelectionDAGAddressAnalysis.h70 int64_t &BitOffset) const;
74 int64_t BitOffset; in contains() local
75 return contains(DAG, BitSize, Other, OtherBitSize, BitOffset); in contains()
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Drelease.h106 const uptr BitOffset = (I & BitOffsetMask) << CounterSizeBitsLog; in get() local
107 return (Buffer[Region * SizePerRegion + Index] >> BitOffset) & CounterMask; in get()
113 const uptr BitOffset = (I & BitOffsetMask) << CounterSizeBitsLog; in inc() local
114 DCHECK_LT(BitOffset, SCUDO_WORDSIZE); in inc()
116 << BitOffset; in inc()
/freebsd-13.1/sys/contrib/dev/acpica/compiler/
H A Dasldefine.h252 #define RsCreateBitField(Op, Name, ByteOffset, BitOffset) \ argument
253 RsCreateResourceField (Op, Name, ByteOffset, BitOffset, 1)
H A Daslresource.c571 UINT32 BitOffset, in RsCreateResourceField() argument
578 Op->Asl.Value.Tag.BitOffset = (ByteOffset * 8) + BitOffset; in RsCreateResourceField()
H A Daslrestype2.c220 Descriptor->GenericReg.BitOffset = (UINT8) InitializerOp->Asl.Value.Integer; in RsDoGeneralRegisterDescriptor()
222 CurrentByteOffset + ASL_RESDESC_OFFSET (GenericReg.BitOffset)); in RsDoGeneralRegisterDescriptor()
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGAddressAnalysis.cpp159 int64_t OtherBitSize, int64_t &BitOffset) const { in contains()
168 BitOffset = 8 * Offset; in contains()
169 return BitOffset + OtherBitSize <= BitSize; in contains()
/freebsd-13.1/sys/contrib/dev/acpica/components/disassembler/
H A Ddmopcode.c1002 Info->BitOffset += (UINT32) Op->Common.Value.Integer; in AcpiDmDisassembleOneOp()
1010 Info->BitOffset += Offset; in AcpiDmDisassembleOneOp()
1012 if (Info->BitOffset % 8 == 0) in AcpiDmDisassembleOneOp()
1014 AcpiOsPrintf ("Offset (0x%.2X)", ACPI_DIV_8 (Info->BitOffset)); in AcpiDmDisassembleOneOp()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DLowerTypeTests.cpp132 uint64_t BitOffset = (Offset - ByteOffset) >> AlignLog2; in containsGlobalOffset() local
133 if (BitOffset >= BitSize) in containsGlobalOffset()
136 return Bits.count(BitOffset); in containsGlobalOffset()
463 Value *BitOffset);
590 Value *BitOffset) { in createMaskedBitTest() argument
594 BitOffset = B.CreateZExtOrTrunc(BitOffset, BitsType); in createMaskedBitTest()
679 return createMaskedBitTest(B, TIL.InlineBits, BitOffset); in createBitSetTest()
691 Value *ByteAddr = B.CreateGEP(Int8Ty, ByteArray, BitOffset); in createBitSetTest()
783 Value *BitOffset = B.CreateOr(OffsetSHR, OffsetSHL); in lowerTypeTestCall() local
810 return createBitSetTest(ThenB, TIL, BitOffset); in lowerTypeTestCall()
[all …]
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGObjCRuntime.cpp91 uint64_t BitOffset = FieldBitOffset % CGF.CGM.getContext().getCharWidth(); in EmitValueForIvarAtOffset() local
95 llvm::alignTo(BitOffset + BitFieldSize, AlignmentBits)); in EmitValueForIvarAtOffset()
105 CGBitFieldInfo::MakeInfo(CGF.CGM.getTypes(), Ivar, BitOffset, BitFieldSize, in EmitValueForIvarAtOffset()
H A DCGRecordLayoutBuilder.cpp158 CharUnits bitsToCharUnits(uint64_t BitOffset) { in bitsToCharUnits()
159 return Context.toCharUnitsFromBits(BitOffset); in bitsToCharUnits()
407 uint64_t BitOffset = getFieldBitOffset(*Field); in accumulateBitFields() local
417 if (Run == FieldEnd || BitOffset >= Tail) { in accumulateBitFields()
419 StartBitOffset = BitOffset; in accumulateBitFields()
H A DCodeGenTBAA.cpp348 uint64_t BitOffset = Layout.getFieldOffset(Field->getFieldIndex()); in getBaseTypeInfoHelper() local
349 uint64_t Offset = Context.toCharUnitsFromBits(BitOffset).getQuantity(); in getBaseTypeInfoHelper()
/freebsd-13.1/sys/contrib/dev/acpica/components/events/
H A Devgpeblk.c411 ThisRegister->StatusAddress.BitOffset = 0; in AcpiEvCreateGpeInfoBlocks()
412 ThisRegister->EnableAddress.BitOffset = 0; in AcpiEvCreateGpeInfoBlocks()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeRecord.h538 BitFieldRecord(TypeIndex Type, uint8_t BitSize, uint8_t BitOffset) in BitFieldRecord() argument
540 BitOffset(BitOffset) {} in BitFieldRecord()
543 uint8_t getBitOffset() const { return BitOffset; } in getBitOffset()
548 uint8_t BitOffset = 0; variable
/freebsd-13.1/sys/dev/acpica/
H A Dacpi_package.c151 *class = gas.BitOffset; in acpi_PkgFFH_IntelCpu()
/freebsd-13.1/sys/contrib/dev/acpica/include/
H A Dactbl.h243 UINT8 BitOffset; /* Bit offset within the register */ member
H A Damlresrc.h513 UINT8 BitOffset; member
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetInstrInfo.cpp404 int BitOffset = TRI->getSubRegIdxOffset(SubIdx); in getStackSlotRange() local
405 if (BitOffset < 0 || BitOffset % 8) in getStackSlotRange()
409 Offset = (unsigned)BitOffset / 8; in getStackSlotRange()
/freebsd-13.1/sys/contrib/dev/acpica/common/
H A Ddmtbinfo.c224 {ACPI_DMT_UINT8, ACPI_GAS_OFFSET (BitOffset), "Bit Offset", 0},
/freebsd-13.1/sys/contrib/dev/acpica/components/tables/
H A Dtbfadt.c362 GenericAddress->BitOffset = 0; in AcpiTbInitGenericAddress()
/freebsd-13.1/usr.sbin/acpi/acpidump/
H A Dacpi.c182 gas->BitOffset, gas->BitWidth); in acpi_print_gas()
186 gas->BitOffset, gas->BitWidth); in acpi_print_gas()
191 (uint16_t)gas->Address, gas->BitOffset, gas->BitWidth); in acpi_print_gas()
196 gas->BitOffset, gas->BitWidth); in acpi_print_gas()
200 gas->BitOffset, gas->BitWidth); in acpi_print_gas()

12