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

<<1112131415161718

/external/llvm/unittests/IR/
H A DInstructionsTest.cpp341 int64_t Offset; local
346 GetPointerBaseWithConstantOffset(Gep0, Offset, &TD);
347 GetPointerBaseWithConstantOffset(Gep1, Offset, &TD);
348 GetPointerBaseWithConstantOffset(Gep2, Offset, &TD);
349 GetPointerBaseWithConstantOffset(Gep3, Offset, &TD);
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
H A Dcmsnamed.c143 cmsUInt32Number Offset; local
163 Offset = mlu ->PoolUsed;
169 memmove(Ptr + Offset, Block, size);
172 mlu ->Entries[mlu ->UsedEntries].StrW = Offset;
/external/pdfium/core/src/fxge/Microsoft SDK/include/
H A DGdiPlusTypes.h534 VOID Offset(IN const PointF& point) function in class:RectF
536 Offset(point.X, point.Y);
539 VOID Offset(IN REAL dx, function in class:RectF
737 VOID Offset(IN const Point& point) function in class:Rect
739 Offset(point.X, point.Y);
742 VOID Offset(IN INT dx, function in class:Rect
/external/sfntly/cpp/src/sfntly/
H A Dfont.h33 // extracted out for easier reference from other classes. Offset is the
274 struct Offset { struct in class:sfntly::Font
/external/chromium_org/third_party/harfbuzz-ng/src/
H A Dhb-open-type-private.hh633 /* Offset, Null offset = 0 */
635 struct Offset : Type struct in namespace:OT
688 * Template subclasses of Offset that do the dereferencing.
693 struct OffsetTo : Offset<OffsetType>
851 /* Array of Offset's */
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/core/
H A Dcmap_table.cc71 int32_t offset_ = Offset(index);
107 return data_->ReadUShort(Offset::kVersion);
111 return data_->ReadUShort(Offset::kNumTables);
119 return data_->ReadUShort(Offset::kEncodingRecordPlatformId +
124 return data_->ReadUShort(Offset::kEncodingRecordEncodingId +
128 int32_t CMapTable::Offset(int32_t index) { function in class:sfntly::CMapTable
129 return data_->ReadULongAsInt(Offset::kEncodingRecordOffset +
134 return Offset::kEncodingRecordStart + index * Offset::kEncodingRecordSize;
351 return data_->ReadUByte(character + Offset
[all...]
H A Dcmap_table.h579 virtual int32_t Offset(int32_t index);
589 struct Offset { struct in class:sfntly::CMapTable
/external/chromium_org/v8/src/arm64/
H A Dinstructions-arm64.h73 Offset, enumerator in enum:v8::internal::AddrMode
/external/clang/include/clang/AST/
H A DVTableBuilder.h56 static VTableComponent MakeVCallOffset(CharUnits Offset) { argument
57 return VTableComponent(CK_VCallOffset, Offset);
60 static VTableComponent MakeVBaseOffset(CharUnits Offset) { argument
61 return VTableComponent(CK_VBaseOffset, Offset);
64 static VTableComponent MakeOffsetToTop(CharUnits Offset) { argument
65 return VTableComponent(CK_OffsetToTop, Offset);
150 VTableComponent(Kind ComponentKind, CharUnits Offset) { argument
154 assert(Offset.getQuantity() < (1LL << 56) && "Offset is too big!");
155 assert(Offset
[all...]
/external/clang/include/clang/CodeGen/
H A DCGFunctionInfo.h99 static ABIArgInfo getDirect(llvm::Type *T = nullptr, unsigned Offset = 0,
103 AI.setDirectOffset(Offset);
174 void setDirectOffset(unsigned Offset) { argument
176 DirectOffset = Offset;
/external/clang/include/clang/Serialization/
H A DASTWriter.h171 /// \brief Offset of each declaration in the bitstream, indexed by
209 /// \brief Offset of each type in the bitstream, indexed by
277 /// \brief Offset of each selector within the method pool/selector
363 uint64_t Offset; member in struct:clang::ASTWriter::ReplacedDeclInfo
366 ReplacedDeclInfo() : ID(0), Offset(0), Loc(0) {}
367 ReplacedDeclInfo(serialization::DeclID ID, uint64_t Offset, argument
369 : ID(ID), Offset(Offset), Loc(Loc.getRawEncoding()) {}
700 void SetIdentifierOffset(const IdentifierInfo *II, uint32_t Offset);
704 void SetSelectorOffset(Selector Sel, uint32_t Offset);
[all...]
/external/clang/lib/Frontend/
H A DCacheTokens.cpp43 typedef uint32_t Offset; typedef
47 Offset TokenData, PPCondData;
52 PTHEntry(Offset td, Offset ppcd)
55 Offset getTokenOffset() const { return TokenData; }
56 Offset getPPCondTableOffset() const { return PPCondData; }
169 Offset off;
173 Offset getOffset() const { assert(valid); return off; }
174 void setOffset(Offset o) { off = o; valid = true; }
191 Offset CurStrOffse
[all...]
/external/clang/lib/Lex/
H A DPTHLexer.cpp199 uint32_t Offset = endian::readNext<uint32_t, little, aligned>(CurPPCondPtr); local
205 HashEntryI = TokBuf + Offset;
296 uint32_t Offset = endian::readNext<uint32_t, little, aligned>(OffsetPtr); local
297 return FileStartLoc.getLocWithOffset(Offset);
/external/clang/lib/Sema/
H A DSema.cpp47 SourceLocation Sema::getLocForEndOfToken(SourceLocation Loc, unsigned Offset) { argument
48 return Lexer::getLocForEndOfToken(Loc, Offset, SourceMgr, LangOpts);
/external/clang/tools/libclang/
H A DIndexing.cpp94 unsigned Offset;
96 PPRegion() : UniqueID(0, 0), ModTime(), Offset() {}
98 : UniqueID(UniqueID), ModTime(modTime), Offset(offset) {}
101 unsigned getOffset() const { return Offset; }
107 return lhs.UniqueID == rhs.UniqueID && lhs.Offset == rhs.Offset &&
369 unsigned Offset; variable
370 std::tie(FID, Offset) = SM.getDecomposedLoc(Loc);
/external/harfbuzz_ng/src/
H A Dhb-open-type-private.hh633 /* Offset, Null offset = 0 */
635 struct Offset : Type struct in namespace:OT
688 * Template subclasses of Offset that do the dereferencing.
693 struct OffsetTo : Offset<OffsetType>
851 /* Array of Offset's */
/external/jhead/
H A Djhead.h55 unsigned Offset; member in struct:__anon22664
/external/libnfc-nci/src/udrv/include/
H A Ducodec.h149 UINT16 Offset; /* GKI buffer based offset for UCODEC_ReadBuf */ member in struct:tUCODEC_CNF_SBC_TAG
164 UINT16 Offset; /* GKI buffer based offset for UCODEC_ReadBuf */ member in struct:tUCODEC_CNF_M12_TAG
176 UINT16 Offset; /* GKI buffer based offset for UCODEC_ReadBuf */ member in struct:tUCODEC_CNF_M24_TAG
/external/libnfc-nxp/src/
H A DphFriNfc_ISO15693Map.c638 /* Continue Offset option selected
1531 uint8_t Offset)
1558 psNdefMap->Offset = Offset;
1561 && (!psNdefMap->Offset))
1580 else if (psNdefMap->Offset)
1660 uint8_t Offset)
1688 psNdefMap->Offset = Offset;
1527 phFriNfc_ISO15693_RdNdef( phFriNfc_NdefMap_t *psNdefMap, uint8_t *pPacketData, uint32_t *pPacketDataLength, uint8_t Offset) argument
1656 phFriNfc_ISO15693_WrNdef( phFriNfc_NdefMap_t *psNdefMap, uint8_t *pPacketData, uint32_t *pPacketDataLength, uint8_t Offset) argument
/external/lldb/source/Plugins/Disassembler/llvm/
H A DDisassemblerLLVMC.cpp789 uint64_t Offset,
788 OpInfo(uint64_t PC, uint64_t Offset, uint64_t Size, int tag_type, void *tag_bug) argument
/external/llvm/include/llvm/CodeGen/
H A DMachineFrameInfo.h317 void mapLocalFrameObject(int ObjectIndex, int64_t Offset) { argument
318 LocalFrameObjects.push_back(std::pair<int, int64_t>(ObjectIndex, Offset));
/external/llvm/include/llvm/MC/
H A DMCDwarf.h331 int Offset; member in union:llvm::MCCFIInstruction::__anon25533
337 : Operation(Op), Label(L), Register(R), Offset(O),
349 /// Register and add Offset to it.
351 int Offset) {
352 return MCCFIInstruction(OpDefCfa, L, Register, -Offset, "");
356 /// on Register will be used instead of the old one. Offset remains the same.
364 static MCCFIInstruction createDefCfaOffset(MCSymbol *L, int Offset) { argument
365 return MCCFIInstruction(OpDefCfaOffset, L, 0, -Offset, "");
369 /// Offset is a relative value that is added/subtracted from the previous
375 /// \brief .cfi_offset Previous value of Register is saved at offset Offset
350 createDefCfa(MCSymbol *L, unsigned Register, int Offset) argument
377 createOffset(MCSymbol *L, unsigned Register, int Offset) argument
385 createRelOffset(MCSymbol *L, unsigned Register, int Offset) argument
[all...]
H A DMCRegisterInfo.h114 // Offset into MCRI::SubRegIndices of a list of sub-register indices for each
151 uint16_t Offset; member in struct:llvm::MCRegisterInfo::SubRegCoveredBits
347 /// If an Offset doesn't make sense (the index isn't continuous, or is used to
499 unsigned Offset = RU >> 4; local
502 // DiffLists + Offset.
503 init(Reg * Scale, MCRI->DiffLists + Offset);
/external/llvm/include/llvm/Target/
H A DTargetInstrInfo.h190 /// \param [out] Offset in bytes within the stack slot.
191 /// \returns true if both Size and Offset are successfully computed.
200 unsigned &Size, unsigned &Offset,
655 unsigned &BaseReg, unsigned &Offset,
654 getLdStBaseRegImmOfs(MachineInstr *LdSt, unsigned &BaseReg, unsigned &Offset, const TargetRegisterInfo *TRI) const argument
/external/llvm/lib/Analysis/
H A DBasicAliasAnalysis.cpp206 static Value *GetLinearExpression(Value *V, APInt &Scale, APInt &Offset, argument
214 Offset = 0;
229 V = GetLinearExpression(BOp->getOperand(0), Scale, Offset, Extension,
231 Offset += RHSC->getValue();
234 V = GetLinearExpression(BOp->getOperand(0), Scale, Offset, Extension,
236 Offset *= RHSC->getValue();
240 V = GetLinearExpression(BOp->getOperand(0), Scale, Offset, Extension,
242 Offset <<= RHSC->getValue().getLimitedValue();
258 Offset = Offset
[all...]

Completed in 2430 milliseconds

<<1112131415161718