Home
last modified time | relevance | path

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

/frameworks/libs/binary_translation/guest_abi/riscv64/include/berberis/guest_abi/
Dguest_arguments_arch.h65 using CastType = typename ArgumentInfo::GuestType; in GuestArgument() local
66 return Reference<ArgumentInfo, CastType>(kArgumentsLocations[index]); in GuestArgument()
74 using CastType = typename ArgumentInfo::HostType; in HostArgument() local
75 return Reference<ArgumentInfo, CastType>(kArgumentsLocations[index]); in HostArgument()
81 using CastType = typename ArgumentInfo::GuestType; in GuestResult() local
82 return Reference<ArgumentInfo, CastType>(kResultLocation); in GuestResult()
88 using CastType = typename ArgumentInfo::HostType; in HostResult() local
89 return Reference<ArgumentInfo, CastType>(kResultLocation); in HostResult()
93 template <typename ArgumentInfo, typename CastType>
96 return **reinterpret_cast<CastType**>(ArgLocationAddress(loc)); in Reference()
[all …]