Searched refs:ByteOffset (Results 1 - 25 of 27) sorted by relevance

12

/freebsd-12-stable/sys/contrib/dev/acpica/compiler/
H A Dasldefine.h252 #define RsCreateBitField(Op, Name, ByteOffset, BitOffset) \
253 RsCreateResourceField (Op, Name, ByteOffset, BitOffset, 1)
255 #define RsCreateByteField(Op, Name, ByteOffset) \
256 RsCreateResourceField (Op, Name, ByteOffset, 0, 8);
258 #define RsCreateWordField(Op, Name, ByteOffset) \
259 RsCreateResourceField (Op, Name, ByteOffset, 0, 16);
261 #define RsCreateDwordField(Op, Name, ByteOffset) \
262 RsCreateResourceField (Op, Name, ByteOffset, 0, 32);
264 #define RsCreateQwordField(Op, Name, ByteOffset) \
265 RsCreateResourceField (Op, Name, ByteOffset,
[all...]
H A Ddtutils.c212 FieldObject->ByteOffset,
268 FieldObject->ByteOffset,
H A Ddtio.c440 Field->ByteOffset = Offset;
1043 Field->Line, Field->ByteOffset, Field->NameColumn,
1164 FlSeekFile (ASL_FILE_INPUT, Field->ByteOffset);
H A Daslresource.c554 * ByteOffset - Offset from the field start
570 UINT32 ByteOffset,
578 Op->Asl.Value.Tag.BitOffset = (ByteOffset * 8) + BitOffset;
567 RsCreateResourceField( ACPI_PARSE_OBJECT *Op, char *Name, UINT32 ByteOffset, UINT32 BitOffset, UINT32 BitLength) argument
H A Ddtcompiler.h201 UINT32 ByteOffset; /* Offset in source file for field */ member in struct:dt_field
H A Ddtfield.c775 Field->ByteOffset = Offset;
H A Daslcompiler.h1395 UINT32 ByteOffset,
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DGlobalSplit.cpp93 uint64_t ByteOffset = cast<ConstantInt>( local
104 uint64_t AttachedTo = (ByteOffset == 0) ? ByteOffset : ByteOffset - 1;
111 ConstantInt::get(Int32Ty, ByteOffset - SplitBegin)),
H A DWholeProgramDevirt.cpp255 // tables, and the ByteOffset is the offset in bytes from the address point to
259 uint64_t ByteOffset; member in struct:__anon5573::VTableSlot
277 DenseMapInfo<uint64_t>::getHashValue(I.ByteOffset);
281 return LHS.TypeID == RHS.TypeID && LHS.ByteOffset == RHS.ByteOffset;
296 DenseMapInfo<uint64_t>::getHashValue(I.ByteOffset);
300 return LHS.TypeID == RHS.TypeID && LHS.ByteOffset == RHS.ByteOffset;
500 uint64_t ByteOffset);
604 uint64_t ByteOffset);
814 tryFindVirtualCallTargets( std::vector<VirtualCallTarget> &TargetsForSlot, const std::set<TypeMemberInfo> &TypeMemberInfos, uint64_t ByteOffset) argument
842 tryFindVirtualCallTargets( std::vector<ValueInfo> &TargetsForSlot, const TypeIdCompatibleVtableInfo TIdInfo, uint64_t ByteOffset) argument
[all...]
H A DLowerTypeTests.cpp121 if (Offset < ByteOffset)
124 if ((Offset - ByteOffset) % (uint64_t(1) << AlignLog2) != 0)
127 uint64_t BitOffset = (Offset - ByteOffset) >> AlignLog2;
135 OS << "offset " << ByteOffset << " size " << BitSize << " align "
165 BSI.ByteOffset = Min;
1127 Int8Ty, CombinedGlobalAddr, ConstantInt::get(IntPtrTy, BSI.ByteOffset)),
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDebugLocStream.cpp28 if (Entries.back().ByteOffset != DWARFBytes.size())
H A DDebugLocStream.h43 size_t ByteOffset; member in struct:llvm::DebugLocStream::Entry
119 .slice(Entries[EI].ByteOffset, getNumBytes(EI));
145 return DWARFBytes.size() - Entries[EI].ByteOffset;
146 return Entries[EI + 1].ByteOffset - Entries[EI].ByteOffset;
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
H A DLowerTypeTests.h38 uint64_t ByteOffset; member in struct:llvm::lowertypetests::BitSetInfo
H A DWholeProgramDevirt.h236 uint64_t ByteOffset; member in struct:llvm::VTableSlotSummary
/freebsd-12-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DArrayBoundCheckerV2.cpp208 SVal ByteOffset = rawOffset.getByteOffset(); local
209 if (isTainted(state, ByteOffset)) {
211 std::make_unique<TaintBugVisitor>(ByteOffset));
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DConstantFolding.cpp377 /// out of. ByteOffset is an offset into C. CurPtr is the pointer to copy
380 bool ReadDataFromGlobal(Constant *C, uint64_t ByteOffset, unsigned char *CurPtr, argument
382 assert(ByteOffset <= DL.getTypeAllocSize(C->getType()) &&
398 for (unsigned i = 0; i != BytesLeft && ByteOffset != IntBytes; ++i) {
399 int n = ByteOffset;
403 ++ByteOffset;
411 return ReadDataFromGlobal(C, ByteOffset, CurPtr, BytesLeft, DL);
415 return ReadDataFromGlobal(C, ByteOffset, CurPtr, BytesLeft, DL);
419 return ReadDataFromGlobal(C, ByteOffset, CurPtr, BytesLeft, DL);
426 unsigned Index = SL->getElementContainingOffset(ByteOffset);
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/Utils/
H A DAMDGPUBaseInfo.h651 /// \returns The encoding that will be used for \p ByteOffset in the SMRD
653 int64_t getSMRDEncodedOffset(const MCSubtargetInfo &ST, int64_t ByteOffset);
656 /// offset field. \p ByteOffset should be the offset in bytes and
658 bool isLegalSMRDImmOffset(const MCSubtargetInfo &ST, int64_t ByteOffset);
H A DAMDGPUBaseInfo.cpp1250 int64_t getSMRDEncodedOffset(const MCSubtargetInfo &ST, int64_t ByteOffset) {
1252 return ByteOffset;
1253 return ByteOffset >> 2;
1256 bool isLegalSMRDImmOffset(const MCSubtargetInfo &ST, int64_t ByteOffset) {
1257 int64_t EncodedOffset = getSMRDEncodedOffset(ST, ByteOffset);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUISelDAGToDAG.cpp1201 int64_t ByteOffset = C->getSExtValue(); local
1202 if (isUInt<16>(ByteOffset)) {
1211 if (isDSOffsetLegal(Sub, ByteOffset, 16)) {
1228 Offset = CurDAG->getTargetConstant(ByteOffset, DL, MVT::i16);
1772 int64_t ByteOffset = C->getSExtValue(); local
1773 int64_t EncodedOffset = AMDGPU::getSMRDEncodedOffset(*Subtarget, ByteOffset);
1775 if (AMDGPU::isLegalSMRDImmOffset(*Subtarget, ByteOffset)) {
1781 if (!isUInt<32>(EncodedOffset) || !isUInt<32>(ByteOffset))
1788 SDValue C32Bit = CurDAG->getTargetConstant(ByteOffset, SL, MVT::i32);
H A DR600ISelLowering.cpp595 uint32_t ByteOffset = getImplicitParameterOffset(MF, FIRST_IMPLICIT); local
596 return DAG.getConstant(ByteOffset, DL, PtrVT);
906 unsigned ByteOffset = DwordOffset * 4; local
911 assert(isInt<16>(ByteOffset));
914 DAG.getConstant(ByteOffset, DL, MVT::i32), // PTR
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64FrameLowering.cpp1962 int ByteOffset = AFI->getCalleeSavedStackSize(); local
2054 ByteOffset -= RPI.isPaired() ? 2 * Scale : Scale;
2065 ByteOffset -= 8;
2066 assert(ByteOffset % 16 == 0);
2071 int Offset = RPI.isScalable() ? ScalableByteOffset : ByteOffset;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCAsmStreamer.cpp1007 unsigned ByteOffset = local
1009 uint64_t ValueToEmit = IntValue >> (ByteOffset * 8);
/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp1903 unsigned ByteOffset = 0; local
1910 i + 1, SM, LangOpts, CGF.getTarget(), &StartToken, &ByteOffset);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DLegalizerHelper.cpp2948 unsigned ByteOffset = Offset / 8;
2951 MIRBuilder.materializePtrAdd(NewAddrReg, AddrReg, OffsetTy, ByteOffset);
2954 MF.getMachineMemOperand(MMO, ByteOffset, ByteSize);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp1479 unsigned ByteOffset = (FloatVT.getSizeInBits() / 8) - 1;
1480 IntPtr = DAG.getMemBasePlusOffset(StackPtr, ByteOffset, DL);
1482 ByteOffset);

Completed in 420 milliseconds

12