Home
last modified time | relevance | path

Searched defs:make_unsigned (Results 1 – 7 of 7) sorted by relevance

/prebuilts/clang/host/linux-x86/clang-r547379/include/c++/v1/__type_traits/
Dmake_unsigned.h80 struct make_unsigned { struct
81 using type _LIBCPP_NODEBUG = __make_unsigned_t<_Tp>; argument
/prebuilts/clang/host/linux-x86/clang-r522817/include/c++/v1/__type_traits/
Dmake_unsigned.h80 struct make_unsigned { struct
81 using type _LIBCPP_NODEBUG = __make_unsigned_t<_Tp>; argument
/prebuilts/clang/host/linux-x86/clang-r536225/include/c++/v1/__type_traits/
Dmake_unsigned.h80 struct make_unsigned { struct
81 using type _LIBCPP_NODEBUG = __make_unsigned_t<_Tp>; argument
/prebuilts/clang/host/linux-x86/clang-r530567/include/c++/v1/__type_traits/
Dmake_unsigned.h80 struct make_unsigned { struct
81 using type _LIBCPP_NODEBUG = __make_unsigned_t<_Tp>; argument
/prebuilts/clang/host/linux-x86/embedded-sysroots/pigweed_riscv32_sysroot/include/c++/v1/__type_traits/
Dmake_unsigned.h80 struct make_unsigned { struct
81 using type _LIBCPP_NODEBUG = __make_unsigned_t<_Tp>; argument
/prebuilts/android-emulator/darwin-x86_64/include/flatbuffers/
Dstl_emulation.h142 template <typename T> using make_unsigned = std::make_unsigned<T>; variable
156 template<typename T> struct make_unsigned { struct
160 template<> struct make_unsigned<char> { using type = unsigned char; }; argument
/prebuilts/android-emulator/linux-x86_64/include/flatbuffers/
Dstl_emulation.h79 template <typename T> using make_unsigned = std::make_unsigned<T>; variable
96 template <typename T> struct make_unsigned : public std::make_unsigned<T> {}; struct