Home
last modified time | relevance | path

Searched refs:IntType (Results 1 – 6 of 6) sorted by relevance

/frameworks/compile/mclinker/include/mcld/Support/
DLEB128.h22 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 …]
/frameworks/compile/slang/
Dslang_rs_special_func.cpp44 const clang::QualType &IntType = FD->getASTContext().IntTy; in isGraphicsRootRSFunc() local
45 if (FD->getReturnType().getCanonicalType() == IntType) { in isGraphicsRootRSFunc()
60 const clang::QualType &IntType = FD->getASTContext().IntTy; in validateSpecialFuncDecl() local
67 if (QT != IntType) { in validateSpecialFuncDecl()
77 if (FD->getReturnType().getCanonicalType() != IntType) { in validateSpecialFuncDecl()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/stubs/
Dmathlimits.h165 #define DECL_SIGNED_INT_LIMITS(IntType, UnsignedIntType) \ argument
167 struct LIBPROTOBUF_EXPORT MathLimits<IntType> { \
168 typedef IntType Type; \
185 #define DECL_UNSIGNED_INT_LIMITS(IntType) \ argument
187 struct LIBPROTOBUF_EXPORT MathLimits<IntType> { \
188 typedef IntType Type; \
189 typedef IntType UnsignedType; \
Dstrutil.cc697 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 …]
/frameworks/av/media/libstagefright/foundation/include/media/stagefright/foundation/
DFlagged.h321 using IntType = typename underlying_integral_type<Flag>::type;
322 static constexpr IntType value = T::sFlagMask;
324 static constexpr IntType effective_value = T::sEffectiveMask;
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/
Dtext_format.cc1905 template<typename IntType>
1906 static string PaddedHex(IntType value) { in PaddedHex()