Searched refs:arg_pos (Results 1 – 4 of 4) sorted by relevance
146 unsigned int arg_pos = itr_args_ - NumberOfExtraArgumentsForJni(); in HasNext() local147 return arg_pos < NumArgs(); in HasNext()154 int arg_pos = itr_args_ - NumberOfExtraArgumentsForJni(); in Next() local155 if (IsParamALongOrDouble(arg_pos)) { in Next()177 int arg_pos = itr_args_ - NumberOfExtraArgumentsForJni(); in IsCurrentParamAReference() local178 return IsParamAReference(arg_pos); in IsCurrentParamAReference()194 int arg_pos = itr_args_ - NumberOfExtraArgumentsForJni(); in IsCurrentParamAFloatOrDouble() local195 return IsParamAFloatOrDouble(arg_pos); in IsCurrentParamAFloatOrDouble()207 int arg_pos = itr_args_ - NumberOfExtraArgumentsForJni(); in IsCurrentParamADouble() local208 return IsParamADouble(arg_pos); in IsCurrentParamADouble()[all …]
167 size_t arg_pos = itr_args_ - NumberOfExtraArgumentsForJni(); in Next() local169 (arg_pos < NumArgs()) && in Next()170 IsParamALongOrDouble(arg_pos)) { in Next()191 int arg_pos = itr_args_ - NumberOfExtraArgumentsForJni(); in CurrentParamRegister() local192 if ((itr_args_ >= 2) && IsParamALongOrDouble(arg_pos)) { in CurrentParamRegister()
276 size_t arg_pos = itr_args_ - NumberOfExtraArgumentsForJni(); in Next() local278 (arg_pos < NumArgs()) && in Next()279 IsParamALongOrDouble(arg_pos)) { in Next()300 int arg_pos = itr_args_ - NumberOfExtraArgumentsForJni(); in CurrentParamRegister() local301 if ((itr_args_ >= 2) && IsParamALongOrDouble(arg_pos)) { in CurrentParamRegister()
345 for (size_t shorty_pos = 0, arg_pos = 0; cur_reg < num_regs; ++shorty_pos, ++arg_pos, cur_reg++) { in EnterInterpreterFromInvoke() local349 Object* o = reinterpret_cast<StackReference<Object>*>(&args[arg_pos])->AsMirrorPtr(); in EnterInterpreterFromInvoke()354 uint64_t wide_value = (static_cast<uint64_t>(args[arg_pos + 1]) << 32) | args[arg_pos]; in EnterInterpreterFromInvoke()357 arg_pos++; in EnterInterpreterFromInvoke()361 shadow_frame->SetVReg(cur_reg, args[arg_pos]); in EnterInterpreterFromInvoke()