Searched refs:UnsignedType (Results 1 – 7 of 7) sorted by relevance
30 using UnsignedType = typename std::make_unsigned<CharType>::type; variable39 : m_Ptr(reinterpret_cast<const UnsignedType*>(ptr)), in StringViewTemplate()43 : m_Ptr(reinterpret_cast<const UnsignedType*>(ptr)), m_Length(len) {} in StringViewTemplate()45 template <typename U = UnsignedType>47 const UnsignedType* ptr,56 m_Ptr = reinterpret_cast<const UnsignedType*>(&ch); in StringViewTemplate()66 explicit StringViewTemplate(const std::vector<UnsignedType>& vec) { in StringViewTemplate()72 m_Ptr = reinterpret_cast<const UnsignedType*>(src);126 const UnsignedType* raw_str() const { return m_Ptr.Get(); } in raw_str()136 const UnsignedType& operator[](const size_t index) const {[all …]
948 std::vector<WideStringView::UnsignedType> null_vec; in TEST()952 std::vector<WideStringView::UnsignedType> lower_a_vec( in TEST()953 10, static_cast<WideStringView::UnsignedType>(L'a')); in TEST()958 std::vector<WideStringView::UnsignedType> cleared_vec; in TEST()
147 …eigen_assert(static_cast<typename UnsignedTraits<T>::type>(divider) < NumTraits<UnsignedType>::hig…151 const int leading_zeros = count_leading_zeros(static_cast<UnsignedType>(divider));165 …eigen_assert(static_cast<typename UnsignedTraits<T>::type>(numerator) < NumTraits<UnsignedType>::h…168 UnsignedType t1 = muluh(multiplier, numerator);169 UnsignedType t = (static_cast<UnsignedType>(numerator) - t1) >> shift1;174 typedef typename DividerTraits<T>::type UnsignedType;175 UnsignedType multiplier;
70 typedef T UnsignedType; typedef169 typedef UnsignedIntType UnsignedType; \189 typedef IntType UnsignedType; \248 typedef FP_Type UnsignedType; \
118 static typename MathLimits<T>::UnsignedType AbsDiff(const T x, const T y) { in AbsDiff()120 typedef typename MathLimits<T>::UnsignedType R; in AbsDiff()
164 using UnsignedType = typename std::make_unsigned<MaybeExtendedType>::type; in WriteVarInt() local167 UnsignedType unsigned_value = static_cast<UnsignedType>(extended_value); in WriteVarInt()
73 std::vector<WideStringView::UnsignedType> vec(140000, L'A'); in TEST()