Searched refs:IntType (Results 1 – 9 of 9) sorted by relevance
/aosp12/frameworks/compile/mclinker/include/mcld/Support/ |
H A D | LEB128.h | 22 template <typename IntType> 23 size_t encode(ByteType*& pBuf, IntType pValue); 25 template <typename IntType> 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> 100 template <typename IntType> 105 template <typename IntType> [all …]
|
/aosp12/hardware/interfaces/confirmationui/support/include/android/hardware/confirmationui/support/ |
H A D | confirmationui_utils.h | 188 template <typename IntType, uint32_t byteOrder> 191 template <typename IntType> 193 inline static IntType hton(const IntType& value) { 194 IntType result = {}; 204 template <typename IntType> 205 struct choose_hton<IntType, __ORDER_BIG_ENDIAN__> { 206 inline static IntType hton(const IntType& value) { return value; } 209 template <typename IntType> 210 inline IntType hton(const IntType& value) { 214 template <typename IntType> [all …]
|
/aosp12/frameworks/compile/slang/ |
H A D | slang_rs_special_func.cpp | 44 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()
|
/aosp12/system/chre/apps/wifi_offload/test/include/ |
H A D | random_generator.h | 48 template <typename IntType> 49 IntType get() { in get() 50 return static_cast<IntType>(uniform_distribution_(random_engine_)); in get()
|
/aosp12/system/teeui/libteeui/include/teeui/ |
H A D | utils.h | 141 template <typename IntType, uint32_t byteOrder> struct choose_hton; 143 template <typename IntType> struct choose_hton<IntType, __ORDER_LITTLE_ENDIAN__> { 144 inline static IntType hton(const IntType& value) { 145 IntType result = {}; 148 for (int i = sizeof(IntType) - 1; i >= 0; --i) { 155 template <typename IntType> struct choose_hton<IntType, __ORDER_BIG_ENDIAN__> { 156 inline static IntType hton(const IntType& value) { return value; } 159 template <typename IntType> inline IntType hton(const IntType& value) { 160 return choose_hton<IntType, __BYTE_ORDER__>::hton(value); 163 template <typename IntType> inline IntType ntoh(const IntType& value) { [all …]
|
/aosp12/art/runtime/mirror/ |
H A D | dex_cache.h | 493 template <typename IntType> 494 struct PACKED(2 * sizeof(IntType)) ConversionPair { 495 ConversionPair(IntType f, IntType s) : first(f), second(s) { } in ConversionPair() 498 IntType first; 499 IntType second;
|
/aosp12/frameworks/av/media/libstagefright/foundation/include/media/stagefright/foundation/ |
H A D | Flagged.h | 321 using IntType = typename underlying_integral_type<Flag>::type; 322 static constexpr IntType value = T::sFlagMask; 324 static constexpr IntType effective_value = T::sEffectiveMask;
|
/aosp12/system/testing/gtest_extras/ |
H A D | Options.cpp | 94 template <typename IntType> 95 static bool GetNumeric(const std::string& arg, const std::string& value, IntType* numeric_value, in GetNumeric()
|
/aosp12/system/incremental_delivery/incfs/ |
H A D | incfs.cpp | 2059 template <class IntType> 2060 static int readIntFromFile(std::string_view rootDir, std::string_view subPath, IntType& result) { in readIntFromFile()
|