Home
last modified time | relevance | path

Searched refs:FirstOffset (Results 1 – 5 of 5) sorted by relevance

/freebsd-12.1/sys/dev/hptmv/
H A Dcommand.h145 USHORT FirstOffset; /* the offset from the StartLBA for the first member */ member
154 USHORT FirstOffset; /* the offset from the StartLBA for the first member */ member
/freebsd-12.1/contrib/llvm/lib/Target/Hexagon/
H A DHexagonStoreWidening.cpp319 unsigned FirstOffset = getStoreOffset(FirstMI); in selectStores() local
337 if ((2*SizeAccum-1) & FirstOffset) in selectStores()
371 if ((2*Pow2Size-1) & FirstOffset) in selectStores()
/freebsd-12.1/contrib/llvm/lib/Transforms/Scalar/
H A DSeparateConstOffsetFromGEP.cpp1244 Value *FirstOffset = FirstGEP->getOperand(1); in isLegalToSwapOperand() local
1246 if (CurLoop->isLoopInvariant(FirstOffset)) in isLegalToSwapOperand()
1253 Instruction *FirstOffsetDef = dyn_cast<Instruction>(FirstOffset); in isLegalToSwapOperand()
/freebsd-12.1/contrib/llvm/lib/Target/Mips/AsmParser/
H A DMipsAsmParser.cpp4167 int64_t FirstOffset = IsLargeOffset ? 0 : OffsetValue; in expandUlh() local
4170 std::swap(FirstOffset, SecondOffset); in expandUlh()
4179 FirstOffset, IDLoc, STI); in expandUlh()
4217 int64_t FirstOffset = IsLargeOffset ? 1 : (OffsetValue + 1); in expandUsh() local
4220 std::swap(FirstOffset, SecondOffset); in expandUsh()
4223 TOut.emitRRI(Mips::SB, DstReg, ATReg, FirstOffset, IDLoc, STI); in expandUsh()
4230 TOut.emitRRI(Mips::SB, DstReg, SrcReg, FirstOffset, IDLoc, STI); in expandUsh()
4839 MCOperand &FirstOffset = Inst.getOperand(2); in expandLoadStoreDMacro() local
4840 signed NextOffset = FirstOffset.getImm() + 4; in expandLoadStoreDMacro()
4843 if (!isInt<16>(FirstOffset.getImm()) || !isInt<16>(NextOffset)) in expandLoadStoreDMacro()
[all …]
/freebsd-12.1/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp5941 int64_t FirstOffset = INT64_MAX; in MatchLoadCombine() local
5976 if (ByteOffsetFromBase < FirstOffset) { in MatchLoadCombine()
5978 FirstOffset = ByteOffsetFromBase; in MatchLoadCombine()
5986 assert(FirstOffset != INT64_MAX && "First byte offset must be set"); in MatchLoadCombine()
5992 int64_t CurrentByteOffset = ByteOffsets[i] - FirstOffset; in MatchLoadCombine()