HomeSort by relevance Sort by last modified time
    Searched refs:Integral (Results 1 - 25 of 36) sorted by null

1 2

  /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/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...]
RecursiveASTVisitor.h 732 case TemplateArgument::Integral:
765 case TemplateArgument::Integral:
    [all...]
  /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)
fractions.py 175 if isinstance(f, numbers.Integral):
188 if isinstance(dec, numbers.Integral):
  /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)
fractions.py 175 if isinstance(f, numbers.Integral):
188 if isinstance(dec, numbers.Integral):
  /external/clang/test/SemaTemplate/
constexpr-instantiate.cpp 121 constexpr bool Integral() {
124 template<typename T, bool Int = Integral<T>()>
  /external/clang/lib/AST/
TypeLoc.cpp 362 case TemplateArgument::Integral:
ASTDiagnostic.cpp 452 /// FromInt, ToInt - APSInt's for integral arguments.
892 FromIter->getKind() == TemplateArgument::Integral;
894 ToIter->getKind() == TemplateArgument::Integral;
    [all...]
DumpXML.cpp 328 case TemplateArgument::Integral: {
StmtProfile.cpp     [all...]
MicrosoftMangle.cpp     [all...]
  /external/clang/lib/Sema/
SemaTemplateDeduction.cpp 198 case TemplateArgument::Integral:
200 // declaration in another case, keep the integral constant.
201 // If both are integral constants with the same value, keep that value.
204 (Y.getKind() == TemplateArgument::Integral &&
231 // If we deduced a dependent expression in one case and either an integral
232 // constant or a declaration in another case, keep the integral constant
234 if (Y.getKind() == TemplateArgument::Integral ||
257 // If we deduced a declaration and an integral constant, keep the
258 // integral constant.
259 if (Y.getKind() == TemplateArgument::Integral)
    [all...]
SemaTemplateVariadic.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/
clike.js 283 "Enumeration Equiv Error Exception Fractional Function IndexedSeq Integral Iterable " +
  /external/clang/tools/libclang/
RecursiveASTVisitor.h 666 case TemplateArgument::Integral:
699 case TemplateArgument::Integral:
    [all...]
CIndexUSRs.cpp 762 case TemplateArgument::Integral:

Completed in 1599 milliseconds

1 2