Searched refs:Start (Results 1 - 25 of 331) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DSafeStackLayout.cpp32 OS << " " << i << ": [" << Regions[i].Start << ", " << Regions[i].End
58 unsigned Start = AdjustStackOffset(LastRegionEnd, Obj.Size, Obj.Alignment); local
59 unsigned End = Start + Obj.Size;
60 Regions.emplace_back(Start, End, Obj.Range);
68 unsigned Start = AdjustStackOffset(0, Obj.Size, Obj.Alignment); local
69 unsigned End = Start + Obj.Size;
70 LLVM_DEBUG(dbgs() << " First candidate: " << Start << " .. " << End << "\n");
72 LLVM_DEBUG(dbgs() << " Examining region: " << R.Start << " .. " << R.End
74 assert(End >= R.Start);
75 if (Start >
98 << Start << "\\n"); local
[all...]
H A DSafeStackLayout.h28 unsigned Start; member in struct:llvm::safestack::StackLayout::StackRegion
32 StackRegion(unsigned Start, unsigned End, argument
34 : Start(Start), End(End), Range(Range) {}
37 /// The list of current stack regions, sorted by StackRegion::Start.
H A DInterferenceCache.cpp136 SlotIndex Start, Stop; local
137 std::tie(Start, Stop) = Indexes->getMBBRange(MBBNum);
140 if (PrevPos != Start) {
141 if (!PrevPos.isValid() || Start < PrevPos) {
144 RUI.VirtI.find(Start);
145 RUI.FixedI = RUI.Fixed->find(Start);
150 RUI.VirtI.advanceTo(Start);
152 RUI.FixedI = RUI.Fixed->advanceTo(RUI.FixedI, Start);
155 PrevPos = Start;
215 std::tie(Start, Sto
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DFormatStringParsing.h45 const char *Start, const char *&Beg,
50 const char *Start, const char *&Beg, const char *E,
54 FormatSpecifier &CS, const char *Start,
74 const char *Start; member in class:clang::analyze_format_string::SpecifierResult
78 : Start(nullptr), Stop(stop) {}
81 : FS(fs), Start(start), Stop(false) {}
83 const char *getStart() const { return Start; }
85 bool hasValue() const { return Start != nullptr; }
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DSMLoc.h50 SMLoc Start, End; member in class:llvm::SMRange
54 SMRange(SMLoc St, SMLoc En) : Start(St), End(En) {
55 assert(Start.isValid() == End.isValid() &&
56 "Start and End should either both be valid or both be invalid!");
59 bool isValid() const { return Start.isValid(); }
H A DParallel.h83 RandomAccessIterator medianOf3(RandomAccessIterator Start, argument
86 RandomAccessIterator Mid = Start + (std::distance(Start, End) / 2);
87 return Comp(*Start, *(End - 1))
88 ? (Comp(*Mid, *(End - 1)) ? (Comp(*Start, *Mid) ? Mid : Start)
90 : (Comp(*Mid, *Start) ? (Comp(*(End - 1), *Mid) ? Mid : End - 1)
91 : Start);
95 void parallel_quick_sort(RandomAccessIterator Start, RandomAccessIterator End, argument
98 if (std::distance(Start, En
121 parallel_sort(RandomAccessIterator Start, RandomAccessIterator End, const Comparator &Comp) argument
175 sort(Policy policy, RandomAccessIterator Start, RandomAccessIterator End, const Comparator &Comp = Comparator()) argument
202 sort(parallel_execution_policy policy, RandomAccessIterator Start, RandomAccessIterator End, const Comparator &Comp = Comparator()) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/
H A DRange.h33 uint64_t Start; member in struct:llvm::gsym::AddressRange
35 AddressRange() : Start(0), End(0) {}
36 AddressRange(uint64_t S, uint64_t E) : Start(S), End(E) {}
37 uint64_t size() const { return End - Start; }
38 bool contains(uint64_t Addr) const { return Start <= Addr && Addr < End; }
40 return Start < R.End && R.Start < End;
44 return Start == R.Start && End == R.End;
50 return std::make_pair(Start, En
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DUse.cpp56 Use *Use::initTags(Use *const Start, Use *Stop) { argument
59 if (Start == Stop--)
60 return Start;
70 while (Start != Stop) {
83 return Start;
86 void Use::zap(Use *Start, const Use *Stop, bool del) { argument
87 while (Start != Stop)
90 ::operator delete(Start);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Refactoring/Rename/
H A DUSRFinder.cpp47 SourceLocation Start = Range.getBegin(); local
49 if (!Start.isValid() || !Start.isFileID() || !End.isValid() ||
50 !End.isFileID() || !isPointWithin(Start, End))
60 // Determines if the Point is within Start and End.
61 bool isPointWithin(const SourceLocation Start, const SourceLocation End) { argument
63 return Point == Start || Point == End ||
64 (Context.getSourceManager().isBeforeInTranslationUnit(Start,
/freebsd-11-stable/sys/contrib/dev/acpica/compiler/
H A Ddtio.c231 char *Start; local
247 Start = String;
252 while ((Start <= End) && ((*Start == ' ') || (*Start == '\t')))
254 Start++;
259 while (End >= Start)
277 if (*Start == '\"')
279 Start++;
288 Length = ACPI_PTR_DIFF (End, Start)
359 char *Start; local
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Rewrite/Core/
H A DRewriteRope.h64 RopePiece(llvm::IntrusiveRefCntPtr<RopeRefCountString> Str, unsigned Start, argument
66 : StrData(std::move(Str)), StartOffs(Start), EndOffs(End) {}
190 void assign(const char *Start, const char *End) { argument
192 if (Start != End)
193 Chunks.insert(0, MakeRopeString(Start, End));
196 void insert(unsigned Offset, const char *Start, const char *End) { argument
198 if (Start == End) return;
199 Chunks.insert(Offset, MakeRopeString(Start, End));
209 RopePiece MakeRopeString(const char *Start, const char *End);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/
H A DRange.cpp26 while (It2 != Ranges.end() && It2->Start < Range.End)
32 if (It != Ranges.begin() && Range.Start < It[-1].End)
41 [=](const AddressRange &R) { return R.Start <= Addr; });
50 [=](const AddressRange &R) { return R.Start <= Range.Start; });
57 return OS << '[' << HEX64(R.Start) << " - " << HEX64(R.End) << ")";
71 assert(Start >= BaseAddr);
72 O.writeULEB(Start - BaseAddr);
81 Start = StartAddr;
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-cxxfilt/
H A Dllvm-cxxfilt.cpp116 auto Start = std::find_if(Head, Source.end(), IsLegalChar); local
117 if (Start != Head)
118 OutFragments.push_back({"", Source.slice(0, Start - Head)});
121 while (Start != Source.end()) {
122 Start = std::find_if(Start, Source.end(), IsLegalChar);
123 auto End = std::find_if_not(Start, Source.end(), IsLegalChar);
125 OutFragments.push_back({Source.slice(Start - Head, End - Head),
127 Start = DEnd;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfExpression.h37 DIExpression::expr_op_iterator Start, End; member in class:llvm::DIExpressionCursor
42 assert(Start == End);
45 Start = Expr->expr_op_begin();
50 : Start(Expr.begin()), End(Expr.end()) {}
56 if (Start == End)
58 return *(Start++);
62 void consume(unsigned N) { std::advance(Start, N); }
66 if (Start == End)
68 return *(Start);
73 if (Start
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/
H A DVersion.cpp48 size_t Start = URL.find("cfe/");
49 if (Start != StringRef::npos)
50 URL = URL.substr(Start + 4);
66 size_t Start = URL.find("llvm/"); local
67 if (Start != StringRef::npos)
68 URL = URL.substr(Start);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/XRay/
H A DBlockPrinter.h25 Start, member in class:llvm::xray::BlockPrinter::State
36 State CurrentState = State::Start;
55 void reset() { CurrentState = State::Start; }
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/Interp/
H A DDisasm.cpp48 for (CodePtr Start = getCodeBegin(), PC = Start; PC != getCodeEnd();) {
49 size_t Addr = PC - Start;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Unix/
H A DMemory.inc114 uintptr_t Start = NearBlock ? reinterpret_cast<uintptr_t>(NearBlock->base()) +
119 if (Start && Start % PageSize)
120 Start += PageSize - Start % PageSize;
123 void *Addr = ::mmap(reinterpret_cast<void *>(Start), PageSize*NumPages, Protect,
183 uintptr_t Start = alignAddr((const uint8_t *)M.Address - PageSize.value() + 1, PageSize);
193 int Result = ::mprotect((void *)Start, End - Start, Protect | PROT_READ);
202 int Result = ::mprotect((void *)Start, En
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMLowOverheadLoops.cpp127 MachineInstr *Start = nullptr; member in struct:__anon2165::LowOverheadLoop
163 // value, or if it's going to be equivalent to the operand to Start.
172 return Start && Dec && End;
181 VCTP->getOperand(1) : Start->getOperand(0);
185 bool IsDo = Start->getOpcode() == ARM::t2DoLoopStart;
193 if (Start) dbgs() << "ARM Loops: Found Loop Start: " << *Start;
199 else if (!(Start && Dec && End))
266 if (Start
764 MachineInstr *Start = LoLoop.Start; local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DStringExtras.cpp40 StringRef::size_type Start = Source.find_first_not_of(Delimiters); local
43 StringRef::size_type End = Source.find_first_of(Delimiters, Start);
45 return std::make_pair(Source.slice(Start, End), Source.substr(End));
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DReachableCode.h58 /// ScanReachableFromBlock - Mark all blocks reachable from Start.
60 unsigned ScanReachableFromBlock(const CFGBlock *Start,
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSetVector.h59 SetVector(It Start, It End) { argument
60 insert(Start, End);
150 void insert(It Start, It End) {
151 for (; Start != End; ++Start)
152 if (set_.insert(*Start).second)
153 vector_.push_back(*Start);
304 SmallSetVector(It Start, It End) {
305 this->insert(Start, End);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugRnglists.cpp164 auto Start = LookupPooledAddress(RLE.Value0);
165 if (!Start)
166 Start = {0, -1ULL};
167 E.SectionIndex = Start->SectionIndex;
168 E.LowPC = Start->Address;
244 uint64_t Start = 0;
246 Start = SA->Address;
247 DWARFAddressRange(Start, Start + Value1).dump(OS, AddrSize, DumpOpts);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerTracePC.cpp38 void TracePC::HandleInline8bitCountersInit(uint8_t *Start, uint8_t *Stop) { argument
39 if (Start == Stop) return;
41 Modules[NumModules - 1].Start() == Start)
46 uint8_t *AlignedStart = RoundUpByPage(Start);
50 bool NeedFirst = Start < AlignedStart || !NumFullPages;
58 M.Regions[R++] = {Start, std::min(Stop, AlignedStart), true, false};
64 assert(M.Size() == (size_t)(Stop - Start));
66 assert(M.Start() == Start);
[all...]
/freebsd-11-stable/usr.bin/find/
H A Dgetdate.y623 DSTcorrect(time_t Start, time_t Future)
628 StartDay = (localtime(&Start)->tm_hour + 1) % 24;
630 return (Future - Start) + (StartDay - FutureDay) * 60L * 60L;
635 RelativeDate(time_t Start, time_t DayOrdinal, time_t DayNumber)
640 now = Start;
644 return DSTcorrect(Start, now);
649 RelativeMonth(time_t Start, time_t RelMonth)
657 tm = localtime(&Start);
661 return DSTcorrect(Start,
854 time_t Start;
[all...]

Completed in 163 milliseconds

1234567891011>>