Home | History | Annotate | Download | only in platform

Lines Matching defs:IsSigned

193 struct IsSigned
203 IsSigned<IntegerType>::value
234 IsSigned<IntegerType>::value
277 bool IsTSigned = IsSigned<T>::value,
278 bool IsUSigned = IsSigned<U>::value>
303 bool IsTSigned = IsSigned<T>::value,
304 bool IsUSigned = IsSigned<U>::value,
375 return IsSigned<T>::value
391 return IsSigned<T>::value
397 bool IsSigned = IsSigned<T>::value,
402 template<typename T, bool IsSigned>
403 struct IsMulValidImpl<T, IsSigned, true>
459 !(IsSigned<T>::value && x == MinValue<T>::value && y == T(-1));
463 template<typename T, bool IsSigned = IsSigned<T>::value>