HomeSort by: relevance | last modified time | path
    Searched defs:Precision (Results 1 - 8 of 8) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/AST/
OSLog.cpp 26 Optional<const Expr *> Precision;
83 auto &precision = FS.getPrecision(); variable
84 switch (precision.getHowSpecified()) {
88 ArgsData.back().Size = precision.getConstantAmount();
91 ArgsData.back().Count = Args[precision.getArgIndex()];
99 auto &precision = FS.getPrecision(); variable
100 switch (precision.getHowSpecified()) {
104 ArgsData.back().Size = precision.getConstantAmount();
107 ArgsData.back().Count = Args[precision.getArgIndex()];
116 ArgsData.back().Precision = Args[FS.getPrecision().getArgIndex()]
    [all...]
  /src/sys/external/bsd/acpica/dist/utilities/
utprint.c 80 INT32 Precision,
280 * Precision - Precision of the integer
285 * DESCRIPTION: Print an integer into a string with any base and any precision.
296 INT32 Precision,
362 if (i > Precision)
364 Precision = i;
367 Width -= Precision;
399 while (i <= --Precision)
444 INT32 Precision;
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/FileCheck/
FileCheckImpl.h 56 unsigned Precision = 0;
65 /// their kinds and precision are the same.
68 Precision == Other.Precision && AlternateForm == Other.AlternateForm;
83 explicit ExpressionFormat(Kind Value) : Value(Value), Precision(0){};
84 explicit ExpressionFormat(Kind Value, unsigned Precision)
85 : Value(Value), Precision(Precision){};
86 explicit ExpressionFormat(Kind Value, unsigned Precision, bool AlternateForm)
87 : Value(Value), Precision(Precision), AlternateForm(AlternateForm){}
    [all...]
FileCheck.cpp 51 return (Twine(AlternateFormPrefix) + S + Twine('{') + Twine(Precision) +
58 if (Precision)
62 if (Precision)
66 if (Precision)
70 if (Precision)
116 if (Precision > AbsoluteValueStr.size()) {
117 unsigned LeadingZeros = Precision - AbsoluteValueStr.size();
775 unsigned Precision = 0;
793 // Parse precision.
795 if (FormatExpr.consumeInteger(10, Precision))
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
FormatString.h 161 // to be copied by os_log. The precision indicates the number of bytes to
511 OptionalAmount Precision;
565 Precision = Amt;
566 Precision.setUsesDotPrefix();
570 return Precision;
  /src/external/gpl3/gcc/dist/contrib/
paranoia.cc 88 F6 P Precision Y2
984 FLOAT Precision;
1108 printf ("Searching for Radix and Precision.\n");
1119 Precision = Zero;
1136 Precision = Precision + One;
1142 /*... now W == Radix^Precision is barely too big to satisfy (W+1)-W == 1
1147 printf ("Recalculating radix and precision\n ");
1153 E3 = Precision;
1236 Precision = X / TwoForty
    [all...]
  /src/external/gpl3/gcc.old/dist/contrib/
paranoia.cc 88 F6 P Precision Y2
984 FLOAT Precision;
1108 printf ("Searching for Radix and Precision.\n");
1119 Precision = Zero;
1136 Precision = Precision + One;
1142 /*... now W == Radix^Precision is barely too big to satisfy (W+1)-W == 1
1147 printf ("Recalculating radix and precision\n ");
1153 E3 = Precision;
1236 Precision = X / TwoForty
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaChecking.cpp 424 const size_t Precision = computePrecision(FS);
443 Size += std::max(FieldWidth, Precision);
455 (Precision ? 1 + Precision
465 (Precision ? 1 + Precision : 0) /* period + decimal */ +
475 (Precision ? 1 + Precision : 0) /* period + decimal */ +
487 Size += std::max(FieldWidth, 2 /* leading 0x */ + Precision);
514 // Force a period '.' before decimal, even if precision is 0
11861 unsigned precision = llvm::APFloat::semanticsPrecision(Value.getSemantics()); local
    [all...]

Completed in 25 milliseconds