HomeSort by relevance Sort by last modified time
    Searched defs:Offset (Results 251 - 275 of 433) sorted by null

<<1112131415161718

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
d3d10shader.h 155 UINT Offset;
d3d11shader.h 99 UINT Offset;
  /system/bt/embdrv/sbc/encoder/srce/
sbc_analysis.c     [all...]
  /build/tools/ijar/
zip.cc 74 u4 *offset);
114 size_t in_offset_; // offset the input file
173 return error("Premature end of file (at offset %zd, state=%s); "
220 return Offset(q);
282 // Returns the offset of the pointer relative to the start of the
284 size_t Offset(const u1 *const x) {
309 u4 offset; local
311 filename, PATH_MAX, &attr, &offset)) {
315 // There might be an offset specified in the central directory that does
316 // not match the file offset, if so, correct the pointer
596 u4 offset; local
732 off_t offset = - static_cast<off_t>(zipdata_start local
    [all...]
  /external/clang/include/clang/Serialization/
ASTWriter.h 143 /// offset table where information about that input file is stored.
187 /// \brief Offset of each declaration in the bitstream, indexed by
191 /// \brief Sorted (by file offset) vector of pairs of file offset/DeclID.
225 /// \brief Offset of each type in the bitstream, indexed by
268 /// \brief Offsets of sub-stmts already serialized. The offset points
293 /// \brief Offset of each selector within the method pool/selector
387 uint64_t Offset;
390 ReplacedDeclInfo() : ID(0), Offset(0), Loc(0) {}
391 ReplacedDeclInfo(serialization::DeclID ID, uint64_t Offset,
    [all...]
  /external/clang/lib/Analysis/
Consumed.cpp 610 unsigned Offset = 0;
612 Offset = 1; // first argument is 'this'
615 for (unsigned Index = Offset; Index < Call->getNumArgs(); ++Index) {
617 if (Index - Offset >= FunD->getNumParams())
620 const ParmVarDecl *Param = FunD->getParamDecl(Index - Offset);
    [all...]
  /external/clang/lib/CodeGen/
CGExprConstant.cpp 108 && "Field offset mismatch!");
112 // Round up the field offset to the alignment of the field type.
414 BaseInfo(const CXXRecordDecl *Decl, CharUnits Offset, unsigned Index)
415 : Decl(Decl), Offset(Offset), Index(Index) {
419 CharUnits Offset;
422 bool operator<(const BaseInfo &O) const { return Offset < O.Offset; }
429 CharUnits Offset) {
437 BaseSubobject(CD, Offset), VTableClass)
    [all...]
  /external/clang/lib/Format/
Format.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Core/
MemRegion.cpp 1135 CharUnits offset = CharUnits::Zero(); local
    [all...]
  /external/harfbuzz_ng/src/
hb-open-type-private.hh 62 static inline const Type& StructAtOffset(const void *P, unsigned int offset)
63 { return * reinterpret_cast<const Type*> ((const char *) P + offset); }
65 static inline Type& StructAtOffset(void *P, unsigned int offset)
66 { return * reinterpret_cast<Type*> ((char *) P + offset); }
714 /* Offset, Null offset = 0 */
716 struct Offset : Type
771 * Template subclasses of Offset that do the dereferencing.
772 * Use: (base+offset)
776 struct OffsetTo : Offset<OffsetType
780 unsigned int offset = *this; local
796 unsigned int offset = *this; local
806 unsigned int offset = *this; local
    [all...]
  /external/jhead/
jhead.h 55 unsigned Offset;
123 unsigned ThumbnailOffset; // Exif offset to thumbnail
  /external/libnfc-nci/src/udrv/include/
ucodec.h 149 UINT16 Offset; /* GKI buffer based offset for UCODEC_ReadBuf */
164 UINT16 Offset; /* GKI buffer based offset for UCODEC_ReadBuf */
176 UINT16 Offset; /* GKI buffer based offset for UCODEC_ReadBuf */
  /external/llvm/include/llvm/CodeGen/
DIE.h 613 /// Offset - Offset in debug info section.
615 unsigned Offset;
633 explicit DIE(dwarf::Tag Tag) : Offset(0), Size(0), Tag(Tag) {}
643 unsigned getOffset() const { return Offset; }
676 void setOffset(unsigned O) { Offset = O; }
  /external/llvm/include/llvm/MC/
MCAssembler.h 86 /// Offset - The offset of this fragment in its section. This is ~0 until
88 uint64_t Offset;
374 /// Offset - The offset this fragment should start at.
375 const MCExpr *Offset;
381 MCOrgFragment(const MCExpr &Offset, int8_t Value, MCSection *Sec = nullptr)
382 : MCFragment(FT_Org, false, 0, Sec), Offset(&Offset), Value(Value) {}
387 const MCExpr &getOffset() const { return *Offset; }
    [all...]
MCDwarf.h 191 /// Minimum line offset in a special line info. opcode. The value
352 int Offset;
358 : Operation(Op), Label(L), Register(R), Offset(O),
370 /// Register and add Offset to it.
372 int Offset) {
373 return MCCFIInstruction(OpDefCfa, L, Register, -Offset, "");
377 /// on Register will be used instead of the old one. Offset remains the same.
383 /// remains the same, but offset is new. Note that it is the absolute offset
385 static MCCFIInstruction createDefCfaOffset(MCSymbol *L, int Offset) {
    [all...]
  /external/llvm/lib/Analysis/
ConstantFolding.cpp 234 /// If this constant is a constant offset from a global, return the global and
237 APInt &Offset, const DataLayout &DL) {
241 Offset = APInt(BitWidth, 0);
252 return IsConstantOffsetFromGlobal(CE->getOperand(0), GV, Offset, DL);
266 // Otherwise, add any offset that our operands provide.
270 Offset = TmpOffset;
275 /// out of. ByteOffset is an offset into C. CurPtr is the pointer to copy
365 uint64_t Offset = ByteOffset - Index * EltSize;
373 if (!ReadDataFromGlobal(C->getAggregateElement(Index), Offset, CurPtr,
377 uint64_t BytesWritten = EltSize - Offset;
    [all...]
InlineCost.cpp 98 // Keep track of values which map to a pointer base and constant offset.
110 bool accumulateGEPOffset(GEPOperator &GEP, APInt &Offset);
258 /// \brief Accumulate a constant GEP offset into an APInt if possible.
260 /// Returns false if unable to compute the offset for any reason. Respects any
262 bool CallAnalyzer::accumulateGEPOffset(GEPOperator &GEP, APInt &Offset) {
265 assert(IntPtrWidth == Offset.getBitWidth());
277 // Handle a struct index, which adds its field offset to the pointer.
281 Offset += APInt(IntPtrWidth, SL->getElementOffset(ElementIdx));
286 Offset += OpC->getValue().sextOrTrunc(IntPtrWidth) * TypeSize;
342 // Try to fold GEPs of constant-offset call site argument pointers. Thi
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfUnit.cpp 378 int64_t Offset) {
380 return Expr.AddMachineRegIndirect(Reg, Offset);
418 1). Add the offset of the forwarding field.
423 3). Add the offset for the field VarName, to find the actual variable.
490 // Next add the offset for the '__forwarding' field:
492 // adding the offset if it's 0.
502 // Now that we've got the real __Block_byref... struct, add the offset
    [all...]
WinException.cpp 311 int Offset = TFI.getFrameIndexReference(*Asm->MF, FrameIndex, UnusedReg);
312 Offset += FuncInfo.EHRegNodeEndOffset;
313 return Offset;
511 // Emit a label assignment with the SEH frame offset so we can use it for
712 // All funclets use the same parent frame offset currently.
733 // Get the frame escape label with the offset of the catch object. If
735 // emit an offset of zero, indicating that no copy will occur.
738 int Offset = getFrameIndexOffset(HT.CatchObj.FrameIndex, FuncInfo);
739 FrameAllocOffsetRef = MCConstantExpr::create(Offset, Asm->OutContext);
    [all...]
  /external/llvm/lib/CodeGen/
InlineSpiller.cpp     [all...]
LiveDebugVariables.cpp 102 /// holds part of a user variable. The part is identified by a byte offset.
113 unsigned offset; ///< Byte offset into variable. member in class:__anon17902::UserValue
114 bool IsIndirect; ///< true if this is a register-indirect+offset value.
144 : Variable(var), Expression(expr), offset(o), IsIndirect(i), dl(L),
160 unsigned Offset, bool indirect) const {
162 Offset == offset && indirect == IsIndirect;
305 unsigned Offset, bool IsIndirect, DebugLoc DL);
400 if (offset)
401 OS << '+' << offset; local
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeVectorOps.cpp 524 unsigned Offset = 0;
534 LD->getPointerInfo().getWithOffset(Offset),
537 MinAlign(LD->getAlignment(), Offset),
546 LD->getPointerInfo().getWithOffset(Offset),
549 MinAlign(LD->getAlignment(), Offset),
554 Offset += LoadBytes;
    [all...]
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyld.cpp 191 << " SID: " << SectionID << " Offset: "
206 // Get symbol offset.
213 << " SID: " << SectionID << " Offset: "
519 uint64_t Offset = 0;
538 Offset += AlignOffset;
549 SymbolTableEntry(SectionID, Offset, RTDyldSymFlags);
550 Offset += Size;
625 // Update the DataSize variable so that the stub offset is set correctly.
    [all...]
RuntimeDyldELF.cpp 227 uint64_t Offset, uint64_t Value,
235 support::ulittle64_t::ref(Section.getAddressWithOffset(Offset)) =
238 << format("%p\n", Section.getAddressWithOffset(Offset)));
248 support::ulittle32_t::ref(Section.getAddressWithOffset(Offset)) =
251 << format("%p\n", Section.getAddressWithOffset(Offset)));
255 uint64_t FinalAddress = Section.getLoadAddressWithOffset(Offset);
259 Section.getAddress()[Offset] = TruncOffset;
263 uint64_t FinalAddress = Section.getLoadAddressWithOffset(Offset);
267 support::ulittle32_t::ref(Section.getAddressWithOffset(Offset)) =
272 uint64_t FinalAddress = Section.getLoadAddressWithOffset(Offset);
    [all...]
  /external/llvm/lib/MC/
MCAssembler.cpp 116 assert(F->Offset != ~UINT64_C(0) && "Address not set!");
117 return F->Offset;
125 report_fatal_error("unable to evaluate offset to undefined symbol '" +
141 report_fatal_error("unable to evaluate offset for variable '" +
144 uint64_t Offset = Target.getConstant();
151 Offset += ValA;
159 Offset -= ValB;
162 Val = Offset;
214 // The size is the last fragment's end offset.
285 Offset(~UINT64_C(0))
    [all...]

Completed in 1026 milliseconds

<<1112131415161718