Home
last modified time | relevance | path

Searched defs:ReactorType (Results 1 – 2 of 2) sorted by relevance

/aosp_15_r20/external/swiftshader/src/Reactor/
H A DTraits.hpp248 struct ReactorType<T, std::enable_if_t<IsDefined<CToReactorT<T>>::value>> struct
250 using type = CToReactorT<T>;
251 static type cast(T v) { return CToReactor<T>::cast(v); } in cast()
254 struct ReactorType<T, std::enable_if_t<IsRValue<T>::value>> struct
256 using type = typename T::rvalue_underlying_type;
257 static type cast(T v) { return type(v); } in cast()
260 struct ReactorType<T, std::enable_if_t<IsLValue<T>::value>> struct
262 using type = T;
263 static type cast(T v) { return type(v); } in cast()
266 struct ReactorType<T, std::enable_if_t<IsReference<T>::value>> struct
[all …]
/aosp_15_r20/external/swiftshader/tests/ReactorUnitTests/
H A DReactorUnitTests.cpp2624 using ReactorType = typename std::tuple_element<1, T>::type; typedef in CToReactorTCastTest
2642 using ReactorType = typename TestFixture::ReactorType; in TYPED_TEST() typedef
2669 using ReactorType = typename std::tuple_element<1, T>::type; typedef in GEPTest
2707 using ReactorType = typename TestFixture::ReactorType; in TYPED_TEST() typedef