| /freebsd-14.2/contrib/llvm-project/llvm/lib/Support/ |
| H A D | ScaledNumber.cpp | 162 static std::string toStringAPFloat(uint64_t D, int E, unsigned Precision) { in toStringAPFloat() argument 187 Float.toString(Chars, Precision, 0); in toStringAPFloat() 202 unsigned Precision) { in toString() argument 235 return toStringAPFloat(D, E, Precision); in toString() 278 (!Precision || DigitsOut <= Precision || SinceDot < 2)); in toString() 281 if (!Precision || DigitsOut <= Precision) in toString() 286 std::max(Str.size() - (DigitsOut - Precision), AfterDot + 1); in toString() 316 int Width, unsigned Precision) { in print() argument 317 return OS << toString(D, E, Width, Precision); in print()
|
| H A D | NativeFormatting.cpp | 166 std::optional<size_t> Precision) { in write_double() argument 167 size_t Prec = Precision.value_or(getDefaultPrecision(Style)); in write_double()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/FileCheck/ |
| H A D | FileCheckImpl.h | 55 unsigned Precision = 0; member 67 Precision == Other.Precision && AlternateForm == Other.AlternateForm; 82 explicit ExpressionFormat(Kind Value) : Value(Value), Precision(0){}; in ExpressionFormat() 83 explicit ExpressionFormat(Kind Value, unsigned Precision) in ExpressionFormat() 84 : Value(Value), Precision(Precision){}; in ExpressionFormat() 85 explicit ExpressionFormat(Kind Value, unsigned Precision, bool AlternateForm) in ExpressionFormat() 86 : Value(Value), Precision(Precision), AlternateForm(AlternateForm){}; in ExpressionFormat()
|
| H A D | FileCheck.cpp | 52 return (Twine(AlternateFormPrefix) + S + Twine('{') + Twine(Precision) + in getWildcardRegex() 59 if (Precision) in getWildcardRegex() 63 if (Precision) in getWildcardRegex() 67 if (Precision) in getWildcardRegex() 71 if (Precision) in getWildcardRegex() 112 if (Precision > AbsoluteValueStr.size()) { in getMatchingString() 113 unsigned LeadingZeros = Precision - AbsoluteValueStr.size(); in getMatchingString() 619 unsigned Precision = 0; in parseNumericSubstitutionBlock() local 639 if (FormatExpr.consumeInteger(10, Precision)) in parseNumericSubstitutionBlock() 659 Precision, AlternateForm); in parseNumericSubstitutionBlock() [all …]
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/ |
| H A D | OSLog.cpp | 27 std::optional<const Expr *> Precision; member 117 ArgsData.back().Precision = Args[FS.getPrecision().getArgIndex()]; in HandlePrintfSpecifier() 150 if (Data.Precision) { in computeLayout() 151 CharUnits Size = Ctx.getTypeSizeInChars((*Data.Precision)->getType()); in computeLayout() 152 Layout.Items.emplace_back(OSLogBufferItem::ScalarKind, *Data.Precision, in computeLayout()
|
| H A D | PrintfFormatString.cpp | 706 Precision.setHowSpecified(OptionalAmount::NotSpecified); in fixType() 885 Precision.setHowSpecified(OptionalAmount::NotSpecified); in fixType() 927 Precision.toString(os); in toString() 1089 if (Precision.getHowSpecified() == OptionalAmount::NotSpecified) in hasValidPrecision()
|
| /freebsd-14.2/contrib/ntp/html/scripts/ |
| H A D | misc.txt | 4 <li class='inline'><a href='kern.html'>Kernel Model for Precision Timekeeping</a></li>\ 6 <li class='inline'><a href='kernpps.html'>PPSAPI Interface for Precision Time Signals</a></li>\
|
| H A D | external.txt | 13 <li class='inline'><a href='http://www.eecis.udel.edu/~mills/ptp.html'>IEEE 1588 Precision Time Pro…
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/scudo/standalone/ |
| H A D | string_utils.cpp | 145 int Precision = -1; in formatString() local 148 Precision = va_arg(Args, int); in formatString() 159 CHECK(!((Precision >= 0 || LeftJustified) && *Cur != 's')); in formatString() 189 Precision, va_arg(Args, char *)); in formatString()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/RISCV/ |
| H A D | RISCVFeatures.td | 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 " 593 "'Zvfh' (Vector Half-Precision Floating-Point)", 599 "'Zfh' (Half-Precision Floating-Point) or " 600 "'Zvfh' (Vector Half-Precision Floating-Point)">; [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/LoongArch/ |
| H A D | LoongArch.td | 35 // Single Precision floating point 38 "'F' (Single-Precision Floating-Point)">; 41 // Double Precision floating point 44 "'D' (Double-Precision Floating-Point)",
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | FormatProviders.h | 316 std::optional<size_t> Precision = parseNumericPrecision(Style); 317 if (!Precision) 318 Precision = getDefaultPrecision(S); 320 write_double(Stream, static_cast<double>(V), S, Precision);
|
| H A D | ScaledNumber.h | 426 unsigned Precision); 428 unsigned Precision); 596 std::string toString(unsigned Precision = DefaultPrecision) { 597 return ScaledNumberBase::toString(Digits, Scale, Width, Precision); 604 unsigned Precision = DefaultPrecision) const { 605 return ScaledNumberBase::print(OS, Digits, Scale, Width, Precision);
|
| H A D | NativeFormatting.h | 43 std::optional<size_t> Precision = std::nullopt);
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/x86/ |
| H A D | timer.txt | 4 * High Precision Event Timer (HPET)
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/ARM/ |
| H A D | ARMScheduleV6.td | 215 // Single-Precision FP to Integer Convert 218 // Double-Precision FP to Integer Convert 221 // Integer to Single-Precision FP Convert 224 // Integer to Double-Precision FP Convert
|
| H A D | ARMScheduleA8.td | 284 // Single-Precision FP to Integer Convert 288 // Double-Precision FP to Integer Convert 293 // Integer to Single-Precision FP Convert 297 // Integer to Double-Precision FP Convert
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | FormatString.h | 522 OptionalAmount Precision; variable 576 Precision = Amt; in setPrecision() 577 Precision.setUsesDotPrefix(); in setPrecision() 581 return Precision; in getPrecision()
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/iio/amplifiers/ |
| H A D | adi,ada4250.yaml | 13 Precision Low Power, 110kHz, 26uA, Programmable Gain Instrumentation Amplifier.
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/iio/adc/ |
| H A D | ti,lmp92064.yaml | 7 title: Texas Instruments LMP92064 Precision Current and Voltage Sensor.
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/net/dsa/ |
| H A D | hirschmann,hellcreek.yaml | 20 the Precision Time Protocol, Hardware Timestamping as well the Time Aware
|
| /freebsd-14.2/lib/libc/softfloat/ |
| H A D | softfloat.txt | 50 Extended Double-Precision Rounding Precision 144 Extended Double-Precision Rounding Precision
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/net/ |
| H A D | ti,k3-am654-cpts.yaml | 29 Scheduled Traffic Operations (CPTS_ESTFn) and PCIe Subsystem Precision Time
|
| /freebsd-14.2/usr.sbin/bsdinstall/scripts/ |
| H A D | auto | 228 "Latitude E6330"|"Latitude E7440"|"Latitude E7240"|"Precision Tower 5810")
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
| H A D | README_P9.txt | 365 - Round to Quad-Precision Integer: xsrqpi xsrqpix 372 - Round Quad-Precision to Double-Extended Precision (fp80): xsrqpxp
|