Searched refs:End (Results 126 - 150 of 543) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/
H A DWasmObjectFile.cpp72 if (Ctx.Ptr == Ctx.End)
78 if (Ctx.Ptr + 4 > Ctx.End)
86 if (Ctx.Ptr + 4 > Ctx.End)
95 if (Ctx.Ptr + 8 > Ctx.End)
106 uint64_t Result = decodeULEB128(Ctx.Ptr, &Count, Ctx.End, &Error);
115 if (Ctx.Ptr + StringLen > Ctx.End)
126 uint64_t Result = decodeSLEB128(Ctx.Ptr, &Count, Ctx.End, &Error);
220 if (Ctx.Ptr + Size > Ctx.End)
227 SectionCtx.End = Ctx.Ptr + Size;
260 Ctx.End
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Refactoring/
H A DAtomicChange.cpp88 // [Start, End].
90 unsigned Start, unsigned End) {
94 auto EndPos = Code.find("\n", End);
120 int End = Start + R.getReplacementText().size(); local
127 --End;
131 violatesColumnLimit(Code, ColumnLimit, Start, End))
132 Ranges.emplace_back(Start, End - Start);
89 violatesColumnLimit(llvm::StringRef Code, unsigned ColumnLimit, unsigned Start, unsigned End) argument
/freebsd-11-stable/contrib/llvm-project/clang/tools/driver/
H A Ddriver.cpp194 const char *End = ::strchr(S, ' '); local
195 if (!End)
196 End = S + strlen(S);
197 if (End != S)
198 ApplyOneQAOverride(*OS, Args, std::string(S, End), SavedStrings);
199 S = End;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/
H A DCompilationDatabase.cpp328 std::vector<const char *>::iterator End = std::remove_if( local
332 End = std::remove_if(Args.begin(), End, MatchesAny(DiagClient.UnusedInputs));
335 assert(strcmp(*(End - 1), "-c") == 0);
336 --End;
338 Result = std::vector<std::string>(Args.begin() + 1, End);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerIOWindows.cpp253 const size_t End = FileName.size(); local
254 for(; Pos < End && !IsSeparator(FileName[Pos]); ++Pos)
263 const size_t End = FileName.size(); local
264 if (Pos >= End || IsSeparator(FileName[Pos]))
266 for(; Pos < End && !IsSeparator(FileName[Pos]); ++Pos)
268 if (Pos >= End)
H A DFuzzerUtilWindows.cpp172 const char *End = Cdata + DataLen - PattLen + 1; local
174 for (const char *It = Cdata; It < End; ++It)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/AsmParser/
H A DX86AsmParser.cpp875 InlineAsmIdentifierInfo &Info, SMLoc &End);
876 bool ParseIntelDotOperator(IntelExprStateMachine &SM, SMLoc &End);
881 bool &ParseError, SMLoc &End);
883 SMLoc End);
884 bool ParseIntelExpression(IntelExprStateMachine &SM, SMLoc &End);
887 bool IsUnevaluatedOperand, SMLoc &End,
901 SMLoc End, unsigned Size, StringRef Identifier,
1410 unsigned Scale, SMLoc Start, SMLoc End, unsigned Size, StringRef Identifier,
1423 return X86Operand::CreateMem(getPointerWidth(), Disp, Start, End, Size,
1441 return X86Operand::CreateMem(getPointerWidth(), Disp, Start, End);
1408 CreateMemForInlineAsm( unsigned SegReg, const MCExpr *Disp, unsigned BaseReg, unsigned IndexReg, unsigned Scale, SMLoc Start, SMLoc End, unsigned Size, StringRef Identifier, const InlineAsmIdentifierInfo &Info) argument
1456 ParseIntelNamedOperator(StringRef Name, IntelExprStateMachine &SM, bool &ParseError, SMLoc &End) argument
1497 ParseIntelExpression(IntelExprStateMachine &SM, SMLoc &End) argument
1651 RewriteIntelExpression(IntelExprStateMachine &SM, SMLoc Start, SMLoc End) argument
1687 ParseIntelInlineAsmIdentifier( const MCExpr *&Val, StringRef &Identifier, InlineAsmIdentifierInfo &Info, bool IsUnevaluatedOperand, SMLoc &End, bool IsParsingOffsetOperator) argument
1780 ParseIntelDotOperator(IntelExprStateMachine &SM, SMLoc &End) argument
1813 ParseIntelOffsetOperator(const MCExpr *&Val, StringRef &ID, InlineAsmIdentifierInfo &Info, SMLoc &End) argument
1855 SMLoc Start = Tok.getLoc(), End; local
1906 SMLoc Start, End; local
2023 SMLoc Start = Parser.getTok().getLoc(), End; local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DInductiveRangeCheckElimination.cpp144 const SCEV *End = nullptr; member in class:__anon2683::InductiveRangeCheck
160 const SCEV *getEnd() const { return End; }
169 OS << " End: ";
170 End->print(OS);
188 const SCEV *End; member in class:__anon2683::InductiveRangeCheck::Range
191 Range(const SCEV *Begin, const SCEV *End) : Begin(Begin), End(End) { argument
192 assert(Begin->getType() == End->getType() && "ill-typed range!");
197 const SCEV *getEnd() const { return End; }
369 const SCEV *End = nullptr; local
1066 const SCEV *End = NoopOrExtend(SE.getSCEV(MainLoopStructure.LoopExitAt), RTy, local
1688 const SCEV *End = SE.getMulExpr(ClampedSubtract(REnd, M), EndIsNonNegative); local
[all...]
/freebsd-11-stable/stand/i386/btx/btxldr/
H A Dbtxldr.S100 call putstr # End message
154 call putstr # End message
215 call putstr # End message
277 testb %al,%al # End of string?
290 testb %al,%al # End of string?
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Option/
H A DOptTable.cpp345 const Info *End = OptionInfos.data() + OptionInfos.size(); local
349 Start = std::lower_bound(Start, End, Name.data());
359 for (; Start != End; ++Start) {
362 for (; Start != End; ++Start)
365 if (Start == End)
402 unsigned Index = 0, End = ArgArr.size(); local
403 while (Index < End) {
422 assert(Index >= End && "Unexpected parser error.");
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/CodeGen/
H A DSwiftCallingConv.h46 CharUnits End; member in struct:clang::CodeGen::swiftcall::SwiftAggLowering::StorageEntry
50 return End - Begin;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/MCTargetDesc/
H A DNVPTXTargetStreamer.cpp123 End = (I == NumChunks - 1)
126 It != End; ++It) {
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_ring_buffer.h28 uptr End = reinterpret_cast<uptr>(Ptr) + SizeInBytes(Size); local
29 RB->last_ = RB->next_ = reinterpret_cast<T*>(End - sizeof(T));
/freebsd-11-stable/contrib/llvm-project/clang/lib/Format/
H A DTokenAnalyzer.cpp46 SourceLocation End = Start.getLocWithOffset(Range.getLength()); local
47 CharRanges.push_back(CharSourceRange::getCharRange(Start, End));
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DLinePrinter.h75 void SetFilters(std::list<Regex> &List, Iter Begin, Iter End) { argument
77 for (; Begin != End; ++Begin)
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFVerifier.h68 auto End = Ranges.end(); local
69 auto Iter = std::upper_bound(Begin, End, R);
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DNestedNameSpecifier.cpp474 static void Append(char *Start, char *End, char *&Buffer, unsigned &BufferSize, argument
476 if (Start == End)
479 if (BufferSize + (End - Start) > BufferCapacity) {
483 (unsigned)(BufferSize + (End - Start)));
492 assert(Buffer && Start && End && End > Start && "Illegal memory buffer copy");
493 memcpy(Buffer + BufferSize, Start, End - Start);
494 BufferSize += End - Start;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Lex/
H A DLexer.cpp708 SourceLocation End; local
710 End = ActiveCommentLoc; // don't truncate a decl comment.
712 End = TheTok.getLocation();
714 return PreambleBounds(End.getRawEncoding() - FileLoc.getRawEncoding(),
852 SourceLocation End = Range.getEnd(); local
853 assert(Begin.isFileID() && End.isFileID());
855 End = Lexer::getLocForEndOfToken(End, 0, SM,LangOpts);
856 if (End.isInvalid())
868 if (!SM.isInFileID(End, FI
879 SourceLocation End = Range.getEnd(); local
1468 makeCharRange(Lexer &L, const char *Begin, const char *End) argument
2941 const char *End = findPlaceholderEnd(CurPtr + 1, BufferEnd); local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DSplitKit.cpp729 SlotIndex End = LIS.getMBBEndIdx(&MBB); local
730 SlotIndex Last = End.getPrevSlot();
736 return End;
741 RegAssign.insert(VNI->def, End, OpenIdx);
751 void SplitEditor::useIntv(SlotIndex Start, SlotIndex End) { argument
753 LLVM_DEBUG(dbgs() << " useIntv [" << Start << ';' << End << "):"); local
754 RegAssign.insert(Start, End, OpenIdx);
827 void SplitEditor::overlapIntv(SlotIndex Start, SlotIndex End) { argument
830 assert(ParentVNI == Edit->getParent().getVNInfoBefore(End) &&
832 assert(LIS.getMBBFromIndex(Start) == LIS.getMBBFromIndex(End)
838 LLVM_DEBUG(dbgs() << " overlapIntv [" << Start << ';' << End << "):"); local
1133 SlotIndex End = S.end; local
1245 SlotIndex End = LIS.getMBBEndIdx(P); local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DSafepointIRVerifier.cpp88 for (const_pred_iterator PredIt(BB), End(BB, true); PredIt != End; ++PredIt) {
117 for (const_pred_iterator PredIt(BB), End(BB, true); PredIt != End; ++PredIt) {
275 // Debugging aid -- prints a [Begin, End) range of values.
277 static void PrintValueSet(raw_ostream &OS, IteratorTy Begin, IteratorTy End) { argument
279 while (Begin != End) {
622 for (const_pred_iterator PredIt(BB), End(BB, true); PredIt != End; ++PredIt) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugAddr.cpp62 uint64_t End = HeaderOffset + getLength(); local
63 if (!Data.isValidOffsetForDataOfSize(HeaderOffset, End - HeaderOffset)) {
H A DDWARFListTable.cpp49 uint64_t End = HeaderOffset + FullLength;
77 if (End < HeaderOffset + getHeaderSize(Format) +
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp533 const Stmt *End = CF->getEndLocation().asStmt(); local
537 } else if (End && isa<CXXDefaultInitExpr>(End)) {
745 PathDiagnosticLocation End; local
748 End = PathDiagnosticLocation(S, SM, C.getCurrLocationContext());
754 << End.asLocation().getExpansionLineNumber();
758 << End.asLocation().getExpansionLineNumber();
783 os << ":' at line " << End.asLocation().getExpansionLineNumber();
789 End = ExecutionContinues(os, C);
791 return std::make_shared<PathDiagnosticControlFlowPiece>(Start, End,
800 const PathDiagnosticLocation &End = local
816 PathDiagnosticLocation Start, End; local
885 PathDiagnosticLocation End = ExecutionContinues(os, C); local
903 PathDiagnosticLocation End = ExecutionContinues(C); local
928 PathDiagnosticLocation End = ExecutionContinues(os, C); local
937 PathDiagnosticLocation End = ExecutionContinues(C); local
955 PathDiagnosticLocation End = ExecutionContinues(os, C); local
963 PathDiagnosticLocation End = ExecutionContinues(C); local
975 PathDiagnosticLocation End = ExecutionContinues(C); local
3056 SourceLocation End = Body ? Body->getSourceRange().getBegin() local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZMachineScheduler.h120 MachineBasicBlock::iterator End,
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_utils.h39 void WriteAll(const char *Begin, const char *End);

Completed in 772 milliseconds

1234567891011>>