HomeSort by relevance Sort by last modified time
    Searched refs:Digits (Results 1 - 7 of 7) sorted by null

  /external/llvm/include/llvm/Support/
ScaledNumber.h 11 // numbers -- in particular, pairs of integers where one represents digits and
47 /// Given \c Digits and \c Scale, round up iff \c ShouldRound is \c true.
53 inline std::pair<DigitsT, int16_t> getRounded(DigitsT Digits, int16_t Scale,
58 if (!++Digits)
61 return std::make_pair(Digits, Scale);
65 inline std::pair<uint32_t, int16_t> getRounded32(uint32_t Digits, int16_t Scale,
67 return getRounded(Digits, Scale, ShouldRound);
71 inline std::pair<uint64_t, int16_t> getRounded64(uint64_t Digits, int16_t Scale,
73 return getRounded(Digits, Scale, ShouldRound);
80 inline std::pair<DigitsT, int16_t> getAdjusted(uint64_t Digits,
    [all...]
  /frameworks/data-binding/compilerCommon/
BindingExpression.g4 191 | NonZeroDigit (Digits? | Underscores Digits)
195 Digits
293 : Digits '.' Digits? ExponentPart? FloatTypeSuffix?
294 | '.' Digits ExponentPart? FloatTypeSuffix?
295 | Digits ExponentPart FloatTypeSuffix?
296 | Digits FloatTypeSuffix
311 : Sign? Digits
437 : [a-zA-Z0-9$_] // these are the "java letters or digits" below 0xF
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/policies/
policy.hpp 36 int digits(BOOST_MATH_EXPLICIT_TEMPLATE_TYPE(T));
751 digits2< ::std::numeric_limits<Real>::digits>,
779 BOOST_STATIC_ASSERT((::std::numeric_limits<Real>::radix == 2) || ((::std::numeric_limits<Real>::is_specialized == 0) || (::std::numeric_limits<Real>::digits == 0)));
783 ((::std::numeric_limits<Real>::is_specialized == 0) || (::std::numeric_limits<Real>::digits == 0)),
787 ((::std::numeric_limits<Real>::digits <= precision_type::value)
790 digits2< ::std::numeric_limits<Real>::digits>,
797 typedef mpl::int_< ::std::numeric_limits<Real>::digits> digits_t;
806 digits2< ::std::numeric_limits<Real>::digits>,
833 return tools::digits<T>();
839 inline int digits(BOOST_MATH_EXPLICIT_TEMPLATE_TYPE(T)
    [all...]
  /external/llvm/lib/Analysis/
BlockFrequencyInfoImpl.cpp 39 for (int Digits = 0; Digits < 16; ++Digits)
40 OS << getHexDigit(Mass >> (60 - Digits * 4) & 0xf);
  /external/clang/lib/Frontend/
InitPreprocessor.cpp 135 int Digits = PickFP(Sem, 6, 15, 18, 31, 33);
162 Builder.defineMacro(DefPrefix + "DIG__", Twine(Digits));
    [all...]
  /external/llvm/lib/Support/
APInt.cpp 207 /// no further borrowing is neeeded or it runs out of "digits" in x. The result
208 /// is 1 if "borrowing" exhausted the digits in x, or 0 if x was not exhausted.
219 break; // Remaining digits are unchanged so exit early
645 // the first few digits. But, I'm not sure how accurate that could be.
    [all...]
  /external/llvm/utils/TableGen/
RegisterInfoEmitter.cpp 528 unsigned Digits = (Width + 3) / 4;
533 OS << format("0x%0*x, ", Digits, Value);
    [all...]

Completed in 429 milliseconds