Searched defs:Offset (Results 251 - 275 of 725) sorted by relevance

<<11121314151617181920>>

/external/llvm/tools/llvm-readobj/
H A DWin64EHDumper.cpp116 const coff_section *Section, uint64_t Offset,
122 if (!Ctx.ResolveSymbol(Section, Offset, Symbol, Ctx.UserData)) {
127 OS << format(" +0x%X (0x%" PRIX64 ")", Displacement, Offset);
129 OS << format(" (0x%" PRIX64 ")", Offset);
137 OS << format(" (0x%" PRIX64 ")", Offset);
143 uint64_t Offset,
148 Ctx.ResolveSymbol(Section, Offset, Symbol, Ctx.UserData))
167 uint64_t Offset,
170 formatSymbol(Ctx, Section, Offset + 0, RF.StartAddress));
172 formatSymbol(Ctx, Section, Offset
115 formatSymbol(const Dumper::Context &Ctx, const coff_section *Section, uint64_t Offset, uint32_t Displacement) argument
141 resolveRelocation(const Dumper::Context &Ctx, const coff_section *Section, uint64_t Offset, const coff_section *&ResolvedSection, uint64_t &ResolvedAddress) argument
165 printRuntimeFunctionEntry(const Context &Ctx, const coff_section *Section, uint64_t Offset, const RuntimeFunction &RF) argument
237 printUnwindInfo(const Context &Ctx, const coff_section *Section, off_t Offset, const UnwindInfo &UI) argument
289 uint64_t Offset; local
[all...]
/external/lzma/CPP/7zip/Common/
H A DLimitedStreams.h168 UInt64 Offset; member in class:CTailInStream
180 HRESULT SeekToStart() { return Stream->Seek(Offset, STREAM_SEEK_SET, NULL); }
235 UInt64 Offset; member in class:CTailOutStream
/external/lzma/CPP/Windows/
H A DFileIO.h34 unsigned Offset; member in struct:NWindows::NFile::CReparseShortInfo
/external/pdfium/third_party/agg23/
H A Dagg_pixfmt_gray.h42 template<class Blender, unsigned Step = 1, unsigned Offset = 0>
95 value_type* p = (value_type*)m_rbuf->row(y) + x * Step + Offset;
104 Offset * sizeof(value_type));
111 Offset * sizeof(value_type));
115 *((value_type*)m_rbuf->row(y) + x * Step + Offset) = c.v; local
119 copy_or_blend_pix((value_type*)m_rbuf->row(y) + x * Step + Offset, c, cover);
125 value_type* p = (value_type*)m_rbuf->row(y) + x * Step + Offset;
137 value_type* p = (value_type*)m_rbuf->row(y) + x * Step + Offset;
158 value_type* p = (value_type*)m_rbuf->row(y) + x * Step + Offset;
/external/swiftshader/src/Common/
H A DMath.hpp373 static const float Offset = -24.0f; // Exponent Bias (15) + Number of mantissa bits per component (9) = 24 local
375 const float factor = powf(2.0f, static_cast<float>(E) + Offset);
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
H A DMachineRelocation.h50 /// Offset - This is the offset from the start of the code buffer of the
52 uintptr_t Offset; member in class:llvm::MachineRelocation
88 Result.Offset = offset;
108 Result.Offset = offset;
125 Result.Offset = offset;
145 Result.Offset = offset;
164 Result.Offset = offset;
183 Result.Offset = offset;
197 return Offset;
/external/swiftshader/third_party/LLVM/include/llvm/Object/
H A DCOFF.h37 support::ulittle32_t Offset; member in struct:llvm::object::coff_symbol::StringTableOffset
42 StringTableOffset Offset; member in union:llvm::object::coff_symbol::__anon19658
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DGraphWriter.h233 unsigned Offset = local
235 DestPort = static_cast<int>(Offset);
/external/swiftshader/third_party/LLVM/lib/Analysis/IPA/
H A DCallGraphSCCPass.cpp72 void dumpPassStructure(unsigned Offset) { argument
73 errs().indent(Offset*2) << "Call Graph SCC Pass Manager\n";
76 P->dumpPassStructure(Offset + 1);
77 dumpLastUses(P, Offset+1);
/external/swiftshader/third_party/LLVM/lib/Analysis/
H A DLoopPass.cpp305 void LPPassManager::dumpPassStructure(unsigned Offset) { argument
306 errs().indent(Offset*2) << "Loop Pass Manager\n";
309 P->dumpPassStructure(Offset + 1);
310 dumpLastUses(P, Offset+1);
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DLocalStackSlotAllocation.cpp50 FrameRef(MachineBasicBlock::iterator I, int64_t Offset) : argument
51 MI(I), LocalOffset(Offset) {}
61 void AdjustStackOffset(MachineFrameInfo *MFI, int FrameIdx, int64_t &Offset,
119 int FrameIdx, int64_t &Offset,
124 Offset += MFI->getObjectSize(FrameIdx);
133 Offset = (Offset + Align - 1) / Align * Align;
135 int64_t LocalOffset = StackGrowsDown ? -Offset : Offset;
144 Offset
118 AdjustStackOffset(MachineFrameInfo *MFI, int FrameIdx, int64_t &Offset, bool StackGrowsDown, unsigned &MaxAlign) argument
158 int64_t Offset = 0; local
212 int64_t Offset = FrameSizeAdjust + LocalFrameOffset - RegOffset.second; local
295 int64_t Offset = 0; local
[all...]
/external/swiftshader/third_party/LLVM/lib/MC/
H A DMCObjectStreamer.cpp227 void MCObjectStreamer::EmitValueToOffset(const MCExpr *Offset, argument
230 if (Offset->EvaluateAsAbsolute(Res, getAssembler())) {
231 new MCOrgFragment(*Offset, Value, getCurrentSectionData());
241 MCBinaryExpr::Create(MCBinaryExpr::Sub, Offset, Ref, getContext());
H A DMCPureStreamer.cpp49 virtual void EmitValueToOffset(const MCExpr *Offset,
187 void MCPureStreamer::EmitValueToOffset(const MCExpr *Offset, argument
189 new MCOrgFragment(*Offset, Value, getCurrentSectionData());
/external/swiftshader/third_party/LLVM/lib/Object/
H A DMachOObject.cpp131 StringRef MachOObject::getData(size_t Offset, size_t Size) const { argument
132 return Buffer->getBuffer().substr(Offset,Size);
147 uint64_t Offset; local
149 Offset = getHeaderSize();
152 Offset = Prev.Offset + Prev.Command.Size;
156 memcpy(&Info.Command, Buffer->getBuffer().data() + Offset,
162 Info.Offset = Offset;
184 ReadInMemoryStruct(*this, Buffer->getBuffer(), LCI.Offset, Re
267 uint64_t Offset = (DLC.IndirectSymbolTableOffset + local
290 uint64_t Offset = (LCI.Offset + sizeof(macho::SegmentLoadCommand) + local
313 uint64_t Offset = (LCI.Offset + sizeof(macho::Segment64LoadCommand) + local
326 uint64_t Offset = (RelocationTableOffset + local
340 uint64_t Offset = (SymbolTableOffset + local
354 uint64_t Offset = (SymbolTableOffset + local
[all...]
/external/swiftshader/third_party/LLVM/lib/Support/
H A DMemoryBuffer.cpp236 off_t Offset,
263 size_t End = Offset + MapSize;
279 int64_t Offset,
298 if (shouldUseMmap(FD, FileSize, MapSize, Offset, RequiresNullTerminator,
300 off_t RealMapOffset = Offset & ~(PageSize - 1);
301 off_t Delta = Offset - RealMapOffset;
324 if (lseek(FD, Offset, SEEK_SET) == -1)
233 shouldUseMmap(int FD, size_t FileSize, size_t MapSize, off_t Offset, bool RequiresNullTerminator, int PageSize) argument
276 getOpenFile(int FD, const char *Filename, OwningPtr<MemoryBuffer> &result, uint64_t FileSize, uint64_t MapSize, int64_t Offset, bool RequiresNullTerminator) argument
/external/swiftshader/third_party/LLVM/lib/Target/ARM/MCTargetDesc/
H A DARMAsmBackend.cpp62 // Name Offset (bits) Size (bits) Flags
216 // Offset by 4, adjusted by two due to the half-word ordering of thumb.
273 // Offset by 8 just as above.
347 // Offset by 4, and don't encode the low two bits. Two bytes of that
352 // Offset by 4 and don't encode the lower bit, which is always 0.
357 // Offset by 4 and don't encode the lower bit, which is always 0.
360 // Offset by 4 and don't encode the lower bit, which is always 0.
367 // Offset by 4, adjusted by two due to the half-word ordering of thumb.
419 unsigned Offset = Fixup.getOffset(); local
425 Data[Offset
500 unsigned Offset = Fixup.getOffset(); local
[all...]
/external/swiftshader/third_party/LLVM/lib/Target/MSP430/
H A DMSP430ISelDAGToDAG.cpp227 uint64_t Offset = CN->getSExtValue(); local
234 AM.Disp += Offset;
/external/swiftshader/third_party/LLVM/lib/Target/Mips/
H A DMipsFrameLowering.cpp43 // Offset
56 // Offset - offset from sp after stack allocation on function prologue
95 static unsigned AlignOffset(unsigned Offset, unsigned Align) { argument
96 return (Offset + Align - 1) / Align * Align;
214 int64_t Offset = MFI->getObjectOffset(I->getFrameIdx()); local
221 MachineLocation DstML0(MachineLocation::VirtualFP, Offset);
222 MachineLocation DstML1(MachineLocation::VirtualFP, Offset + 4);
234 DstML = MachineLocation(MachineLocation::VirtualFP, Offset);
258 unsigned Offset = MFI->getObjectOffset(MipsFI->getGPFI()); local
259 BuildMI(MBB, MBBI, dl, TII.get(Mips::CPRESTORE)).addImm(Offset);
[all...]
H A DMipsISelDAGToDAG.cpp87 bool SelectAddr(SDValue N, SDValue &Base, SDValue &Offset);
113 SelectAddr(SDValue Addr, SDValue &Base, SDValue &Offset) { argument
120 Offset = CurDAG->getTargetConstant(0, ValTy);
128 Offset = Addr.getOperand(0);
137 Offset = Addr;
154 Offset = CurDAG->getTargetConstant(CN->getZExtValue(), ValTy);
176 Offset = LoVal.getOperand(0);
183 Offset = CurDAG->getTargetConstant(0, ValTy);
H A DMipsInstrInfo.cpp217 uint64_t Offset, const MDNode *MDPtr,
220 .addFrameIndex(FrameIx).addImm(0).addImm(Offset).addMetadata(MDPtr);
216 emitFrameIndexDebugValue(MachineFunction &MF, int FrameIx, uint64_t Offset, const MDNode *MDPtr, DebugLoc DL) const argument
/external/swiftshader/third_party/LLVM/lib/Target/PTX/
H A DPTXISelDAGToDAG.cpp40 bool SelectADDRri(SDValue &Addr, SDValue &Base, SDValue &Offset);
41 bool SelectADDRii(SDValue &Addr, SDValue &Base, SDValue &Offset);
42 bool SelectADDRlocal(SDValue &Addr, SDValue &Base, SDValue &Offset);
213 SDValue &Offset) {
229 Offset = CurDAG->getTargetConstant(CN->getZExtValue(), MVT::i32);
236 Offset = CurDAG->getTargetConstant(0, Addr.getValueType().getSimpleVT());
250 Offset = CurDAG->getTargetConstant(0, Addr.getValueType().getSimpleVT());
263 Offset = CurDAG->getTargetConstant(0, Addr.getValueType().getSimpleVT());
277 if (SelectImm(Addr.getOperand(1-i), Offset)) {
288 SDValue &Offset) {
212 SelectADDRri(SDValue &Addr, SDValue &Base, SDValue &Offset) argument
287 SelectADDRii(SDValue &Addr, SDValue &Base, SDValue &Offset) argument
308 SelectADDRlocal(SDValue &Addr, SDValue &Base, SDValue &Offset) argument
[all...]
/external/swiftshader/third_party/LLVM/lib/Target/PowerPC/MCTargetDesc/
H A DPPCAsmBackend.cpp157 unsigned Offset = Fixup.getOffset(); local
163 Data[Offset + i] |= uint8_t((Value >> ((4 - i - 1)*8)) & 0xff);
/external/swiftshader/third_party/LLVM/lib/Target/PowerPC/
H A DPPCInstrInfo.cpp621 int FrameIx, uint64_t Offset,
625 addFrameReference(MIB, FrameIx, 0, false).addImm(Offset).addMetadata(MDPtr);
620 emitFrameIndexDebugValue(MachineFunction &MF, int FrameIx, uint64_t Offset, const MDNode *MDPtr, DebugLoc DL) const argument
H A DPPCJITInfo.cpp50 intptr_t Offset = ((intptr_t)To - (intptr_t)At) >> 2; local
53 if (Offset >= -(1 << 23) && Offset < (1 << 23)) { // In range?
54 AtI[0] = BUILD_B(Offset, isCall); // b/bl target
309 intptr_t Offset = ((intptr_t)Target - (intptr_t)OrigCallAddr) >> 2; local
311 if (Offset >= -(1 << 23) && Offset < (1 << 23)) { // In range?
315 OrigCallInst |= (Offset & ((1 << 24)-1)) << 2;
H A DPPCMachineFunctionInfo.h120 void setVarArgsStackOffset(int Offset) { VarArgsStackOffset = Offset; } argument

Completed in 414 milliseconds

<<11121314151617181920>>