Home
last modified time | relevance | path

Searched refs:RawType (Results 1 – 2 of 2) sorted by relevance

/frameworks/libs/binary_translation/base/
Dbit_util_test.cc227 static_assert(std::is_same_v<RawInt16, RawType<RawInt16>>);
228 static_assert(std::is_same_v<RawInt16, RawType<Int16>>);
229 static_assert(std::is_same_v<RawInt16, RawType<UInt16>>);
230 static_assert(std::is_same_v<RawInt16, RawType<SatInt16>>);
231 static_assert(std::is_same_v<RawInt16, RawType<SatUInt16>>);
/frameworks/libs/binary_translation/base/include/berberis/base/
Dbit_util.h853 using RawType = decltype(BitCastToRaw(std::declval<T>())); variable