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

1 2

  /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...]
  /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/include/clang/AST/
TemplateBase.h 53 /// The template argument is an integral value stored in an llvm::APSInt
54 /// that was provided for an integral non-type template parameter.
55 Integral,
141 /// \brief Construct an integral constant template argument. The memory to
145 /// \brief Construct an integral constant template argument with the same
283 /// \brief Retrieve the template argument as an integral value.
284 // FIXME: Provide a way to read the integral data without copying the value.
286 assert(getKind() == Integral && "Unexpected kind");
296 /// \brief Retrieve the type of the integral value.
298 assert(getKind() == Integral && "Unexpected kind")
    [all...]
DataRecursiveASTVisitor.h 702 case TemplateArgument::Integral:
735 case TemplateArgument::Integral:
    [all...]
RecursiveASTVisitor.h 768 case TemplateArgument::Integral:
801 case TemplateArgument::Integral:
    [all...]
  /external/clang/test/SemaTemplate/
constexpr-instantiate.cpp 121 constexpr bool Integral() {
124 template<typename T, bool Int = Integral<T>()>
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/host/chrome/
braille_key_types.js 84 * @return {number} Integral character code.
  /external/clang/lib/AST/
TypeLoc.cpp 362 case TemplateArgument::Integral:
ASTDiagnostic.cpp 482 /// FromInt, ToInt - APSInt's for integral arguments.
    [all...]
StmtProfile.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/clang/lib/Index/
USRGeneration.cpp 759 case TemplateArgument::Integral:
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/speech_rules/
mathml_store_rules.js 778 'integral-punct', 'default.default',
780 'self::punctuated', '@role="integral"');
828 // Integral rules
830 'integral', 'default.default',
832 '[n] children/*[3] (rate:0.35);', 'self::integral');

Completed in 1234 milliseconds

1 2