Searched refs:Integral (Results 1 - 12 of 12) sorted by relevance
/third_party/skia/third_party/externals/dawn/src/include/dawn/ |
H A D | EnumClassBitmasks.h | 55 using Integral = typename std::underlying_type<T>::type; 57 constexpr BoolConvertible(Integral value) : value(value) { in BoolConvertible() 66 Integral value; 84 using Integral = typename std::underlying_type<T>::type; in operator |() 85 return static_cast<Integral>(LowerBitmask<T1>::Lower(left)) | in operator |() 86 static_cast<Integral>(LowerBitmask<T2>::Lower(right)); in operator |() 95 using Integral = typename std::underlying_type<T>::type; in operator &() 96 return static_cast<Integral>(LowerBitmask<T1>::Lower(left)) & in operator &() 97 static_cast<Integral>(LowerBitmask<T2>::Lower(right)); in operator &() 106 using Integral in operator ^() [all...] |
/third_party/python/Lib/test/ |
H A D | test_abstract_numbers.py | 6 from numbers import Complex, Real, Rational, Integral namespace 10 self.assertTrue(issubclass(int, Integral))
|
/third_party/python/Lib/ |
H A D | numbers.py | 10 __all__ = ["Number", "Complex", "Real", "Rational", "Integral"] 167 """trunc(self): Truncates self to an Integral. 169 Returns an Integral i such that: 172 * for any Integral j satisfying the first two conditions, 180 """Finds the greatest Integral <= self.""" 185 """Finds the least Integral >= self.""" 192 If ndigits is omitted or None, returns an Integral, otherwise 294 class Integral(Rational): class 295 """Integral adds methods that work on integral numbers. 318 or any argument isn't Integral [all...] |
H A D | fractions.py | 175 if isinstance(f, numbers.Integral): 186 if isinstance(dec, numbers.Integral):
|
/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/math/ |
H A D | fixed1616.h | 26 static inline int32_t Integral(int32_t fixed) { in Integral() function in sfntly::Fixed1616
|
/third_party/protobuf/python/google/protobuf/internal/ |
H A D | type_checkers.py | 168 if not isinstance(proposed_value, numbers.Integral): 192 if not isinstance(proposed_value, numbers.Integral): 309 False, bool, numbers.Integral),
|
H A D | test_util.py | 721 class NonStandardInteger(numbers.Integral): 728 NonStandardInteger is the minimal legal specification for a custom Integral. 736 assert isinstance(val, numbers.Integral)
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
H A D | IceInstX8632.h | 318 enum SseSuffix { None, Packed, Unpack, Scalar, Integral, Pack }; enumerator 991 const char *SuffixString = getSseSuffixString(DestTy, SseSuffix::Integral); 1466 InstX86Base::SseSuffix::Integral> { 1475 InstX86Base::SseSuffix::Integral>(Func, Dest, in InstX86Padd() 1481 InstX86Base::SseSuffix::Integral> { 1491 InstX86Base::SseSuffix::Integral>(Func, Dest, in InstX86Padds() 1497 InstX86Base::SseSuffix::Integral> { 1507 InstX86Base::SseSuffix::Integral>(Func, Dest, in InstX86Paddus() 1593 InstX86Base::SseSuffix::Integral> { 1602 InstX86Base::SseSuffix::Integral>(Fun in InstX86Psub() [all...] |
H A D | IceInstX8664.h | 257 enum SseSuffix { None, Packed, Unpack, Scalar, Integral, Pack }; enumerator 930 const char *SuffixString = getSseSuffixString(DestTy, SseSuffix::Integral); 1407 InstX86Base::SseSuffix::Integral> { 1416 InstX86Base::SseSuffix::Integral>(Func, Dest, in InstX86Padd() 1422 InstX86Base::SseSuffix::Integral> { 1432 InstX86Base::SseSuffix::Integral>(Func, Dest, in InstX86Padds() 1438 InstX86Base::SseSuffix::Integral> { 1448 InstX86Base::SseSuffix::Integral>(Func, Dest, in InstX86Paddus() 1534 InstX86Base::SseSuffix::Integral> { 1543 InstX86Base::SseSuffix::Integral>(Fun in InstX86Psub() [all...] |
H A D | IceInstX8632.cpp | 105 case InstX86Base::SseSuffix::Integral: in getSseSuffixString()
|
H A D | IceInstX8664.cpp | 93 case InstX86Base::SseSuffix::Integral: in getSseSuffixString()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/hash/internal/ |
H A D | hash.h | 231 // Integral types other than bool should be uniquely represented on any 233 template <typename Integral> 235 Integral, typename std::enable_if<std::is_integral<Integral>::value>::type>
|
Completed in 25 milliseconds