Searched refs:CastType (Results 1 – 1 of 1) sorted by relevance
65 using CastType = typename ArgumentInfo::GuestType; in GuestArgument() local66 return Reference<ArgumentInfo, CastType>(kArgumentsLocations[index]); in GuestArgument()74 using CastType = typename ArgumentInfo::HostType; in HostArgument() local75 return Reference<ArgumentInfo, CastType>(kArgumentsLocations[index]); in HostArgument()81 using CastType = typename ArgumentInfo::GuestType; in GuestResult() local82 return Reference<ArgumentInfo, CastType>(kResultLocation); in GuestResult()88 using CastType = typename ArgumentInfo::HostType; in HostResult() local89 return Reference<ArgumentInfo, CastType>(kResultLocation); in HostResult()93 template <typename ArgumentInfo, typename CastType>96 return **reinterpret_cast<CastType**>(ArgLocationAddress(loc)); in Reference()[all …]