Home
last modified time | relevance | path

Searched refs:Point (Results 1 – 25 of 305) sorted by relevance

12345678910>>...13

/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.pt/
H A Ddefarg5.C4 class Point {
6 Point (Point<dim> &);
7 Point<dim> & operator = (Point<dim> &);
15 void foo (Point<dim> p = Point<dim>());
21 void bar<2>::foo (Point<2> p) { in foo()
23 Point<dim> q = p; in foo()
/openbsd-src/gnu/llvm/clang/lib/Tooling/Refactoring/Rename/
H A DUSRFinder.cpp37 explicit NamedDeclOccurrenceFindingVisitor(const SourceLocation Point, in NamedDeclOccurrenceFindingVisitor() argument
41 Point(Point), Context(Context) {} in NamedDeclOccurrenceFindingVisitor()
64 return Point == Start || Point == End || in isPointWithin()
66 Point) && in isPointWithin()
67 Context.getSourceManager().isBeforeInTranslationUnit(Point, End)); in isPointWithin()
71 const SourceLocation Point; // The location to find the NamedDecl. member in clang::tooling::__anon905ca0f80111::NamedDeclOccurrenceFindingVisitor
78 const SourceLocation Point) { in getNamedDeclAt() argument
80 NamedDeclOccurrenceFindingVisitor Visitor(Point, Context); in getNamedDeclAt()
89 SM.isBeforeInTranslationUnit(StartLoc, Point) != in getNamedDeclAt()
90 SM.isBeforeInTranslationUnit(EndLoc, Point)) in getNamedDeclAt()
H A DUSRFindingAction.cpp250 const SourceLocation Point = SourceMgr.getLocForStartOfFile(MainFileID) in FindSymbol() local
253 ? getNamedDeclAt(Context, Point) in FindSymbol()
258 FullSourceLoc FullLoc(Point, SourceMgr); in FindSymbol()
262 Engine.Report(Point, CouldNotFindSymbolAt) << SymbolOffset; in FindSymbol()
/openbsd-src/gnu/llvm/llvm/include/llvm/ADT/
H A DIntervalTree.h222 bool left(const PointType &Point) const { return left() <= Point; } in left() argument
226 bool right(const PointType &Point) const { return Point <= right(); } in right() argument
230 bool contains(const PointType &Point) const { in contains() argument
231 return left(Point) && right(Point); in contains()
280 IntervalNode(PointType Point, unsigned Start) in IntervalNode() argument
281 : MiddlePoint(Point), BucketIntervalsStart(Start) {} in IntervalNode()
466 PointType Point; variable
477 if (Point == Node->middle()) { in initNode()
485 if (Point < Node->middle()) { in initNode()
489 if (Node->size() && (*AscendingBuckets)[Node->start()]->left(Point)) { in initNode()
[all …]
/openbsd-src/gnu/llvm/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DRangedConstraintManager.h35 Range(const llvm::APSInt &Point) : Range(Point, Point) {} in Range() argument
37 bool Includes(const llvm::APSInt &Point) const { in Includes() argument
38 return From() <= Point && Point <= To(); in Includes()
142 RangeSet add(RangeSet Original, const llvm::APSInt &Point);
160 RangeSet unite(RangeSet Original, llvm::APSInt Point);
205 RangeSet intersect(RangeSet What, llvm::APSInt Point);
211 RangeSet deletePoint(RangeSet From, const llvm::APSInt &Point);
318 RangeSet(Factory &F, const llvm::APSInt &Point) in RangeSet() argument
319 : RangeSet(F.getRangeSet(Point)) {} in RangeSet()
353 bool contains(llvm::APSInt Point) const { return containsImpl(Point); } in contains() argument
[all …]
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/
H A D950607-2.c3 } Point; typedef
6 f (Point basePt, Point pt1, Point pt2) in f()
24 Point b, p1, p2; in main()
H A D20000808-1.c3 } Point; typedef
12 Point p0, p1, p2, p3, p4, p5; in f()
26 Point p0, p1, p2, p3, p4, p5; in foo()
/openbsd-src/gnu/llvm/llvm/lib/Target/RISCV/
H A DRISCVScheduleV.td228 // 12. Vector Fixed-Point Arithmetic Instructions
243 // 12.5. Vector Narrowing Fixed-Point Clip Instructions
248 // 13. Vector Floating-Point Instructions
249 // 13.2. Vector Single-Width Floating-Point Add/Subtract Instructions
252 // 13.3. Vector Widening Floating-Point Add/Subtract Instructions
255 // 13.4. Vector Single-Width Floating-Point Multiply/Divide Instructions
260 // 13.5. Vector Widening Floating-Point Multiply
263 // 13.6. Vector Single-Width Floating-Point Fused Multiply-Add Instructions
266 // 13.7. Vector Widening Floating-Point Fused Multiply-Add Instructions
269 // 13.8. Vector Floating-Point Square-Root Instruction
[all …]
H A DRISCVFeatures.td39 "'F' (Single-Precision Floating-Point)">;
42 "'F' (Single-Precision Floating-Point)">;
46 "'D' (Double-Precision Floating-Point)",
50 "'D' (Double-Precision Floating-Point)">;
76 "'Zfhmin' (Half-Precision Floating-Point Minimal)",
80 "'Zfhmin' (Half-Precision Floating-Point Minimal)">;
84 "'Zfh' (Half-Precision Floating-Point)",
88 "'Zfh' (Half-Precision Floating-Point)">;
94 "'Zfh' (Half-Precision Floating-Point) or "
95 "'Zfhmin' (Half-Precision Floating-Point Minimal)">;
[all …]
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.law/
H A Dcvt17.C11 class Point {};
12 class Line_Segment{ public: Line_Segment(const Point&){} }; in Line_Segment() argument
13 class Node { public: Point Location(){ Point p; return p; } }; in Location()
/openbsd-src/gnu/llvm/llvm/tools/llvm-exegesis/lib/
H A DAnalysis.cpp129 const InstructionBenchmark &Point = Clustering_.getPoints()[PointId]; in printInstructionRowCsv() local
132 writeSnippet<EscapeTag, kEscapeCsv>(OS, Point.AssembledSnippet, "; "); in printInstructionRowCsv()
134 writeEscaped<kEscapeCsv>(OS, Point.Key.Config); in printInstructionRowCsv()
136 assert(!Point.Key.Instructions.empty()); in printInstructionRowCsv()
137 const MCInst &MCI = Point.keyInstruction(); in printInstructionRowCsv()
148 for (const auto &Measurement : Point.Measurements) { in printInstructionRowCsv()
218 const InstructionBenchmark &Point = Points[PointId]; in makePointsPerSchedClass() local
219 if (!Point.Error.empty()) in makePointsPerSchedClass()
221 assert(!Point.Key.Instructions.empty()); in makePointsPerSchedClass()
224 const MCInst &MCI = Point.keyInstruction(); in makePointsPerSchedClass()
[all …]
H A DClustering.cpp104 const auto &Point = Points_[P]; in validateAndSetup() local
105 if (!Point.Error.empty()) { in validateAndSetup()
110 const auto *CurMeasurement = &Point.Measurements; in validateAndSetup()
198 const InstructionBenchmark &Point = Points_[P]; in clusterizeNaive() local
199 const MCInst &MCI = Point.keyInstruction(); in clusterizeNaive()
269 for (auto Point : zip(Points_, ClusterIdForPoint_)) { in stabilize() local
270 const ClusterId &ClusterIdOfPoint = std::get<1>(Point); in stabilize()
273 const OpcodeAndConfig Key(std::get<0>(Point)); in stabilize()
358 void SchedClassClusterCentroid::addPoint(ArrayRef<BenchmarkMeasure> Point) { in addPoint() argument
360 Representative.resize(Point.size()); in addPoint()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Target/PowerPC/
H A DP10InstrResources.td13 // 22 Cycles Binary Floating Point operations, 2 input operands
21 // 22 Cycles Binary Floating Point operations, and 3 Cycles ALU operations, 2 input operands
27 // 24 Cycles Binary Floating Point operations, 2 input operands
33 // 26 Cycles Binary Floating Point operations, 1 input operands
41 // 26 Cycles Binary Floating Point operations, and 3 Cycles ALU operations, 1 input operands
47 // 27 Cycles Binary Floating Point operations, 1 input operands
53 // 27 Cycles Binary Floating Point operations, 2 input operands
62 // 27 Cycles Binary Floating Point operations, and 3 Cycles ALU operations, 2 input operands
68 // 36 Cycles Binary Floating Point operations, 1 input operands
77 // 36 Cycles Binary Floating Point operations, and 3 Cycles ALU operations, 1 input operands
[all …]
/openbsd-src/gnu/gcc/gcc/config/mips/
H A Dmips-ps-3d.md193 ; cvt.ps.s - Floating Point Convert Pair to Paired Single
209 ; cvt.s.pl - Floating Point Convert Pair Lower to Single Floating Point
217 ; cvt.s.pu - Floating Point Convert Pair Upper to Single Floating Point
225 ; alnv.ps - Floating Point Align Variable
237 ; addr.ps - Floating Point Reduction Add
248 ; cvt.pw.ps - Floating Point Convert Paired Single to Paired Word
258 ; cvt.ps.pw - Floating Point Convert Paired Word to Paired Single
268 ; mulr.ps - Floating Point Reduction Multiply
305 ; Floating Point Comparisons for Scalars
321 ; Floating Point Comparisons for Four Singles
[all …]
/openbsd-src/gnu/llvm/llvm/tools/llvm-xray/
H A Dxray-color-helper.cpp182 ColorHelper::getColorTuple(double Point) const { in getColorTuple()
186 if (Point < MinIn) in getColorTuple()
188 if (Point > MaxIn) in getColorTuple()
193 double OffsetP = Point - MinIn; in getColorTuple()
220 std::string ColorHelper::getColorString(double Point) const { in getColorString()
221 return getColorString(getColorTuple(Point)); in getColorString()
H A Dxray-color-helper.h71 std::tuple<uint8_t, uint8_t, uint8_t> getColorTuple(double Point) const;
73 std::string getColorString(double Point) const;
/openbsd-src/gnu/llvm/llvm/tools/sancov/
H A Dsancov.cpp311 for (const auto &Point : Points) { in operator <<() local
312 for (const DILineInfo &Loc : Point.Locs) { in operator <<()
313 PointsByFile[Loc.FileName].push_back(&Point); in operator <<()
333 for (const CoveragePoint *Point : P.second) { in operator <<() local
334 for (const auto &Loc : Point->Locs) { in operator <<()
337 if (WrittenIds.find(Point->Id) != WrittenIds.end()) in operator <<()
341 WrittenIds.insert(Point->Id); in operator <<()
342 W.attribute(Point->Id, in operator <<()
576 auto Point = CoveragePoint(Id); in getCoveragePoints() local
578 Point.Locs.push_back(*LineInfo); in getCoveragePoints()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Vectorize/
H A DLoopVectorizationPlanner.h78 VPBasicBlock::iterator Point; variable
86 : Block(InsertBlock), Point(InsertPoint) {} in VPInsertPoint()
92 VPBasicBlock::iterator getPoint() const { return Point; } in getPoint()
169 VPBasicBlock::iterator Point; variable
173 : Builder(B), Block(B.getInsertBlock()), Point(B.getInsertPoint()) {} in InsertPointGuard()
178 ~InsertPointGuard() { Builder.restoreIP(VPInsertPoint(Block, Point)); } in ~InsertPointGuard()
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/unsorted/
H A DPYRBUG.c5 } Point; typedef
13 x_PtInRect (Point pt, Rect *r) in x_PtInRect()
/openbsd-src/gnu/usr.sbin/mkhybrid/src/libhfs_iso/
H A Dinternal.h100 } Point; typedef
112 Point frLocation; /* folder's location */
117 Point frScroll; /* scroll position */
128 Point fdLocation; /* file's location */
/openbsd-src/gnu/llvm/llvm/lib/Target/LoongArch/
H A DLoongArch.td38 "'F' (Single-Precision Floating-Point)">;
42 "'F' (Single-Precision Floating-Point)">;
47 "'D' (Double-Precision Floating-Point)",
52 "'D' (Double-Precision Floating-Point)">;
/openbsd-src/gnu/llvm/clang/include/clang/Basic/
H A DFPOptions.def1 //===--- FPOptions.def - Floating Point Options database --------*- C++ -*-===//
9 // This file defines the Floating Point language options. Users of this file
/openbsd-src/gnu/llvm/llvm/include/llvm/Transforms/Utils/
H A DScalarEvolutionExpander.h121 BasicBlock::iterator Point; variable
130 : Builder(B), Block(B.GetInsertBlock()), Point(B.GetInsertPoint()), in SCEVInsertPointGuard()
141 Builder.restoreIP(IRBuilderBase::InsertPoint(Block, Point)); in ~SCEVInsertPointGuard()
145 BasicBlock::iterator GetInsertPoint() const { return Point; } in GetInsertPoint()
146 void SetInsertPoint(BasicBlock::iterator I) { Point = I; } in SetInsertPoint()
/openbsd-src/gnu/usr.bin/binutils/gas/doc/
H A Dc-msp430.texi19 * MSP430 Floating Point:: Floating Point
120 @node MSP430 Floating Point
121 @section Floating Point
H A Dc-arc.texi22 * ARC Floating Point:: Floating Point
106 @node ARC Floating Point
107 @section Floating Point

12345678910>>...13