Home
last modified time | relevance | path

Searched refs:BeginOffset (Results 1 – 10 of 10) sorted by relevance

/external/clang/lib/AST/
DRawCommentList.cpp126 unsigned BeginOffset; in RawComment() local
127 std::tie(BeginFileID, BeginOffset) = in RawComment()
129 if (BeginOffset != 0) { in RawComment()
134 (!Invalid && !onlyWhitespaceOnLineBefore(Buffer, BeginOffset)); in RawComment()
154 unsigned BeginOffset; in getRawTextSlow() local
157 std::tie(BeginFileID, BeginOffset) = in getRawTextSlow()
161 const unsigned Length = EndOffset - BeginOffset; in getRawTextSlow()
174 return StringRef(BufferStart + BeginOffset, Length); in getRawTextSlow()
/external/llvm/lib/DebugInfo/DWARF/
DDWARFDebugAbbrev.cpp28 const uint32_t BeginOffset = *OffsetPtr; in extract() local
29 Offset = BeginOffset; in extract()
44 return BeginOffset != *OffsetPtr; in extract()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/DWARF/
DDWARFDebugAbbrev.cpp32 const uint32_t BeginOffset = *OffsetPtr; in extract() local
33 Offset = BeginOffset; in extract()
48 return BeginOffset != *OffsetPtr; in extract()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/CodeView/
DCodeViewRecordIO.h147 uint32_t BeginOffset; member
153 assert(CurrentOffset >= BeginOffset); in bytesRemaining()
155 uint32_t BytesUsed = CurrentOffset - BeginOffset; in bytesRemaining()
DLazyRandomTypeCollection.h90 void visitRange(TypeIndex Begin, uint32_t BeginOffset, TypeIndex End);
/external/llvm/lib/Transforms/Scalar/
DSROA.cpp122 uint64_t BeginOffset; member in __anon27ea43b30211::Slice
132 Slice() : BeginOffset(), EndOffset() {} in Slice()
133 Slice(uint64_t BeginOffset, uint64_t EndOffset, Use *U, bool IsSplittable) in Slice() argument
134 : BeginOffset(BeginOffset), EndOffset(EndOffset), in Slice()
137 uint64_t beginOffset() const { return BeginOffset; } in beginOffset()
326 uint64_t BeginOffset, EndOffset; member in llvm::sroa::Partition
342 uint64_t beginOffset() const { return BeginOffset; } in beginOffset()
353 assert(BeginOffset < EndOffset && "Partitions must span some bytes!"); in size()
354 return EndOffset - BeginOffset; in size()
476 P.BeginOffset = P.EndOffset; in advance()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
DSROA.cpp161 uint64_t BeginOffset = 0; member in __anon927cd10b0111::Slice
173 Slice(uint64_t BeginOffset, uint64_t EndOffset, Use *U, bool IsSplittable) in Slice() argument
174 : BeginOffset(BeginOffset), EndOffset(EndOffset), in Slice()
177 uint64_t beginOffset() const { return BeginOffset; } in beginOffset()
372 uint64_t BeginOffset, EndOffset; member in llvm::sroa::Partition
388 uint64_t beginOffset() const { return BeginOffset; } in beginOffset()
399 assert(BeginOffset < EndOffset && "Partitions must span some bytes!"); in size()
400 return EndOffset - BeginOffset; in size()
523 P.BeginOffset = P.EndOffset; in advance()
533 P.BeginOffset = P.EndOffset; in advance()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/CodeView/
DLazyRandomTypeCollection.cpp257 void LazyRandomTypeCollection::visitRange(TypeIndex Begin, uint32_t BeginOffset, in visitRange() argument
259 auto RI = Types.at(BeginOffset); in visitRange()
DCodeViewRecordIO.cpp22 Limit.BeginOffset = getCurrentOffset(); in beginRecord()
/external/clang/lib/StaticAnalyzer/Core/
DBugReporter.cpp2129 unsigned BeginOffset = SM.getFileOffset(ExpansionRange.getBegin()); in getLengthOnSingleLine() local
2131 StringRef Snippet = Buffer->getBuffer().slice(BeginOffset, EndOffset); in getLengthOnSingleLine()