HomeSort by relevance Sort by last modified time
    Searched refs:arg_pos (Results 1 - 4 of 4) sorted by null

  /art/compiler/jni/quick/
calling_convention.cc 210 unsigned int arg_pos = itr_args_ - NumberOfExtraArgumentsForJni(); local
211 return arg_pos < NumArgs();
218 int arg_pos = itr_args_ - NumberOfExtraArgumentsForJni(); local
219 if (IsParamALongOrDouble(arg_pos)) {
241 int arg_pos = itr_args_ - NumberOfExtraArgumentsForJni(); local
242 return IsParamAReference(arg_pos);
258 int arg_pos = itr_args_ - NumberOfExtraArgumentsForJni(); local
259 return IsParamAFloatOrDouble(arg_pos);
271 int arg_pos = itr_args_ - NumberOfExtraArgumentsForJni(); local
272 return IsParamADouble(arg_pos);
284 int arg_pos = itr_args_ - NumberOfExtraArgumentsForJni(); local
304 int arg_pos = itr_args_ - NumberOfExtraArgumentsForJni(); local
    [all...]
  /art/compiler/jni/quick/arm/
calling_convention_arm.cc 276 size_t arg_pos = itr_args_ - NumberOfExtraArgumentsForJni(); local
278 (arg_pos < NumArgs()) &&
279 IsParamALongOrDouble(arg_pos)) {
300 int arg_pos = itr_args_ - NumberOfExtraArgumentsForJni(); local
301 if ((itr_args_ >= 2) && IsParamALongOrDouble(arg_pos)) {
  /art/compiler/jni/quick/mips/
calling_convention_mips.cc 203 size_t arg_pos = itr_args_ - NumberOfExtraArgumentsForJni(); local
205 (arg_pos < NumArgs()) &&
206 IsParamALongOrDouble(arg_pos)) {
227 int arg_pos = itr_args_ - NumberOfExtraArgumentsForJni(); local
228 if ((itr_args_ >= 2) && IsParamALongOrDouble(arg_pos)) {
  /art/runtime/interpreter/
interpreter.cc 435 for (size_t shorty_pos = 0, arg_pos = 0; cur_reg < num_regs; ++shorty_pos, ++arg_pos, cur_reg++) {
439 Object* o = reinterpret_cast<StackReference<Object>*>(&args[arg_pos])->AsMirrorPtr();
444 uint64_t wide_value = (static_cast<uint64_t>(args[arg_pos + 1]) << 32) | args[arg_pos];
447 arg_pos++;
451 shadow_frame->SetVReg(cur_reg, args[arg_pos]);

Completed in 434 milliseconds