Home
last modified time | relevance | path

Searched refs:Off (Results 1 – 25 of 439) sorted by relevance

12345678910>>...18

/netbsd/external/gpl3/gcc.old/dist/libgcc/config/avr/libf7/
H A Dlibf7-asm.sx110 #define Off 1
147 std Z+0+Off, ZERO
148 std Z+1+Off, ZERO
204 adiw X, 6 + Off
244 std Z+0+Off, C0
245 std Z+1+Off, C1
246 std Z+2+Off, C2
247 std Z+3+Off, C3
248 std Z+4+Off, C4
249 std Z+5+Off, C5
[all …]
/netbsd/external/gpl3/gcc/dist/libgcc/config/avr/libf7/
H A Dlibf7-asm.sx110 #define Off 1
147 std Z+0+Off, ZERO
148 std Z+1+Off, ZERO
204 adiw X, 6 + Off
244 std Z+0+Off, C0
245 std Z+1+Off, C1
246 std Z+2+Off, C2
247 std Z+3+Off, C3
248 std Z+4+Off, C4
249 std Z+5+Off, C5
[all …]
/netbsd/external/apache2/llvm/dist/llvm/lib/MC/MCDisassembler/
H A DMCExternalSymbolizer.cpp111 const MCExpr *Off = nullptr; in tryAddingSymbolicOperand() local
113 Off = MCConstantExpr::create(SymbolicOp.Value, Ctx); in tryAddingSymbolicOperand()
122 if (Off) in tryAddingSymbolicOperand()
123 Expr = MCBinaryExpr::createAdd(LHS, Off, Ctx); in tryAddingSymbolicOperand()
127 if (Off) in tryAddingSymbolicOperand()
128 Expr = MCBinaryExpr::createAdd(Add, Off, Ctx); in tryAddingSymbolicOperand()
132 if (Off) in tryAddingSymbolicOperand()
133 Expr = Off; in tryAddingSymbolicOperand()
/netbsd/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
H A DDWARFDataExtractor.cpp15 DWARFDataExtractor::getInitialLength(uint64_t *Off, Error *Err) const { in getInitialLength() argument
20 Cursor C(*Off); in getInitialLength()
36 *Off = C.tell(); in getInitialLength()
46 uint64_t DWARFDataExtractor::getRelocatedValue(uint32_t Size, uint64_t *Off, in getRelocatedValue() argument
52 return getUnsigned(Off, Size, Err); in getRelocatedValue()
55 Optional<RelocAddrEntry> E = Obj->find(*Section, *Off); in getRelocatedValue()
56 uint64_t LocData = getUnsigned(Off, Size, Err); in getRelocatedValue()
/netbsd/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
H A DARMWinEHPrinter.cpp582 uint32_t Off = (OC[Offset] & 0x1F) << 3; in opcode_save_r19r20_x() local
595 uint32_t Off = (OC[Offset] & 0x3F) << 3; in opcode_save_fplr() local
655 Reg + 1, Off); in opcode_save_regp_x()
660 Reg + 1, Off); in opcode_save_regp_x()
675 Reg, Off); in opcode_save_reg()
708 Reg, Off); in opcode_save_lrpair()
757 Reg, Off); in opcode_save_freg()
769 OC[Offset + 1], Reg, Off); in opcode_save_freg_x()
773 OC[Offset + 1], Reg, Off); in opcode_save_freg_x()
780 unsigned Off = in opcode_alloc_l() local
[all …]
/netbsd/external/apache2/llvm/dist/llvm/lib/Target/AArch64/Disassembler/
H A DAArch64ExternalSymbolizer.cpp193 const MCExpr *Off = nullptr; in tryAddingSymbolicOperand() local
195 Off = MCConstantExpr::create(SymbolicOp.Value, Ctx); in tryAddingSymbolicOperand()
204 if (Off) in tryAddingSymbolicOperand()
205 Expr = MCBinaryExpr::createAdd(LHS, Off, Ctx); in tryAddingSymbolicOperand()
209 if (Off) in tryAddingSymbolicOperand()
210 Expr = MCBinaryExpr::createAdd(Add, Off, Ctx); in tryAddingSymbolicOperand()
214 if (Off) in tryAddingSymbolicOperand()
215 Expr = Off; in tryAddingSymbolicOperand()
/netbsd/external/apache2/llvm/dist/clang/lib/AST/Interp/
H A DInterpFrame.cpp120 unsigned Off = Func->hasRVO() ? primSize(PT_Ptr) : 0; in describe() local
131 TYPE_SWITCH(PrimTy, print(OS, stackRef<T>(Off), S.getCtx(), Ty)); in describe()
132 Off += align(primSize(PrimTy)); in describe()
161 Pointer InterpFrame::getParamPointer(unsigned Off) { in getParamPointer() argument
163 auto Pt = Params.find(Off); in getParamPointer()
169 const auto &Desc = Func->getParamDescriptor(Off); in getParamPointer()
175 TYPE_SWITCH(Desc.first, new (B->data()) T(stackRef<T>(Off))); in getParamPointer()
178 Params.insert({Off, std::move(Memory)}); in getParamPointer()
H A DPointer.h61 unsigned Off = Idx * elemSize(); in atIndex() local
63 Off += sizeof(InlineDescriptor); in atIndex()
65 Off += sizeof(InitMap *); in atIndex()
66 return Pointer(Pointee, Base, Base + Off); in atIndex()
70 Pointer atField(unsigned Off) const { in atField() argument
71 unsigned Field = Offset + Off; in atField()
H A DByteCodeStmtGen.cpp238 auto Off = this->allocateLocalPrimitive(VD, *T, DT.isConstQualified()); in visitVarDecl() local
246 return this->emitSetLocal(*T, Off, VD); in visitVarDecl()
249 if (auto Off = this->allocateLocal(VD)) { in visitVarDecl() local
250 return this->visitLocalInitializer(VD->getInit(), *Off); in visitVarDecl()
/netbsd/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
H A DTypeHashing.cpp40 uint32_t Off = 0; in hashType() local
45 uint32_t PreLen = Ref.Offset - Off; in hashType()
46 ArrayRef<uint8_t> PreData = RecordData.slice(Off, PreLen); in hashType()
72 Off = Ref.Offset + Ref.Count * sizeof(TypeIndex); in hashType()
76 auto TrailingBytes = RecordData.drop_front(Off); in hashType()
/netbsd/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGAddressAnalysis.cpp25 int64_t &Off) const { in equalBaseIndex()
32 Off = *Other.Offset - *Offset; in equalBaseIndex()
43 Off += B->getOffset() - A->getOffset(); in equalBaseIndex()
59 Off += B->getOffset() - A->getOffset(); in equalBaseIndex()
77 Off += MFI.getObjectOffset(B->getIndex()) - in equalBaseIndex()
226 auto Off = C->getSExtValue(); in matchLSNode() local
229 Offset -= Off; in matchLSNode()
231 Offset += Off; in matchLSNode()
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDataExtractor.h54 getInitialLength(uint64_t *Off, Error *Err = nullptr) const;
62 uint64_t getRelocatedValue(uint32_t Size, uint64_t *Off,
72 uint64_t getRelocatedAddress(uint64_t *Off, uint64_t *SecIx = nullptr) const {
73 return getRelocatedValue(getAddressSize(), Off, SecIx);
/netbsd/external/apache2/llvm/dist/llvm/tools/
H A DCMakeLists.txt2 # Setting variables that match the pattern LLVM_TOOL_{NAME}_BUILD to Off will
13 set(LLVM_TOOL_LLVM_SHLIB_BUILD Off)
17 set(LLVM_TOOL_LLVM_JITLISTENER_BUILD Off)
21 set(LLVM_TOOL_LTO_BUILD Off)
/netbsd/external/apache2/llvm/dist/llvm/lib/Support/
H A DBinaryStreamWriter.cpp83 BinaryStreamWriter::split(uint32_t Off) const { in split()
84 assert(getLength() >= Off); in split()
88 WritableBinaryStreamRef Second = First.drop_front(Off); in split()
89 First = First.keep_front(Off); in split()
H A DBinaryStreamReader.cpp169 BinaryStreamReader::split(uint32_t Off) const { in split()
170 assert(getLength() >= Off); in split()
174 BinaryStreamRef Second = First.drop_front(Off); in split()
175 First = First.keep_front(Off); in split()
/netbsd/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/
H A DNativeEnumGlobals.cpp28 for (uint32_t Off : GS.getGlobalsTable()) { in NativeEnumGlobals() local
29 CVSymbol S = SS.readRecord(Off); in NativeEnumGlobals()
32 MatchOffsets.push_back(Off); in NativeEnumGlobals()
H A DTpiStreamBuilder.cpp117 H->HashValueBuffer.Off = 0; in finalize()
122 H->HashAdjBuffer.Off = H->HashValueBuffer.Off + H->HashValueBuffer.Length; in finalize()
125 H->IndexOffsetBuffer.Off = H->HashAdjBuffer.Off + H->HashAdjBuffer.Length; in finalize()
H A DGlobalsStream.cpp75 uint32_t Off = PSH.Off - 1; in findRecordsByName() local
76 codeview::CVSymbol Record = Symbols.readRecord(Off); in findRecordsByName()
78 Result.push_back(std::make_pair(Off, std::move(Record))); in findRecordsByName()
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DBinaryStreamRef.h204 BinarySubstreamRef slice(uint32_t Off, uint32_t Size) const { in slice()
205 BinaryStreamRef SubSub = StreamData.slice(Off, Size); in slice()
206 return {Off + Offset, SubSub}; in slice()
214 split(uint32_t Off) const { in split()
215 return std::make_pair(keep_front(Off), drop_front(Off)); in split()
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/Native/
H A DGlobalsStream.h39 uint32_t Off = this->I->Off; variable
40 return --Off;
H A DRawTypes.h20 support::ulittle32_t Off; member
41 support::ulittle32_t Off; // Offset in the symbol record stream member
49 support::little32_t Off; member
279 support::little32_t Off; member
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DSelectionDAGAddressAnalysis.h58 int64_t &Off) const;
62 int64_t Off; in equalBaseIndex() local
63 return equalBaseIndex(Other, DAG, Off); in equalBaseIndex()
/netbsd/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DMachineFrameInfo.cpp240 int64_t Off = SO.SPOffset - ValOffset; in print() local
242 if (Off > 0) in print()
243 OS << "+" << Off; in print()
244 else if (Off < 0) in print()
245 OS << Off; in print()
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/
H A DUDTLayout.h55 uint32_t containsOffset(uint32_t Off) const { in containsOffset() argument
58 return (Off >= Begin && Off < End); in containsOffset()
128 bool hasVBPtrAtOffset(uint32_t Off) const;
/netbsd/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/
H A DUDTLayout.cpp267 bool UDTLayoutBase::hasVBPtrAtOffset(uint32_t Off) const { in hasVBPtrAtOffset()
268 if (VBPtr && VBPtr->getOffsetInParent() == Off) in hasVBPtrAtOffset()
271 if (BL->hasVBPtrAtOffset(Off - BL->getOffsetInParent())) in hasVBPtrAtOffset()
293 LayoutItems, Begin, [](uint32_t Off, const LayoutItemBase *Item) { in addChildToLayout() argument
294 return (Off < Item->getOffsetInParent()); in addChildToLayout()

12345678910>>...18