Searched refs:arg_pos (Results 1 – 4 of 4) sorted by relevance
210 unsigned int arg_pos = itr_args_ - NumberOfExtraArgumentsForJni(); in HasNext() local211 return arg_pos < NumArgs(); in HasNext()218 int arg_pos = itr_args_ - NumberOfExtraArgumentsForJni(); in Next() local219 if (IsParamALongOrDouble(arg_pos)) { in Next()241 int arg_pos = itr_args_ - NumberOfExtraArgumentsForJni(); in IsCurrentParamAReference() local242 return IsParamAReference(arg_pos); in IsCurrentParamAReference()258 int arg_pos = itr_args_ - NumberOfExtraArgumentsForJni(); in IsCurrentParamAFloatOrDouble() local259 return IsParamAFloatOrDouble(arg_pos); in IsCurrentParamAFloatOrDouble()271 int arg_pos = itr_args_ - NumberOfExtraArgumentsForJni(); in IsCurrentParamADouble() local272 return IsParamADouble(arg_pos); in IsCurrentParamADouble()[all …]
203 size_t arg_pos = itr_args_ - NumberOfExtraArgumentsForJni(); in Next() local205 (arg_pos < NumArgs()) && in Next()206 IsParamALongOrDouble(arg_pos)) { in Next()227 int arg_pos = itr_args_ - NumberOfExtraArgumentsForJni(); in CurrentParamRegister() local228 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()
435 for (size_t shorty_pos = 0, arg_pos = 0; cur_reg < num_regs; ++shorty_pos, ++arg_pos, cur_reg++) { in EnterInterpreterFromInvoke() local439 Object* o = reinterpret_cast<StackReference<Object>*>(&args[arg_pos])->AsMirrorPtr(); in EnterInterpreterFromInvoke()444 uint64_t wide_value = (static_cast<uint64_t>(args[arg_pos + 1]) << 32) | args[arg_pos]; in EnterInterpreterFromInvoke()447 arg_pos++; in EnterInterpreterFromInvoke()451 shadow_frame->SetVReg(cur_reg, args[arg_pos]); in EnterInterpreterFromInvoke()