Searched refs:IntType (Results 1 – 6 of 6) sorted by relevance
22 template <typename IntType>23 size_t encode(ByteType*& pBuf, IntType pValue);25 template <typename IntType>26 IntType decode(const ByteType* pBuf, size_t& pSize);28 template <typename IntType>29 IntType decode(const ByteType*& pBuf);35 template <typename IntType>36 size_t size(IntType pValue) { in size()95 template <typename IntType>96 size_t encode(char*& pBuf, IntType pValue) { in encode()[all …]
44 const clang::QualType &IntType = FD->getASTContext().IntTy; in isGraphicsRootRSFunc() local45 if (FD->getReturnType().getCanonicalType() == IntType) { in isGraphicsRootRSFunc()60 const clang::QualType &IntType = FD->getASTContext().IntTy; in validateSpecialFuncDecl() local67 if (QT != IntType) { in validateSpecialFuncDecl()77 if (FD->getReturnType().getCanonicalType() != IntType) { in validateSpecialFuncDecl()
165 #define DECL_SIGNED_INT_LIMITS(IntType, UnsignedIntType) \ argument167 struct LIBPROTOBUF_EXPORT MathLimits<IntType> { \168 typedef IntType Type; \185 #define DECL_UNSIGNED_INT_LIMITS(IntType) \ argument187 struct LIBPROTOBUF_EXPORT MathLimits<IntType> { \188 typedef IntType Type; \189 typedef IntType UnsignedType; \
697 template<typename IntType>699 string text, IntType* value_p) { in safe_parse_positive_int()701 IntType value = 0; in safe_parse_positive_int()702 const IntType vmax = std::numeric_limits<IntType>::max(); in safe_parse_positive_int()705 const IntType vmax_over_base = vmax / base; in safe_parse_positive_int()731 template<typename IntType>733 const string& text, IntType* value_p) { in safe_parse_negative_int()735 IntType value = 0; in safe_parse_negative_int()736 const IntType vmin = std::numeric_limits<IntType>::min(); in safe_parse_negative_int()739 IntType vmin_over_base = vmin / base; in safe_parse_negative_int()[all …]
321 using IntType = typename underlying_integral_type<Flag>::type;322 static constexpr IntType value = T::sFlagMask;324 static constexpr IntType effective_value = T::sEffectiveMask;
1905 template<typename IntType>1906 static string PaddedHex(IntType value) { in PaddedHex()