Lines Matching refs:p5
163 R Call(P1 p1, P2 p2, P3 p3, P4 p4, P5 p5) {
166 return DoCall(FUNCTION_CAST<FType*>(Generate()), p1, p2, p3, p4, p5);
216 R DoCall(F* f, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5) {
220 Simulator::CallArgument(p5), Simulator::CallArgument::End()};
225 int64_t p3 = 0, int64_t p4 = 0, int64_t p5 = 0) {
227 return static_cast<uintptr_t>(simulator->Call(f, 5, p1, p2, p3, p4, p5));
261 R DoCall(F* f, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5) {
265 ParameterTraits<P4>::Cast(p4), ParameterTraits<P5>::Cast(p5)));
270 int32_t p3 = 0, int32_t p4 = 0, int32_t p5 = 0) {
272 return static_cast<uintptr_t>(simulator->Call(f, 5, p1, p2, p3, p4, p5));
304 R DoCall(F* f, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5) {
308 ParameterTraits<P4>::Cast(p4), ParameterTraits<P5>::Cast(p5)));
333 R DoCall(F* f, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5) {
334 return f(p1, p2, p3, p4, p5);