/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | IntervalTree.h | 221 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 229 bool contains(const PointType &Point) const { in contains() argument 230 return left(Point) && right(Point); in contains() 279 IntervalNode(PointType Point, unsigned Start) in IntervalNode() argument 280 : MiddlePoint(Point), BucketIntervalsStart(Start) {} in IntervalNode() 465 PointType Point = {}; variable 476 if (Point == Node->middle()) { in initNode() 484 if (Point < Node->middle()) { in initNode() 488 if (Node->size() && (*AscendingBuckets)[Node->start()]->left(Point)) { in initNode() [all …]
|
/freebsd/contrib/llvm-project/clang/lib/Tooling/Refactoring/Rename/ |
H A D | USRFinder.cpp | 37 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::__anon3137cd810111::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()
|
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
H A D | RangedConstraintManager.h | 35 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 …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/ |
H A D | RISCVScheduleV.td | 402 // 12. Vector Fixed-Point Arithmetic Instructions 417 // 12.5. Vector Narrowing Fixed-Point Clip Instructions 422 // 13. Vector Floating-Point Instructions 423 // 13.2. Vector Single-Width Floating-Point Add/Subtract Instructions 426 // 13.3. Vector Widening Floating-Point Add/Subtract Instructions 429 // 13.4. Vector Single-Width Floating-Point Multiply/Divide Instructions 434 // 13.5. Vector Widening Floating-Point Multiply 437 // 13.6. Vector Single-Width Floating-Point Fused Multiply-Add Instructions 440 // 13.7. Vector Widening Floating-Point Fused Multiply-Add Instructions 443 // 13.8. Vector Floating-Point Square-Root Instruction [all …]
|
H A D | RISCVFeatures.td | 280 // Floating Point Extensions 284 "'F' (Single-Precision Floating-Point)", 289 "'F' (Single-Precision Floating-Point)">; 293 "'D' (Double-Precision Floating-Point)", 298 "'D' (Double-Precision Floating-Point)">; 302 "'Zfhmin' (Half-Precision Floating-Point Minimal)", 307 "'Zfh' (Half-Precision Floating-Point) or " 308 "'Zfhmin' (Half-Precision Floating-Point Minimal)">; 312 "'Zfh' (Half-Precision Floating-Point)", 317 "'Zfh' (Half-Precision Floating-Point)">; [all …]
|
H A D | RISCVInstrInfoV.td | 1308 // Vector Fixed-Point Arithmetic Instructions 1327 // Vector Narrowing Fixed-Point Clip Instructions 1335 // Vector Single-Width Floating-Point Add/Subtract Instructions 1342 // Vector Widening Floating-Point Add/Subtract Instructions 1360 // Vector Single-Width Floating-Point Multiply/Divide Instructions 1367 // Vector Widening Floating-Point Multiply 1373 // Vector Single-Width Floating-Point Fused Multiply-Add Instructions 1385 // Vector Widening Floating-Point Fused Multiply-Add Instructions 1393 // Vector Floating-Point Square-Root Instruction 1402 // Vector Floating-Point MIN/MAX Instructions [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
H A D | P10InstrResources.td | 13 // 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 …]
|
/freebsd/contrib/file/magic/Magdir/ |
H A D | forth | 29 >>>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
|
H A D | esri | 16 >32 lelong =1 type Point
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-xray/ |
H A D | xray-color-helper.cpp | 182 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 D | xray-color-helper.h | 71 std::tuple<uint8_t, uint8_t, uint8_t> getColorTuple(double Point) const; 73 std::string getColorString(double Point) const;
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/ |
H A D | LoopVectorizationPlanner.h | 93 VPBasicBlock::iterator Point; variable 101 : Block(InsertBlock), Point(InsertPoint) {} in VPInsertPoint() 107 VPBasicBlock::iterator getPoint() const { return Point; } in getPoint() 214 VPBasicBlock::iterator Point; variable 218 : Builder(B), Block(B.getInsertBlock()), Point(B.getInsertPoint()) {} in InsertPointGuard() 223 ~InsertPointGuard() { Builder.restoreIP(VPInsertPoint(Block, Point)); } in ~InsertPointGuard()
|
/freebsd/sys/contrib/device-tree/Bindings/soc/qcom/ |
H A D | qcom,smp2p.txt | 1 Qualcomm Shared Memory Point 2 Point binding 3 The Shared Memory Point to Point (SMP2P) protocol facilitates communication of
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/ |
H A D | ScalarEvolutionExpander.h | 138 BasicBlock::iterator Point; variable 147 : Builder(B), Block(B.GetInsertBlock()), Point(B.GetInsertPoint()), in SCEVInsertPointGuard() 158 Builder.restoreIP(IRBuilderBase::InsertPoint(Block, Point)); in ~SCEVInsertPointGuard() 162 BasicBlock::iterator GetInsertPoint() const { return Point; } in GetInsertPoint() 163 void SetInsertPoint(BasicBlock::iterator I) { Point = I; } in SetInsertPoint()
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | riscv_vector.td | 1387 // 12. Vector Fixed-Point Arithmetic Instructions 1491 // 12.5. Vector Narrowing Fixed-Point Clip Instructions 1497 // 13. Vector Floating-Point Instructions 1556 // 13.2. Vector Single-Width Floating-Point Add/Subtract Instructions 1561 // 13.3. Vector Widening Floating-Point Add/Subtract Instructions 1566 // 13.4. Vector Single-Width Floating-Point Multiply/Divide Instructions 1571 // 13.2. Vector Single-Width Floating-Point Add/Subtract Instructions 1576 // 13.3. Vector Widening Floating-Point Add/Subtract Instructions 1581 // 13.4. Vector Single-Width Floating-Point Multiply/Divide Instructions 1633 // 13.3. Vector Widening Floating-Point Add/Subtract Instructions [all …]
|
H A D | LangOptions.def | 228 COMPATIBLE_LANGOPT(UnsafeFPMath , 1, 0, "Unsafe Floating Point Math") 231 BENIGN_LANGOPT(AllowFPReassoc , 1, 0, "Permit Floating Point reassociation") 232 BENIGN_LANGOPT(NoHonorNaNs , 1, 0, "Permit Floating Point optimization without regard to NaN") 233 BENIGN_LANGOPT(NoHonorInfs , 1, 0, "Permit Floating Point optimization without regard to infi… 234 BENIGN_LANGOPT(NoSignedZero , 1, 0, "Permit Floating Point optimization without regard to sign… 235 BENIGN_LANGOPT(AllowRecip , 1, 0, "Permit Floating Point reciprocal") 236 BENIGN_LANGOPT(ApproxFunc , 1, 0, "Permit Floating Point approximation") 341 BENIGN_LANGOPT(CLNoSignedZero , 1, 0, "Permit Floating Point optimization without regard to signed … 342 COMPATIBLE_LANGOPT(CLUnsafeMath , 1, 0, "Unsafe Floating Point Math")
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
H A D | RangeConstraintManager.cpp | 134 RangeSet RangeSet::Factory::add(RangeSet Original, const llvm::APSInt &Point) { in add() argument 135 return add(Original, Range(Point)); in add() 150 RangeSet RangeSet::Factory::unite(RangeSet Original, llvm::APSInt Point) { in unite() argument 151 return unite(Original, Range(ValueFactory.getValue(Point))); in unite() 372 bool RangeSet::containsImpl(llvm::APSInt &Point) const { in containsImpl() 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() 386 if (Type.testInRange(Point, true) != APSIntType::RTR_Within) in pin() [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/Rename/ |
H A D | USRFinder.h | 35 const SourceLocation Point);
|
/freebsd/sys/contrib/device-tree/src/powerpc/fsl/ |
H A D | e500mc_power_isa.dtsi | 51 power-isa-fp; // Floating Point 52 power-isa-fp.r; // Floating Point.Record
|
H A D | e5500_power_isa.dtsi | 51 power-isa-fp; // Floating Point 52 power-isa-fp.r; // Floating Point.Record
|
H A D | e6500_power_isa.dtsi | 51 power-isa-fp; // Floating Point 52 power-isa-fp.r; // Floating Point.Record
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86RegisterBanks.td | 15 /// Floating Point/Vector Registers
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
H A D | AArch64RegisterBanks.td | 15 /// Floating Point, Vector, Scalable Vector Registers: B, H, S, D, Q, Z.
|
/freebsd/contrib/llvm-project/llvm/lib/Testing/Annotations/ |
H A D | Annotations.cpp | 100 for (const auto &[Point, Payload] : Pts) in points() 101 Positions.push_back(Point); in points()
|
/freebsd/sys/contrib/device-tree/src/arm/marvell/ |
H A D | armada-385-db-ap.dts | 3 * Device Tree file for Marvell Armada 385 Access Point Development board 17 model = "Marvell Armada 385 Access Point Development Board";
|