Searched defs:Offset (Results 176 - 200 of 428) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/truetype/
H A Dglyph_table.h299 struct Offset { struct in class:sfntly::GlyphTable
/external/chromium_org/third_party/skia/include/core/
H A DSkPoint.h217 static void Offset(SkPoint points[], int count, const SkPoint& offset) { function in struct:SkPoint
218 Offset(points, count, offset.fX, offset.fY);
221 static void Offset(SkPoint points[], int count, SkScalar dx, SkScalar dy) { function in struct:SkPoint
/external/clang/lib/AST/
H A DNestedNameSpecifier.cpp333 SourceLocation LoadSourceLocation(void *Data, unsigned Offset) { argument
335 memcpy(&Raw, static_cast<char *>(Data) + Offset, sizeof(unsigned));
341 void *LoadPointer(void *Data, unsigned Offset) { argument
343 memcpy(&Result, static_cast<char *>(Data) + Offset, sizeof(void*));
364 unsigned Offset = getDataLength(Qualifier->getPrefix()); local
367 return LoadSourceLocation(Data, Offset);
372 return SourceRange(LoadSourceLocation(Data, Offset),
373 LoadSourceLocation(Data, Offset + sizeof(unsigned)));
379 void *TypeData = LoadPointer(Data, Offset);
382 LoadSourceLocation(Data, Offset
395 unsigned Offset = getDataLength(Qualifier->getPrefix()); local
[all...]
/external/clang/lib/CodeGen/
H A DCGObjCRuntime.cpp91 llvm::Value *Offset) {
92 // Compute (type*) ( (char *) BaseValue + Offset)
96 V = CGF.Builder.CreateInBoundsGEP(V, Offset, "add.ptr");
86 EmitValueForIvarAtOffset(CodeGen::CodeGenFunction &CGF, const ObjCInterfaceDecl *OID, llvm::Value *BaseValue, const ObjCIvarDecl *Ivar, unsigned CVRQualifiers, llvm::Value *Offset) argument
/external/clang/lib/Format/
H A DBreakableToken.cpp137 unsigned LineIndex, unsigned Offset, StringRef::size_type Length) const {
139 encoding::columnWidthWithTabs(Line.substr(Offset, Length),
359 unsigned LineIndex, unsigned Offset, StringRef::size_type Length) const {
360 unsigned ContentStartColumn = getContentStartColumn(LineIndex, Offset);
362 encoding::columnWidthWithTabs(Lines[LineIndex].substr(Offset, Length),
136 getLineLengthAfterSplit( unsigned LineIndex, unsigned Offset, StringRef::size_type Length) const argument
358 getLineLengthAfterSplit( unsigned LineIndex, unsigned Offset, StringRef::size_type Length) const argument
/external/clang/lib/Sema/
H A DSemaStmtAsm.cpp430 unsigned &Offset, SourceLocation AsmLoc) {
431 Offset = 0;
469 Offset = (unsigned)Result.getQuantity();
429 LookupInlineAsmField(StringRef Base, StringRef Member, unsigned &Offset, SourceLocation AsmLoc) argument
/external/clang/lib/StaticAnalyzer/Core/
H A DStore.cpp438 SVal StoreManager::getLValueElement(QualType elementType, NonLoc Offset, argument
454 Offset = svalBuilder.convertToArrayIndex(Offset).castAs<NonLoc>();
466 return loc::MemRegionVal(MRMgr.getElementRegion(elementType, Offset,
481 if (!Offset.getAs<nonloc::ConcreteInt>()) {
485 return loc::MemRegionVal(MRMgr.getElementRegion(elementType, Offset,
490 const llvm::APSInt& OffI = Offset.castAs<nonloc::ConcreteInt>().getValue();
/external/clang/test/Analysis/
H A Dderived-to-base.cpp197 struct Offset { struct in namespace:LazyBindings::WithOffset
201 struct OffsetDerived : private Offset, public Base {
/external/clang/unittests/Format/
H A DFormatTest.cpp26 std::string format(llvm::StringRef Code, unsigned Offset, unsigned Length, argument
30 std::vector<tooling::Range> Ranges(1, tooling::Range(Offset, Length));
3155 " + sizeof(int32_t) // Offset of CU in the .debug_info section\n"
/external/compiler-rt/lib/ubsan/
H A Dubsan_diag.h24 uptr Offset; member in class:__ubsan::ModuleLocation
27 ModuleLocation() : ModuleName(0), Offset(0) {}
28 ModuleLocation(const char *ModuleName, uptr Offset) argument
29 : ModuleName(ModuleName), Offset(Offset) {}
31 uptr getOffset() const { return Offset; }
/external/libnfc-nxp/src/
H A DphLibNfc_ndef_raw.c120 phLibNfc_Ndef_EOffset_t Offset,
233 gpphLibContext->ndef_cntx.NdefContinueRead =(uint8_t) ((phLibNfc_Ndef_EBegin==Offset) ?
118 phLibNfc_Ndef_Read( phLibNfc_Handle hRemoteDevice, phNfc_sData_t *psRd, phLibNfc_Ndef_EOffset_t Offset, pphLibNfc_RspCb_t pNdefRead_RspCb, void* pContext ) argument
/external/lldb/include/lldb/Expression/
H A DClangASTSource.h70 clang::CXXBaseSpecifier *GetExternalCXXBaseSpecifiers (uint64_t Offset) argument
/external/llvm/include/llvm/Bitcode/
H A DBitstreamWriter.h90 unsigned Offset = GetBufferOffset(); local
91 assert((Offset & 3) == 0 && "Not 32-bit aligned");
92 return Offset / 4;
/external/llvm/lib/CodeGen/AsmPrinter/
H A DEHStreamer.cpp80 int Offset = -1; local
84 FilterOffsets.push_back(Offset);
85 Offset -= getULEB128Size(*I);
501 // Offset of the landing pad, counted in 16-byte bundles relative to the
509 // Offset of the first associated action record, relative to the start of
565 // Offset of the call site relative to the previous call site, counted in
577 // Offset of the landing pad, counted in 16-byte bundles relative to the
590 // Offset of the first associated action record, relative to the start of
/external/llvm/lib/CodeGen/
H A DPrologEpilogInserter.cpp316 MFI->CreateFixedSpillStackObject(RC->getSize(), FixedSlot->Offset);
403 bool StackGrowsDown, int64_t &Offset,
407 Offset += MFI->getObjectSize(FrameIdx);
416 Offset = (Offset + Align - 1) / Align * Align;
419 DEBUG(dbgs() << "alloc FI(" << FrameIdx << ") at SP[" << -Offset << "]\n");
420 MFI->setObjectOffset(FrameIdx, -Offset); // Set the computed offset
422 DEBUG(dbgs() << "alloc FI(" << FrameIdx << ") at SP[" << Offset << "]\n"); local
423 MFI->setObjectOffset(FrameIdx, Offset);
424 Offset
402 AdjustStackOffset(MachineFrameInfo *MFI, int FrameIdx, bool StackGrowsDown, int64_t &Offset, unsigned &MaxAlign) argument
431 AssignProtectedObjSet(const StackObjSet &UnassignedObjs, SmallSet<int, 16> &ProtectedObjs, MachineFrameInfo *MFI, bool StackGrowsDown, int64_t &Offset, unsigned &MaxAlign) argument
465 int64_t Offset = LocalAreaOffset; local
792 MachineOperand &Offset = MI->getOperand(1); local
[all...]
/external/llvm/lib/DebugInfo/
H A DDWARFUnit.cpp34 uint32_t Offset = AddrOffsetSectionBase + Index * AddrSize; local
35 if (AddrOffsetSection.size() < Offset + AddrSize)
38 Result = DA.getAddress(&Offset);
46 uint32_t Offset = Index * ItemSize; local
47 if (StringOffsetSection.size() < Offset + ItemSize)
50 Result = DA.getU32(&Offset);
77 Offset = *offset_ptr;
84 *offset_ptr = Offset;
100 Offset = 0;
165 uint32_t DIEOffset = Offset
[all...]
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldImpl.h84 /// Offset - offset into the section.
85 uint64_t Offset; member in class:llvm::RelocationEntry
113 : SectionID(id), Offset(offset), RelType(type), Addend(addend),
118 : SectionID(id), Offset(offset), RelType(type), Addend(addend),
123 : SectionID(id), Offset(offset), RelType(type), Addend(addend),
129 : SectionID(id), Offset(offset), RelType(type),
140 uint64_t Offset; member in class:llvm::RelocationValueRef
143 RelocationValueRef() : SectionID(0), Offset(0), Addend(0),
147 return SectionID == Other.SectionID && Offset == Other.Offset
[all...]
/external/llvm/lib/IR/
H A DValue.cpp435 APInt &Offset) {
439 assert(Offset.getBitWidth() == DL.getPointerSizeInBits(cast<PointerType>(
452 APInt GEPOffset(Offset);
455 Offset = GEPOffset;
434 stripAndAccumulateInBoundsConstantOffsets(const DataLayout &DL, APInt &Offset) argument
/external/llvm/lib/Object/
H A DArchive.cpp337 uint32_t Offset = 0; local
339 Offset = *(reinterpret_cast<const support::ubig32_t*>(Offsets)
348 Offset = *(reinterpret_cast<const support::ulittle32_t *>(Offsets) +
376 Offset = *(reinterpret_cast<const support::ulittle32_t*>(Offsets)
380 const char *Loc = Parent->getData().begin() + Offset;
/external/llvm/lib/Target/AArch64/
H A DAArch64LoadStoreOptimizer.cpp361 static bool inBoundsForPair(bool IsUnscaled, int Offset, int OffsetStride) { argument
362 if (!IsUnscaled && (Offset > 63 || Offset < -64))
367 int ElemOffset = Offset / OffsetStride;
397 int Offset = FirstMI->getOperand(2).getImm(); local
403 // with Offset-1
408 if (!inBoundsForPair(IsUnscaled, Offset, OffsetStride))
439 if (BaseReg == MIBaseReg && ((Offset == MIOffset + OffsetStride) ||
440 (Offset + OffsetStride == MIOffset))) {
441 int MinOffset = Offset < MIOffse
606 isMatchingUpdateInsn(MachineInstr *MI, unsigned BaseReg, int Offset) argument
648 int Offset = MemMI->getOperand(2).getImm() * local
703 int Offset = MemMI->getOperand(2).getImm(); local
[all...]
/external/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64AsmBackend.cpp42 // Name Offset (bits) Size (bits) Flags
215 unsigned Offset = Fixup.getOffset(); local
216 assert(Offset + NumBytes <= DataSize && "Invalid fixup offset!");
221 Data[Offset + i] |= uint8_t((Value >> (i * 8)) & 0xff);
/external/llvm/lib/Target/Mips/
H A DMipsFastISel.cpp30 int64_t Offset; member in struct:__anon25212::Address
33 Address() : BaseType(RegBase), Offset(0) { Base.Reg = 0; }
190 EmitInstLoad(Opc, ResultReg, Addr.Base.Reg, Addr.Offset);
239 EmitInstStore(Opc, SrcReg, Addr.Base.Reg, Addr.Offset);
H A DMipsSEFrameLowering.cpp323 int64_t Offset = MFI->getObjectOffset(I->getFrameIdx()); local
338 MCCFIInstruction::createOffset(nullptr, Reg0, Offset));
343 MCCFIInstruction::createOffset(nullptr, Reg1, Offset + 4));
349 nullptr, MRI->getDwarfRegNum(Reg, 1), Offset));
370 int64_t Offset = MFI->getObjectOffset(MipsFI->getEhDataRegFI(I)); local
373 MCCFIInstruction::createOffset(nullptr, Reg, Offset));
/external/llvm/lib/Target/PowerPC/
H A DPPCMachineFunctionInfo.h159 void setVarArgsStackOffset(int Offset) { VarArgsStackOffset = Offset; } argument
/external/llvm/lib/Target/R600/
H A DAMDGPUInstrInfo.cpp280 int Offset = -1; local
306 Offset = std::max(Offset, (int)RegIndex);
309 return Offset + 1;
313 int Offset = 0; local
323 Offset = MF.getTarget().getFrameLowering()->getFrameIndexOffset(MF, -1);
325 return getIndirectIndexBegin(MF) + Offset;

Completed in 1618 milliseconds

1234567891011>>