Searched refs:Dest (Results 1 – 2 of 2) sorted by relevance
88 template <class Dest, class Source>89 inline Dest bit_cast(const Source& source) { in bit_cast()92 static_assert(sizeof(Dest) == sizeof(Source), "sizes should be equal"); in bit_cast()93 Dest dest; in bit_cast()100 template <typename Dest, typename Source>101 constexpr Dest dchecked_integral_cast(Source source) { in dchecked_integral_cast()104 (static_cast<intmax_t>(std::numeric_limits<Dest>::min()) <= in dchecked_integral_cast()106 source >= static_cast<Source>(std::numeric_limits<Dest>::min())) && in dchecked_integral_cast()108 (static_cast<uintmax_t>(std::numeric_limits<Dest>::max()) >= in dchecked_integral_cast()110 source <= static_cast<Source>(std::numeric_limits<Dest>::max()))) in dchecked_integral_cast()[all …]
237 uintptr_t Dest() const { in Dest() function in art::gc::space::RelocationRange254 << reinterpret_cast<const void*>(reloc.Dest()) << "-" in operator <<()255 << reinterpret_cast<const void*>(reloc.Dest() + reloc.Length()) << ")"; in operator <<()