Searched refs:integral_constant (Results 1 – 1 of 1) sorted by relevance
| /CafeSDK-2.12.13/system/include/nn/util/ |
| D | util_TypeTraits.h | 23 template <class T, T v> struct integral_constant; 24 typedef integral_constant<bool, true> true_type; 25 typedef integral_constant<bool, false> false_type; 128 struct integral_constant : public type_constant<integral_constant<T, v> > struct 134 ~integral_constant(); argument 198 struct is_arithmetic : public integral_constant<bool, is_integral<T>::value || is_floating_point<T>… 201 struct is_fundamental : public integral_constant<bool, is_arithmetic<T>::value || is_void<T>::value… 208 struct alignment_of : public integral_constant<size_t, __alignof__(T)> {}; 223 struct alignment_of : public integral_constant<size_t, sizeof(detail::AlignmentHack<T>) - sizeof(T)… 317 struct is_base_of : public integral_constant<bool, is_convertible<const Derived*, const Base*>::val… [all …]
|