Home
last modified time | relevance | path

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

1234567

/freebsd-14.2/contrib/llvm-project/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::__anon0ce6a5f70111::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.cpp251 const SourceLocation Point = SourceMgr.getLocForStartOfFile(MainFileID) in FindSymbol() local
254 ? getNamedDeclAt(Context, Point) in FindSymbol()
259 FullSourceLoc FullLoc(Point, SourceMgr); in FindSymbol()
263 Engine.Report(Point, CouldNotFindSymbolAt) << SymbolOffset; in FindSymbol()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ADT/
H A DIntervalTree.h221 bool left(const PointType &Point) const { return left() <= Point; } in left() argument
225 bool right(const PointType &Point) const { return Point <= right(); } in right() argument
230 return left(Point) && right(Point); in contains()
465 PointType Point = {}; variable
476 if (Point == Node->middle()) { in initNode()
484 if (Point < Node->middle()) { in initNode()
511 if (Node->middle() == Point) in nextInterval()
513 if (Point < Node->middle()) { in nextInterval()
532 if (Point == Node->middle()) { in nextInterval()
548 Point(Point), Index(0) { in find_iterator()
[all …]
/freebsd-14.2/contrib/llvm-project/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);
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
395 bool pin(llvm::APSInt &Point) const;
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVScheduleV.td373 // 12. Vector Fixed-Point Arithmetic Instructions
393 // 13. Vector Floating-Point Instructions
405 // 13.5. Vector Widening Floating-Point Multiply
432 // 13.16. Vector Floating-Point Move Instruction
484 // 16.2. Floating-Point Scalar Move Instructions
618 // 13. Vector Floating-Point Instructions
630 // 13.5. Vector Widening Floating-Point Multiply
658 // 13.16. Vector Floating-Point Move Instruction
710 // 16.2. Floating-Point Scalar Move Instructions
865 // 13. Vector Floating-Point Instructions
[all …]
H A DRISCVFeatures.td185 // Floating Point Extensions
189 "'F' (Single-Precision Floating-Point)",
197 "'D' (Double-Precision Floating-Point)",
205 "'Zfhmin' (Half-Precision Floating-Point Minimal)",
209 "'Zfh' (Half-Precision Floating-Point) or "
214 "'Zfh' (Half-Precision Floating-Point)",
218 "'Zfh' (Half-Precision Floating-Point)">;
233 "'Zfh' (Half-Precision Floating-Point) or "
239 "'Zfa' (Additional Floating-Point)",
593 "'Zvfh' (Vector Half-Precision Floating-Point)",
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DP10InstrResources.td13 // 22 Cycles Binary Floating Point operations, 2 input operands
27 // 24 Cycles Binary Floating Point operations, 2 input operands
33 // 26 Cycles Binary Floating Point operations, 1 input operands
47 // 27 Cycles Binary Floating Point operations, 1 input operands
53 // 27 Cycles Binary Floating Point operations, 2 input operands
68 // 36 Cycles Binary Floating Point operations, 1 input operands
83 // 7 Cycles Binary Floating Point operations, 1 input operands
176 // 7 Cycles Binary Floating Point operations, 2 input operands
201 // 7 Cycles Binary Floating Point operations, 3 input operands
250 // 7 Cycles Binary Floating Point operations, and 7 Cycles Binary Floating Point operations, 1 inpu…
[all …]
/freebsd-14.2/contrib/file/magic/Magdir/
H A Dforth29 >>>40 lelong x Entry Point: %#08X,
41 >>20 lelong x Entry Point: %#08X,
51 >20 belong x Entry Point: %#08X,
60 >20 lelong x Entry Point: %#08X,
74 #>12 short x Entry Point: %#08X
82 >24 long x Entry Point: %#08X
/freebsd-14.2/contrib/llvm-project/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;
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoopVectorizationPlanner.h85 VPBasicBlock::iterator Point; variable
93 : Block(InsertBlock), Point(InsertPoint) {} in VPInsertPoint()
99 VPBasicBlock::iterator getPoint() const { return Point; } in getPoint()
196 VPBasicBlock::iterator Point; variable
200 : Builder(B), Block(B.getInsertBlock()), Point(B.getInsertPoint()) {} in InsertPointGuard()
205 ~InsertPointGuard() { Builder.restoreIP(VPInsertPoint(Block, Point)); } in ~InsertPointGuard()
/freebsd-14.2/sys/contrib/device-tree/Bindings/soc/qcom/
H A Dqcom,smp2p.txt1 Qualcomm Shared Memory Point 2 Point binding
3 The Shared Memory Point to Point (SMP2P) protocol facilitates communication of
H A Dqcom,smp2p.yaml7 title: Qualcomm Shared Memory Point 2 Point
15 The Shared Memory Point to Point (SMP2P) protocol facilitates communication
/freebsd-14.2/contrib/llvm-project/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
H A Driscv_vector.td1357 // 12. Vector Fixed-Point Arithmetic Instructions
1467 // 13. Vector Floating-Point Instructions
1608 // 13.5. Vector Widening Floating-Point Multiply
1620 // 13.5. Vector Widening Floating-Point Multiply
1794 // 13.8. Vector Floating-Point Square-Root Instruction
1804 // 13.11. Vector Floating-Point MIN/MAX Instructions
1816 // 13.13. Vector Floating-Point Compare Instructions
1827 // 13.14. Vector Floating-Point Classify Instruction
1831 // 13.15. Vector Floating-Point Merge Instruction
1851 // 13.16. Vector Floating-Point Move Instruction
[all …]
/freebsd-14.2/contrib/llvm-project/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()
/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DRangeConstraintManager.cpp135 return add(Original, Range(Point)); in add()
373 if (isEmpty() || !pin(Point)) in containsImpl()
376 Range Dummy(Point); in containsImpl()
381 return std::prev(It)->Includes(Point); in containsImpl()
384 bool RangeSet::pin(llvm::APSInt &Point) const { in pin()
389 Type.apply(Point); in pin()
605 if (LHS.containsImpl(Point)) in intersect()
851 if (!From.contains(Point)) in deletePoint()
854 llvm::APSInt Upper = Point; in deletePoint()
855 llvm::APSInt Lower = Point; in deletePoint()
[all …]
/freebsd-14.2/sys/contrib/device-tree/Bindings/mailbox/
H A Dqcom-ipcc.yaml17 Modem's interrupts via Shared Memory Point to Point (SMP2P) interface. In such
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/M68k/
H A DM68kRegisterInfo.td71 // Floating Point Registers
119 // Floating Point Data Registers
128 // Float Point System Control Registers
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/Rename/
H A DUSRFinder.h35 const SourceLocation Point);
/freebsd-14.2/sys/contrib/device-tree/src/powerpc/fsl/
H A De500mc_power_isa.dtsi51 power-isa-fp; // Floating Point
52 power-isa-fp.r; // Floating Point.Record
H A De5500_power_isa.dtsi51 power-isa-fp; // Floating Point
52 power-isa-fp.r; // Floating Point.Record
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86RegisterBanks.td15 /// Floating Point/Vector Registers
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/RISCV/GISel/
H A DRISCVRegisterBanks.td15 /// Floating Point Registers: F.
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64RegisterBanks.td15 /// Floating Point/Vector Registers: B, H, S, D, Q.

1234567