HomeSort by relevance Sort by last modified time
    Searched defs:Integral (Results 1 - 13 of 13) sorted by null

  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/math/
fixed1616.h 26 static inline int32_t Integral(int32_t fixed) {
34 static inline int32_t Fixed(int32_t integral, int32_t fractional) {
35 return ((integral & 0xffff) << 16) | (fractional & 0xffff);
  /external/sfntly/cpp/src/sfntly/math/
fixed1616.h 26 static inline int32_t Integral(int32_t fixed) {
34 static inline int32_t Fixed(int32_t integral, int32_t fractional) {
35 return ((integral & 0xffff) << 16) | (fractional & 0xffff);
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/numeric/conversion/detail/
bounds.hpp 20 class Integral
48 typedef Integral<N> impl_int ;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_abstract_numbers.py 5 from numbers import Complex, Real, Rational, Integral
10 self.assertTrue(issubclass(int, Integral))
20 self.assertTrue(issubclass(long, Integral))
test_int.py 436 class Integral(trunc_result_base):
442 return Integral()
457 "__trunc__ returned non-Integral"
test_long.py 515 class Integral(trunc_result_base):
521 return Integral()
536 "__trunc__ returned non-Integral"
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_abstract_numbers.py 5 from numbers import Complex, Real, Rational, Integral
10 self.assertTrue(issubclass(int, Integral))
20 self.assertTrue(issubclass(long, Integral))
test_int.py 436 class Integral(trunc_result_base):
442 return Integral()
457 "__trunc__ returned non-Integral"
test_long.py 515 class Integral(trunc_result_base):
521 return Integral()
536 "__trunc__ returned non-Integral"
    [all...]
  /external/clang/test/SemaTemplate/
constexpr-instantiate.cpp 121 constexpr bool Integral() {
124 template<typename T, bool Int = Integral<T>()>
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
numbers.py 11 __all__ = ["Number", "Complex", "Real", "Rational", "Integral"]
189 """trunc(self): Truncates self to an Integral.
191 Returns an Integral i such that:
194 * for any Integral j satisfying the first two conditions,
295 class Integral(Rational):
296 """Integral adds a conversion to long and the bit-string operations."""
315 or any argument isn't Integral. Otherwise, just implement the
390 Integral.register(int)
391 Integral.register(long)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
numbers.py 11 __all__ = ["Number", "Complex", "Real", "Rational", "Integral"]
189 """trunc(self): Truncates self to an Integral.
191 Returns an Integral i such that:
194 * for any Integral j satisfying the first two conditions,
295 class Integral(Rational):
296 """Integral adds a conversion to long and the bit-string operations."""
315 or any argument isn't Integral. Otherwise, just implement the
390 Integral.register(int)
391 Integral.register(long)
  /external/clang/include/clang/AST/
TemplateBase.h 54 /// The template argument is an integral value stored in an llvm::APSInt
55 /// that was provided for an integral non-type template parameter.
56 Integral,
128 /// \brief Construct an integral constant template argument. The memory to
132 /// \brief Construct an integral constant template argument with the same
135 : Kind(Integral) {
270 /// \brief Retrieve the template argument as an integral value.
271 // FIXME: Provide a way to read the integral data without copying the value.
273 assert(Kind == Integral && "Unexpected kind");
283 /// \brief Retrieve the type of the integral value
    [all...]

Completed in 3332 milliseconds