Home | History | Annotate | Download | only in interpreter

Lines Matching defs:fn

59       fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni());
65 jresult = fn(soa.Env(), klass.get());
70 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni());
74 fn(soa.Env(), klass.get());
77 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni());
81 result->SetZ(fn(soa.Env(), klass.get()));
84 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni());
88 result->SetB(fn(soa.Env(), klass.get(), args[0]));
91 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni());
95 result->SetI(fn(soa.Env(), klass.get(), args[0]));
98 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni());
106 jresult = fn(soa.Env(), klass.get(), arg0.get());
111 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni());
115 result->SetI(fn(soa.Env(), klass.get(), args[0], args[1]));
118 fntype* const fn = reinterpret_cast<fntype*>(const_cast<void*>(
125 result->SetI(fn(soa.Env(), klass.get(), arg0.get(), args[1]));
128 fntype* const fn =
133 result->SetS(fn(soa.Env(), klass.get(), args[0], args[1]));
136 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni());
140 fn(soa.Env(), klass.get(), args[0], args[1]);
143 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni());
151 result->SetZ(fn(soa.Env(), klass.get(), arg0.get(), arg1.get()));
154 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni());
162 result->SetZ(fn(soa.Env(), klass.get(), args[0], arg1.get(), arg2.get()));
165 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni());
171 fn(soa.Env(), klass.get(), args[0], arg1.get(), args[2], args[3]);
174 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni());
182 fn(soa.Env(), klass.get(), arg0.get(), args[1], arg2.get(), args[3], args[4]);
190 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni());
196 jresult = fn(soa.Env(), rcvr.get());
201 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni());
205 fn(soa.Env(), rcvr.get());
208 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni());
216 jresult = fn(soa.Env(), rcvr.get(), arg0.get());
222 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni());
226 result->SetI(fn(soa.Env(), rcvr.get(), args[0], args[1]));