Searched defs:BeginOffset (Results 1 - 3 of 3) sorted by relevance

/external/clang/lib/AST/
H A DRawCommentList.cpp113 unsigned BeginOffset; local
116 llvm::tie(BeginFileID, BeginOffset) =
121 const unsigned Length = EndOffset - BeginOffset;
134 return StringRef(BufferStart + BeginOffset, Length);
/external/llvm/lib/Object/
H A DMachOObjectFile.cpp176 uint64_t BeginOffset; local
182 BeginOffset = Entry->Value;
201 if (Entry->SectionIndex == SectionIndex && Entry->Value > BeginOffset)
210 BeginOffset = Entry->Value;
229 if (Entry->SectionIndex == SectionIndex && Entry->Value > BeginOffset)
242 Result = EndOffset - BeginOffset;
/external/llvm/lib/Transforms/Scalar/
H A DSROA.cpp75 uint64_t BeginOffset; member in struct:__anon9961::ByteRange
80 ByteRange() : BeginOffset(), EndOffset() {}
81 ByteRange(uint64_t BeginOffset, uint64_t EndOffset) argument
82 : BeginOffset(BeginOffset), EndOffset(EndOffset) {}
91 if (BeginOffset < RHS.BeginOffset) return true;
92 if (BeginOffset > RHS.BeginOffset) return false;
99 return LHS.BeginOffset < RHSOffse
144 Partition(uint64_t BeginOffset, uint64_t EndOffset, bool IsSplittable) argument
162 PartitionUse(uint64_t BeginOffset, uint64_t EndOffset, Use *U, bool IsSplit) argument
472 uint64_t BeginOffset = Offset.getZExtValue(); local
826 PartitionUse NewPU(std::max(I->BeginOffset, BeginOffset), local
[all...]

Completed in 249 milliseconds