Searched refs:End (Results 251 - 275 of 543) sorted by relevance

<<11121314151617181920>>

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCSection.h60 MCSymbol *End = nullptr; member in class:llvm::MCSection
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerInternal.h101 void PrintStats(const char *Where, const char *End = "\n", size_t Units = 0,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLowerSwitch.cpp106 BasicBlock *switchConvert(CaseItr Begin, CaseItr End,
249 LowerSwitch::switchConvert(CaseItr Begin, CaseItr End, ConstantInt *LowerBound, argument
255 unsigned Size = End - Begin;
275 std::vector<CaseRange> RHS(Begin + Mid, End);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonGenInsert.cpp1092 auto End = llvm::remove_if(LL, IsEmpty);
1093 if (End != LL.end())
1094 LL.erase(End, LL.end());
1182 auto End = llvm::remove_if(LL, IsCopy);
1183 if (End != LL.end())
1184 LL.erase(End, LL.end());
1292 IFMapType::iterator End = IFMap.end();
1294 for (IFMapType::iterator I = IFMap.begin(); I != End; ++I) {
1331 for (IFMapType::iterator I = IFMap.begin(); I != End; ++I) {
1383 for (IFMapType::iterator I = IFMap.begin(); I != End;
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.h123 const MCSymbol *End; member in struct:llvm::CodeViewDebug::LexicalBlock
155 const MCSymbol *End = nullptr; member in struct:llvm::CodeViewDebug::FunctionInfo
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ExpandImm.cpp55 for (CountMap::const_iterator Chunk = Counts.begin(), End = Counts.end();
56 Chunk != End; ++Chunk) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/
H A DMultiOnDiskHashTable.h106 auto Begin = Tables.begin(), End = Tables.end(); local
110 llvm::map_iterator(End, AsOnDiskTable()));
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/
H A DIRSymtab.h73 Word Begin, End; member in struct:llvm::irsymtab::storage::Module
355 *MEnd = Symbols.begin() + M.End;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DDepthFirstIterator.h75 void insert(IterT Begin, IterT End) { BaseSet::insert(Begin,End); } argument
106 inline df_iterator() = default; // End is when stack is empty
116 // End is when stack is empty
H A DDenseMap.h1175 pointer End = nullptr;
1182 : DebugEpochBase::HandleBase(&Epoch), Ptr(Pos), End(E) {
1200 : DebugEpochBase::HandleBase(I), Ptr(I.Ptr), End(I.End) {}
1248 assert(Ptr <= End);
1252 while (Ptr != End && (KeyInfoT::isEqual(Ptr->getFirst(), Empty) ||
1258 assert(Ptr >= End);
1262 while (Ptr != End && (KeyInfoT::isEqual(Ptr[-1].getFirst(), Empty) ||
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DLiveIntervals.h335 MachineBasicBlock::iterator End,
484 MachineBasicBlock::iterator End,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DSwiftErrorValueTracking.cpp261 BasicBlock::const_iterator End) {
266 for (auto It = Begin; It != End; ++It) {
259 preassignVRegs( MachineBasicBlock *MBB, BasicBlock::const_iterator Begin, BasicBlock::const_iterator End) argument
H A DReachingDefAnalysis.cpp265 for (auto Last = MBB->rbegin(), End = MBB->rend(); Last != End; ++Last) {
H A DLiveDebugVariables.cpp222 UserValue *End = L2;
223 while (End->next) {
224 End->leader = L1;
225 End = End->next;
227 End->leader = L1;
228 End->next = L1->next;
302 /// range of VNI. End points where VNI is no longer live are added to Kills.
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DExecutionUtils.cpp48 CtorDtorIterator::CtorDtorIterator(const GlobalVariable *GV, bool End) argument
51 I((InitList && End) ? InitList->getNumOperands() : 0) {
321 } // End namespace orc.
322 } // End namespace llvm.
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DBinaryStreamArray.h116 uint32_t End) const {
120 BinaryStreamRef NewStream = Stream.slice(0, End);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/
H A DMachObjectWriter.cpp980 uint64_t End; local
981 if (Data->End)
982 End = getSymbolAddress(*Data->End, Layout);
989 << " end: " << End << "(" << Data->End->getName() << ")"
990 << " size: " << End - Start << "\n");
992 W.write<uint16_t>(End - Start);
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Analysis/
H A DPathDiagnostic.h337 PathDiagnosticLocation Start, End; member in class:clang::ento::PathDiagnosticLocationPair
342 : Start(start), End(end) {}
345 const PathDiagnosticLocation &getEnd() const { return End; }
348 void setEnd(const PathDiagnosticLocation &L) { End = L; }
352 End.flatten();
357 End.Profile(ID);
783 assert(!Loc.isValid() && "End location already set!");
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsDelaySlotFiller.cpp126 bool update(const MachineInstr &MI, unsigned Begin, unsigned End);
259 /// This function searches range [Begin, End) for an instruction that can be
262 bool searchRange(MachineBasicBlock &MBB, IterTy Begin, IterTy End,
412 bool RegDefsUses::update(const MachineInstr &MI, unsigned Begin, unsigned End) { argument
416 for (unsigned I = Begin; I != End; ++I) {
690 IterTy End, RegDefsUses &RegDU,
693 for (IterTy I = Begin; I != End;) {
689 searchRange(MachineBasicBlock &MBB, IterTy Begin, IterTy End, RegDefsUses &RegDU, InspectMemInstr &IM, Iter Slot, IterTy &Filler) const argument
H A DMipsSEISelLowering.cpp2605 /// This function accounts for the possibility of jumping over the End iterator.
2610 typename SmallVectorImpl<ValType>::const_iterator End,
2614 while (I != End) {
2619 // Incrementing past End is undefined behaviour so we must increment one
2620 // step at a time and check for End at each step.
2621 for (unsigned n = 0; n < CheckStride && I != End; ++n, ++I)
2675 const auto &End = Indices.end(); local
2679 if (fitsRegularPattern<int>(Begin, 2, End, 0, 2))
2681 else if (fitsRegularPattern<int>(Begin, 2, End, Indices.size(), 2))
2688 if (fitsRegularPattern<int>(Begin + 1, 2, End,
2608 fitsRegularPattern(typename SmallVectorImpl<ValType>::const_iterator Begin, unsigned CheckStride, typename SmallVectorImpl<ValType>::const_iterator End, ValType ExpectedIndex, unsigned ExpectedIndexStride) argument
2721 const auto &End = Indices.end(); local
2768 const auto &End = Indices.end(); local
2816 const auto &End = Indices.end(); local
2864 const auto &End = Indices.end(); local
2907 const auto &End = Indices.end(); local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AVR/AsmParser/
H A DAVRAsmParser.cpp109 : Base(), Kind(k_Token), Tok(Tok), Start(S), End(S) {}
111 : Base(), Kind(k_Register), RegImm({Reg, nullptr}), Start(S), End(E) {}
113 : Base(), Kind(k_Immediate), RegImm({0, Imm}), Start(S), End(E) {}
115 : Base(), Kind(k_Memri), RegImm({Reg, Imm}), Start(S), End(E) {}
126 SMLoc Start, End; member in class:__anon2194::AVROperand
241 SMLoc getEndLoc() const { return End; }
/freebsd-11-stable/contrib/llvm-project/clang/lib/Format/
H A DWhitespaceManager.cpp234 AlignTokenSequence(unsigned Start, unsigned End, unsigned Column, F &&Matches, argument
252 for (unsigned i = Start; i != End; ++i) {
692 void WhitespaceManager::alignTrailingComments(unsigned Start, unsigned End, argument
694 for (unsigned i = Start; i != End; ++i) {
734 void WhitespaceManager::alignEscapedNewlines(unsigned Start, unsigned End, argument
736 for (unsigned i = Start; i < End; ++i) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/
H A DMILexer.cpp37 const char *End = nullptr; member in class:__anon1742::Cursor
44 End = Ptr + Str.size();
47 bool isEOF() const { return Ptr == End; }
49 char peek(int I = 0) const { return End - Ptr <= I ? 0 : Ptr[I]; }
53 StringRef remaining() const { return StringRef(Ptr, End - Ptr); }
56 assert(C.Ptr >= Ptr && C.Ptr <= End);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DRegBankSelect.cpp685 for (MachineBasicBlock::iterator MII = MBB->begin(), End = MBB->end();
686 MII != End;) {
704 if (MII != End) {
710 End = MBB->end();
805 for (MachineBasicBlock::iterator It = MI, End = MI.getParent()->end();
806 ++It != End;)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DVirtualFileSystem.cpp729 // End of the path.
1007 RedirectingFileSystem::RedirectingDirectoryEntry::iterator Current, End; member in class:llvm::vfs::VFSFromYamlDirIterImpl
1040 RedirectingFileSystem::RedirectingDirectoryEntry::iterator End,
1668 sys::path::const_iterator End = sys::path::end(Path); local
1671 lookupPath(Start, End, Root.get());
1680 sys::path::const_iterator End,
1702 if (Start == End) {
1715 lookupPath(Start, End, DirEntry.get());
2059 RedirectingFileSystem::RedirectingDirectoryEntry::iterator End,
2061 : Dir(_Path.str()), Current(Begin), End(En
1679 lookupPath(sys::path::const_iterator Start, sys::path::const_iterator End, RedirectingFileSystem::Entry *From) const argument
2056 VFSFromYamlDirIterImpl( const Twine &_Path, RedirectingFileSystem::RedirectingDirectoryEntry::iterator Begin, RedirectingFileSystem::RedirectingDirectoryEntry::iterator End, bool IterateExternalFS, FileSystem &ExternalFS, std::error_code &EC) argument
2140 vfs::directory_iterator End; local
[all...]

Completed in 386 milliseconds

<<11121314151617181920>>