Home
last modified time | relevance | path

Searched refs:ByteOffset (Results 1 – 25 of 30) sorted by relevance

12

/freebsd-14.2/sys/contrib/dev/acpica/compiler/
H A Dasldefine.h252 #define RsCreateBitField(Op, Name, ByteOffset, BitOffset) \ argument
253 RsCreateResourceField (Op, Name, ByteOffset, BitOffset, 1)
255 #define RsCreateByteField(Op, Name, ByteOffset) \ argument
256 RsCreateResourceField (Op, Name, ByteOffset, 0, 8);
258 #define RsCreateWordField(Op, Name, ByteOffset) \ argument
259 RsCreateResourceField (Op, Name, ByteOffset, 0, 16);
261 #define RsCreateDwordField(Op, Name, ByteOffset) \ argument
262 RsCreateResourceField (Op, Name, ByteOffset, 0, 32);
264 #define RsCreateQwordField(Op, Name, ByteOffset) \ argument
265 RsCreateResourceField (Op, Name, ByteOffset, 0, 64);
H A Ddtio.c440 Field->ByteOffset = Offset; in DtParseLine()
1043 Field->Line, Field->ByteOffset, Field->NameColumn, in DtDumpFieldList()
1164 FlSeekFile (ASL_FILE_INPUT, Field->ByteOffset); in DtWriteFieldToListing()
H A Ddtutils.c212 FieldObject->ByteOffset, in DtError()
268 FieldObject->ByteOffset, in DtNameError()
H A Daslresource.c570 UINT32 ByteOffset, in RsCreateResourceField() argument
578 Op->Asl.Value.Tag.BitOffset = (ByteOffset * 8) + BitOffset; in RsCreateResourceField()
H A Ddtfield.c781 Field->ByteOffset = Offset; in DtCreateField()
H A Ddtcompiler.h201 UINT32 ByteOffset; /* Offset in source file for field */ member
H A Daslcompiler.h1399 UINT32 ByteOffset,
/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/
H A DBase64.cpp55 for (uint64_t ByteOffset = 0; ByteOffset < 4; ++ByteOffset) { in decodeBase64() local
56 const uint64_t ByteIdx = Idx + ByteOffset; in decodeBase64()
75 Hex64Bytes[ByteOffset] = DecodedByte; in decodeBase64()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DGlobalSplit.cpp91 uint64_t ByteOffset = cast<ConstantInt>( in splitGlobal() local
102 uint64_t AttachedTo = (ByteOffset == 0) ? ByteOffset : ByteOffset - 1; in splitGlobal()
109 ConstantInt::get(Int32Ty, ByteOffset - SplitBegin)), in splitGlobal()
H A DWholeProgramDevirt.cpp324 uint64_t ByteOffset; member
342 DenseMapInfo<uint64_t>::getHashValue(I.ByteOffset); in getHashValue()
346 return LHS.TypeID == RHS.TypeID && LHS.ByteOffset == RHS.ByteOffset; in isEqual()
361 DenseMapInfo<uint64_t>::getHashValue(I.ByteOffset); in getHashValue()
365 return LHS.TypeID == RHS.TypeID && LHS.ByteOffset == RHS.ByteOffset; in isEqual()
615 uint64_t ByteOffset,
741 uint64_t ByteOffset);
2132 auto ResI = TidSummary->WPDRes.find(Slot.ByteOffset); in importResolution()
2374 .WPDRes[S.first.ByteOffset]; in run()
2513 ->WPDRes[S.first.ByteOffset]; in run()
[all …]
H A DLowerTypeTests.cpp127 if (Offset < ByteOffset) in containsGlobalOffset()
130 if ((Offset - ByteOffset) % (uint64_t(1) << AlignLog2) != 0) in containsGlobalOffset()
133 uint64_t BitOffset = (Offset - ByteOffset) >> AlignLog2; in containsGlobalOffset()
141 OS << "offset " << ByteOffset << " size " << BitSize << " align " in print()
171 BSI.ByteOffset = Min; in build()
1134 Int8Ty, CombinedGlobalAddr, ConstantInt::get(IntPtrTy, BSI.ByteOffset)), in lowerTypeTestCalls()
/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DArrayBoundCheckerV2.cpp351 auto [Reg, ByteOffset] = *RawOffset; in performCheck()
364 State, ByteOffset, SVB.makeZeroArrayIndex(), SVB); in performCheck()
368 Messages Msgs = getPrecedesMsgs(Reg, ByteOffset); in performCheck()
369 reportOOB(C, PrecedesLowerBound, OOB_Precedes, ByteOffset, Msgs); in performCheck()
381 compareValueToThreshold(State, ByteOffset, *KnownSize, SVB); in performCheck()
390 compareValueToThreshold(ExceedsUpperBound, ByteOffset, *KnownSize, in performCheck()
399 Messages Msgs = getExceedsMsgs(C.getASTContext(), Reg, ByteOffset, in performCheck()
401 reportOOB(C, ExceedsUpperBound, OOB_Exceeds, ByteOffset, Msgs); in performCheck()
404 if (isTainted(State, ByteOffset)) { in performCheck()
417 reportOOB(C, ExceedsUpperBound, OOB_Taint, ByteOffset, Msgs); in performCheck()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDebugLocStream.h42 size_t ByteOffset; member
117 .slice(Entries[EI].ByteOffset, getNumBytes(EI)); in getBytes()
143 return DWARFBytes.size() - Entries[EI].ByteOffset; in getNumBytes()
144 return Entries[EI + 1].ByteOffset - Entries[EI].ByteOffset; in getNumBytes()
H A DDebugLocStream.cpp28 if (Entries.back().ByteOffset != DWARFBytes.size()) in finalizeEntry()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DByteProvider.h66 static ByteProvider getSrc(std::optional<ISelOp> Val, int64_t ByteOffset, in getSrc() argument
70 return ByteProvider(Val, ByteOffset, VectorOffset); in getSrc()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/Utils/
H A DAMDGPUBaseInfo.cpp2822 static bool isDwordAligned(uint64_t ByteOffset) { in isDwordAligned() argument
2823 return (ByteOffset & 3) == 0; in isDwordAligned()
2827 uint64_t ByteOffset) { in convertSMRDOffsetUnits() argument
2829 return ByteOffset; in convertSMRDOffsetUnits()
2831 assert(isDwordAligned(ByteOffset)); in convertSMRDOffsetUnits()
2832 return ByteOffset >> 2; in convertSMRDOffsetUnits()
2838 return isInt<24>(ByteOffset) ? std::optional<int64_t>(ByteOffset) in getSMRDEncodedOffset()
2844 return isInt<20>(ByteOffset) ? std::optional<int64_t>(ByteOffset) in getSMRDEncodedOffset()
2848 if (!isDwordAligned(ByteOffset) && !hasSMEMByteOffset(ST)) in getSMRDEncodedOffset()
2851 int64_t EncodedOffset = convertSMRDOffsetUnits(ST, ByteOffset); in getSMRDEncodedOffset()
[all …]
H A DAMDGPUBaseInfo.h1395 uint64_t convertSMRDOffsetUnits(const MCSubtargetInfo &ST, uint64_t ByteOffset);
1402 int64_t ByteOffset, bool IsBuffer);
1407 int64_t ByteOffset);
1420 bool isLegalSMRDImmOffset(const MCSubtargetInfo &ST, int64_t ByteOffset);
/freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/
H A DConstantFolding.cpp419 assert(ByteOffset <= DL.getTypeAllocSize(C->getType()) && in ReadDataFromGlobal()
434 unsigned n = ByteOffset; in ReadDataFromGlobal()
438 ++ByteOffset; in ReadDataFromGlobal()
461 unsigned Index = SL->getElementContainingOffset(ByteOffset); in ReadDataFromGlobal()
463 ByteOffset -= CurEltOffset; in ReadDataFromGlobal()
470 if (ByteOffset < EltSize && in ReadDataFromGlobal()
488 CurPtr += NextEltOffset - CurEltOffset - ByteOffset; in ReadDataFromGlobal()
489 BytesLeft -= NextEltOffset - CurEltOffset - ByteOffset; in ReadDataFromGlobal()
490 ByteOffset = 0; in ReadDataFromGlobal()
514 uint64_t Index = ByteOffset / EltSize; in ReadDataFromGlobal()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
H A DLowerTypeTests.h38 uint64_t ByteOffset; member
H A DWholeProgramDevirt.h239 uint64_t ByteOffset; member
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUISelDAGToDAG.cpp1073 int64_t ByteOffset = C->getSExtValue(); in SelectDS1Addr1Offset() local
1074 if (isDSOffsetLegal(SDValue(), ByteOffset)) { in SelectDS1Addr1Offset()
1083 if (isDSOffsetLegal(Sub, ByteOffset)) { in SelectDS1Addr1Offset()
1100 Offset = CurDAG->getTargetConstant(ByteOffset, DL, MVT::i16); in SelectDS1Addr1Offset()
2014 int64_t ByteOffset = IsBuffer ? C->getZExtValue() : C->getSExtValue(); in SelectSMRDOffset() local
2016 AMDGPU::getSMRDEncodedOffset(*Subtarget, ByteOffset, IsBuffer); in SelectSMRDOffset()
2023 if (ByteOffset < 0) in SelectSMRDOffset()
2026 EncodedOffset = AMDGPU::getSMRDEncodedLiteralOffset32(*Subtarget, ByteOffset); in SelectSMRDOffset()
2032 if (!isUInt<32>(ByteOffset) && !isInt<32>(ByteOffset)) in SelectSMRDOffset()
2036 SDValue C32Bit = CurDAG->getTargetConstant(ByteOffset, SL, MVT::i32); in SelectSMRDOffset()
H A DR600ISelLowering.cpp516 uint32_t ByteOffset = getImplicitParameterOffset(MF, FIRST_IMPLICIT); in LowerOperation() local
517 return DAG.getConstant(ByteOffset, DL, PtrVT); in LowerOperation()
765 unsigned ByteOffset = DwordOffset * 4; in LowerImplicitParameter() local
770 assert(isInt<16>(ByteOffset)); in LowerImplicitParameter()
773 DAG.getConstant(ByteOffset, DL, MVT::i32), // PTR in LowerImplicitParameter()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64FrameLowering.cpp2803 int ByteOffset = AFI->getCalleeSavedStackSize(); in computeCalleeSaveRegisterPairs() local
2809 ByteOffset = 0; in computeCalleeSaveRegisterPairs()
2901 int OffsetPre = RPI.isScalable() ? ScalableByteOffset : ByteOffset; in computeCalleeSaveRegisterPairs()
2907 ByteOffset += StackFillDir * (RPI.isPaired() ? 2 * Scale : Scale); in computeCalleeSaveRegisterPairs()
2914 ByteOffset += StackFillDir * 8; in computeCalleeSaveRegisterPairs()
2923 !RPI.isPaired() && ByteOffset % 16 != 0) { in computeCalleeSaveRegisterPairs()
2924 ByteOffset += 8 * StackFillDir; in computeCalleeSaveRegisterPairs()
2933 int OffsetPost = RPI.isScalable() ? ScalableByteOffset : ByteOffset; in computeCalleeSaveRegisterPairs()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeIntegerTypes.cpp4478 SDValue ByteOffset = DAG.getNode(ISD::SRL, dl, ShAmtVT, ShAmt, in ExpandIntRes_ShiftThroughStack() local
4482 ByteOffset = DAG.getNode(ISD::AND, dl, ShAmtVT, ByteOffset, in ExpandIntRes_ShiftThroughStack()
4499 ByteOffset = DAG.getNegative(ByteOffset, dl, ShAmtVT); in ExpandIntRes_ShiftThroughStack()
4503 ByteOffset = DAG.getSExtOrTrunc(ByteOffset, dl, PtrTy); in ExpandIntRes_ShiftThroughStack()
4504 AdjStackPtr = DAG.getMemBasePlusOffset(AdjStackPtr, ByteOffset, dl); in ExpandIntRes_ShiftThroughStack()
/freebsd-14.2/contrib/llvm-project/llvm/lib/MC/
H A DMCAsmStreamer.cpp1351 unsigned ByteOffset = in emitValueImpl() local
1353 uint64_t ValueToEmit = IntValue >> (ByteOffset * 8); in emitValueImpl()

12