Home
last modified time | relevance | path

Searched refs:Begin (Results 1 – 25 of 278) sorted by relevance

12345678910>>...12

/freebsd-12.1/contrib/ntp/lib/isc/win32/
H A Dlibisc.dsp24 # Begin Project
89 # Begin Target
96 # Begin Source File
100 # Begin Source File
104 # Begin Source File
108 # Begin Source File
112 # Begin Source File
116 # Begin Source File
120 # Begin Source File
124 # Begin Source File
[all …]
/freebsd-12.1/contrib/apr-util/test/
H A Dtestall.dsw26 Begin Project Dependency
41 Begin Project Dependency
44 Begin Project Dependency
59 Begin Project Dependency
62 Begin Project Dependency
77 Begin Project Dependency
80 Begin Project Dependency
95 Begin Project Dependency
98 Begin Project Dependency
113 Begin Project Dependency
[all …]
/freebsd-12.1/contrib/apr-util/
H A Daprutil.dsw26 Begin Project Dependency
29 Begin Project Dependency
44 Begin Project Dependency
47 Begin Project Dependency
62 Begin Project Dependency
65 Begin Project Dependency
80 Begin Project Dependency
83 Begin Project Dependency
98 Begin Project Dependency
101 Begin Project Dependency
[all …]
/freebsd-12.1/contrib/apr/
H A Dapr.dsp28 # Begin Project
178 # Begin Target
192 # Begin Source File
197 # Begin Group "dso"
200 # Begin Source File
208 # Begin Source File
217 # Begin Source File
221 # Begin Source File
225 # Begin Source File
229 # Begin Source File
[all …]
H A Dlibapr.dsp28 # Begin Project
230 # Begin Target
244 # Begin Source File
249 # Begin Group "dso"
252 # Begin Source File
260 # Begin Source File
268 # Begin Source File
272 # Begin Source File
276 # Begin Source File
280 # Begin Source File
[all …]
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Analysis/Support/
H A DBumpVector.h61 T *Begin = nullptr; variable
110 assert(Begin + idx < End);
111 return Begin[idx];
114 assert(Begin + idx < End);
115 return Begin[idx];
147 End = Begin; in clear()
152 return pointer(Begin); in data()
183 ptrdiff_t D = I - Begin; in insert()
185 I = Begin + D; in insert()
237 if (Begin != End) { in grow()
[all …]
/freebsd-12.1/contrib/llvm/tools/lld/COFF/
H A DICF.cpp106 while (Begin < End) { in segregate()
119 for (size_t I = Begin; I < Mid; ++I) in segregate()
126 Begin = Mid; in segregate()
196 for (size_t I = Begin + 1; I < End; ++I) in findBoundary()
204 while (Begin < End) { in forEachClassRange()
206 Fn(Begin, Mid); in forEachClassRange()
207 Begin = Mid; in forEachClassRange()
290 forEachClass([&](size_t Begin, size_t End) { segregate(Begin, End, true); }); in run() argument
296 [&](size_t Begin, size_t End) { segregate(Begin, End, false); }); in run() argument
303 if (End - Begin == 1) in run()
[all …]
/freebsd-12.1/contrib/llvm/include/llvm/Support/
H A DParallel.h92 concurrency::parallel_for_each(Begin, End, Fn); in parallel_for_each()
97 concurrency::parallel_for(Begin, End, Fn); in parallel_for_each_n()
162 TG.spawn([=, &Fn] { std::for_each(Begin, Begin + TaskSize, Fn); }); in parallel_for_each()
163 Begin += TaskSize; in parallel_for_each()
165 std::for_each(Begin, End, Fn); in parallel_for_each()
170 ptrdiff_t TaskSize = (End - Begin) / 1024; in parallel_for_each_n()
175 IndexTy I = Begin; in parallel_for_each_n()
210 std::for_each(Begin, End, Fn); in for_each()
217 for (IndexTy I = Begin; I != End; ++I) in for_each_n()
234 detail::parallel_for_each(Begin, End, Fn); in for_each()
[all …]
H A DBranchProbability.h63 static void normalizeProbabilities(ProbabilityIter Begin,
188 void BranchProbability::normalizeProbabilities(ProbabilityIter Begin, in normalizeProbabilities() argument
190 if (Begin == End) in normalizeProbabilities()
194 uint64_t Sum = std::accumulate(Begin, End, uint64_t(0), in normalizeProbabilities()
211 std::replace_if(Begin, End, in normalizeProbabilities()
220 BranchProbability BP(1, std::distance(Begin, End)); in normalizeProbabilities()
221 std::fill(Begin, End, BP); in normalizeProbabilities()
225 for (auto I = Begin; I != End; ++I) in normalizeProbabilities()
/freebsd-12.1/contrib/llvm/tools/lld/ELF/
H A DICF.cpp206 while (Begin < End) { in segregate()
221 for (size_t I = Begin; I < Mid; ++I) in segregate()
228 Begin = Mid; in segregate()
370 for (size_t I = Begin + 1; I < End; ++I) in findBoundary()
384 while (Begin < End) { in forEachClassRange()
385 size_t Mid = findBoundary(Begin, End); in forEachClassRange()
386 Fn(Begin, Mid); in forEachClassRange()
387 Begin = Mid; in forEachClassRange()
477 forEachClass([&](size_t Begin, size_t End) { segregate(Begin, End, true); }); in run() argument
483 [&](size_t Begin, size_t End) { segregate(Begin, End, false); }); in run() argument
[all …]
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DASTVector.h39 T *Begin = nullptr;
55 ASTVector(ASTVector &&O) : Begin(O.Begin), End(O.End), Capacity(O.Capacity) { in ASTVector()
56 O.Begin = O.End = nullptr; in ASTVector()
70 swap(Begin, O.Begin);
113 assert(Begin + idx < End);
114 return Begin[idx];
118 return Begin[idx];
150 End = Begin; in clear()
155 return pointer(Begin); in data()
392 if (Begin != End) { in grow()
[all …]
/freebsd-12.1/contrib/llvm/lib/Target/AMDGPU/
H A DGCNIterativeScheduler.cpp67 auto BB = Begin->getParent(); in printRegion()
70 auto I = Begin; in printRegion()
96 const auto BB = Begin->getParent(); in printLivenessInfo()
126 printRegion(OS, R->Begin, R->End, LIS); in printSchedResult()
152 auto BB = R.Begin->getParent(); in BuildDAG()
190 auto BB = R.Begin->getParent(); in OverrideLegacyStrategy()
211 Rgn.Begin = Sch.RegionBegin; in schedule()
271 UPTracker.recede(*Begin); in getRegionPressure()
380 auto BB = R.Begin->getParent(); in scheduleRegion()
381 auto Top = R.Begin; in scheduleRegion()
[all …]
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Frontend/
H A DCommandLineSourceLoc.h59 std::pair<unsigned, unsigned> Begin; member
88 auto Begin = ParsedSourceLocation::FromString(RangeSplit.first); in fromString() local
89 if (Begin.FileName.empty()) in fromString()
92 EndLine = Begin.Line; in fromString()
93 EndColumn = Begin.Column; in fromString()
95 return ParsedSourceRange{std::move(Begin.FileName), in fromString()
96 {Begin.Line, Begin.Column}, in fromString()
/freebsd-12.1/contrib/compiler-rt/lib/xray/
H A Dxray_utils.cc49 void LogWriter::WriteAll(const char *Begin, const char *End) XRAY_NEVER_INSTRUMENT { in WriteAll() argument
50 if (Begin == End) in WriteAll()
52 auto TotalBytes = std::distance(Begin, End); in WriteAll()
67 zx_status_t Status = _zx_vmo_write(Vmo, Begin, Offset, TotalBytes); in WriteAll()
136 void LogWriter::WriteAll(const char *Begin, const char *End) XRAY_NEVER_INSTRUMENT {
137 if (Begin == End)
139 auto TotalBytes = std::distance(Begin, End);
140 while (auto Written = write(Fd, Begin, TotalBytes)) {
150 Begin += Written;
/freebsd-12.1/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/begin/
H A Dtst.multibegin.d.out1 Begin fired first
2 Begin fired second
3 Begin fired third
4 Begin fired fourth
5 Begin fired fifth
/freebsd-12.1/contrib/llvm/lib/Target/WebAssembly/
H A DWebAssemblyCFGStackify.cpp172 BeginToEnd[Begin] = End; in registerScope()
173 EndToBegin[End] = Begin; in registerScope()
179 registerScope(Begin, End); in registerTryScope()
180 TryToEHPad[Begin] = EHPad; in registerTryScope()
181 EHPadToTry[EHPad] = Begin; in registerTryScope()
191 return BeginToBottom[Begin]; in getBottom()
202 return BeginToBottom[Begin]; in getBottom()
304 MachineInstr *Begin = in placeBlockMarker() local
339 registerScope(Begin, End); in placeBlockMarker()
407 registerScope(Begin, End); in placeLoopMarker()
[all …]
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaFixItUtils.cpp60 const SourceLocation Begin = FullExpr->getSourceRange().getBegin(); in tryToFixConversion() local
99 S, Begin, VK_LValue); in tryToFixConversion()
110 CharSourceRange::getTokenRange(Begin, Begin))); in tryToFixConversion()
113 Hints.push_back(FixItHint::CreateInsertion(Begin, "*(")); in tryToFixConversion()
116 Hints.push_back(FixItHint::CreateInsertion(Begin, "*")); in tryToFixConversion()
137 S, Begin, VK_RValue); in tryToFixConversion()
144 CharSourceRange::getTokenRange(Begin, Begin))); in tryToFixConversion()
147 Hints.push_back(FixItHint::CreateInsertion(Begin, "&(")); in tryToFixConversion()
150 Hints.push_back(FixItHint::CreateInsertion(Begin, "&")); in tryToFixConversion()
/freebsd-12.1/contrib/llvm/lib/DebugInfo/CodeView/
H A DLazyRandomTypeCollection.cpp231 auto Begin = Types.begin(); in fullScanForType() local
244 Begin = Types.at(Offset); in fullScanForType()
245 ++Begin; in fullScanForType()
249 while (Begin != End) { in fullScanForType()
253 Records[Idx].Type = *Begin; in fullScanForType()
254 Records[Idx].Offset = Begin.offset(); in fullScanForType()
256 ++Begin; in fullScanForType()
271 while (Begin != End) { in visitRange()
272 LargestTypeIndex = std::max(LargestTypeIndex, Begin); in visitRange()
273 auto Idx = Begin.toArrayIndex(); in visitRange()
[all …]
/freebsd-12.1/contrib/llvm/include/llvm/ADT/
H A DStringExtras.h302 if (Begin == End) in join_impl()
305 S += (*Begin); in join_impl()
306 while (++Begin != End) { in join_impl()
308 S += (*Begin); in join_impl()
317 if (Begin == End) in join_impl()
321 for (IteratorT I = Begin; I != End; ++I) in join_impl()
322 Len += (*Begin).size(); in join_impl()
324 S += (*Begin); in join_impl()
325 while (++Begin != End) { in join_impl()
327 S += (*Begin); in join_impl()
[all …]
/freebsd-12.1/contrib/llvm/lib/CodeGen/
H A DSlotIndexes.cpp184 MachineBasicBlock::iterator Begin, in repairIndexesInRange() argument
190 while (Begin != MBB->begin() && !hasIndex(*Begin)) in repairIndexesInRange()
191 --Begin; in repairIndexesInRange()
195 bool includeStart = (Begin == MBB->begin()); in repairIndexesInRange()
200 startIdx = getInstructionIndex(*Begin); in repairIndexesInRange()
216 while (ListI != ListB || MBBI != Begin || (includeStart && !pastStart)) { in repairIndexesInRange()
223 bool MBBIAtBegin = MBBI == Begin && (!includeStart || pastStart); in repairIndexesInRange()
227 if (MBBI != Begin) in repairIndexesInRange()
232 if (MBBI != Begin) in repairIndexesInRange()
245 for (MachineBasicBlock::iterator I = End; I != Begin;) { in repairIndexesInRange()
/freebsd-12.1/contrib/llvm/include/llvm/MCA/
H A DInstruction.h265 unsigned Begin; // Inclusive. variable
271 : Begin(StartCycle), End(EndCycle), Reserved(IsReserved) {} in Begin() function
274 bool startsAfter(const CycleSegment &CS) const { return End <= CS.Begin; } in startsAfter()
275 bool endsBefore(const CycleSegment &CS) const { return Begin >= CS.End; } in endsBefore()
279 bool isExecuting() const { return Begin == 0 && End != 0; } in isExecuting()
282 return Begin < Other.Begin;
285 if (Begin)
286 Begin--;
292 bool isValid() const { return Begin <= End; } in isValid()
293 unsigned size() const { return End - Begin; }; in size()
[all …]
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DConstantInitBuilder.cpp167 Parent->getGEPIndicesTo(indices, Begin); in getGEPIndicesTo()
175 assert(position >= Begin); in getGEPIndicesTo()
215 if (cacheEnd < Begin) { in getOffsetFromGlobalTo()
218 cacheEnd = Begin; in getOffsetFromGlobalTo()
219 offset = Parent->getOffsetFromGlobalTo(Begin); in getOffsetFromGlobalTo()
249 assert((Begin < buffer.size() || in finishArray()
250 (Begin == buffer.size() && eltTy)) in finishArray()
252 auto elts = llvm::makeArrayRef(buffer).slice(Begin); in finishArray()
256 buffer.erase(buffer.begin() + Begin, buffer.end()); in finishArray()
265 auto elts = llvm::makeArrayRef(buffer).slice(Begin); in finishStruct()
[all …]
/freebsd-12.1/contrib/llvm/include/llvm/CodeGen/
H A DFaultMaps.h174 const uint8_t *Begin = P + FunctionFaultInfosOffset + in getFunctionFaultInfoAt() local
176 return FunctionFaultInfoAccessor(Begin, E); in getFunctionFaultInfoAt()
183 const uint8_t *Begin = P + MySize; in getNextFunctionInfo() local
184 assert(Begin < E && "out of bounds!"); in getNextFunctionInfo()
185 return FunctionInfoAccessor(Begin, E); in getNextFunctionInfo()
189 explicit FaultMapParser(const uint8_t *Begin, const uint8_t *End) in FaultMapParser() argument
190 : P(Begin), E(End) {} in FaultMapParser()
203 const uint8_t *Begin = P + FunctionInfosOffset; in getFirstFunctionInfo() local
204 return FunctionInfoAccessor(Begin, E); in getFirstFunctionInfo()
/freebsd-12.1/contrib/googletest/googletest/xcode/Samples/FrameworkSample/WidgetFramework.xcodeproj/
H A Dproject.pbxproj9 /* Begin PBXAggregateTarget section */
36 /* Begin PBXBuildFile section */
45 /* Begin PBXContainerItemProxy section */
76 /* Begin PBXFileReference section */
108 /* Begin PBXGroup section */
175 /* Begin PBXHeadersBuildPhase section */
186 /* Begin PBXNativeTarget section */
226 /* Begin PBXProject section */
255 /* Begin PBXRezBuildPhase section */
300 /* Begin PBXTargetDependency section */
[all …]
/freebsd-12.1/contrib/llvm/tools/clang/lib/Frontend/
H A DDiagnosticRenderer.cpp368 SourceLocation Begin = Range.getBegin(), End = Range.getEnd(); in mapDiagnosticRanges() local
371 FileID BeginFileID = SM->getFileID(Begin); in mapDiagnosticRanges()
378 while (Begin.isMacroID() && BeginFileID != EndFileID) { in mapDiagnosticRanges()
379 BeginLocsMap[BeginFileID] = Begin; in mapDiagnosticRanges()
380 Begin = SM->getImmediateExpansionRange(Begin).getBegin(); in mapDiagnosticRanges()
381 BeginFileID = SM->getFileID(Begin); in mapDiagnosticRanges()
393 Begin = BeginLocsMap[EndFileID]; in mapDiagnosticRanges()
401 Begin = retrieveMacroLocation(Begin, BeginFileID, CaretLocFileID, in mapDiagnosticRanges()
407 if (Begin.isInvalid() || End.isInvalid()) continue; in mapDiagnosticRanges()
410 Begin = SM->getSpellingLoc(Begin); in mapDiagnosticRanges()
[all …]

12345678910>>...12