Searched refs:arg_pos (Results 1 – 4 of 4) sorted by relevance
142 unsigned int arg_pos = itr_args_ - NumberOfExtraArgumentsForJni(); in HasNext() local143 return arg_pos < NumArgs(); in HasNext()150 int arg_pos = itr_args_ - NumberOfExtraArgumentsForJni(); in Next() local151 if (IsParamALongOrDouble(arg_pos)) { in Next()173 int arg_pos = itr_args_ - NumberOfExtraArgumentsForJni(); in IsCurrentParamAReference() local174 return IsParamAReference(arg_pos); in IsCurrentParamAReference()190 int arg_pos = itr_args_ - NumberOfExtraArgumentsForJni(); in IsCurrentParamAFloatOrDouble() local191 return IsParamAFloatOrDouble(arg_pos); in IsCurrentParamAFloatOrDouble()203 int arg_pos = itr_args_ - NumberOfExtraArgumentsForJni(); in IsCurrentParamADouble() local204 return IsParamADouble(arg_pos); in IsCurrentParamADouble()[all …]
163 size_t arg_pos = itr_args_ - NumberOfExtraArgumentsForJni(); in Next() local165 (arg_pos < NumArgs()) && in Next()166 IsParamALongOrDouble(arg_pos)) { in Next()187 int arg_pos = itr_args_ - NumberOfExtraArgumentsForJni(); in CurrentParamRegister() local188 if ((itr_args_ >= 2) && IsParamALongOrDouble(arg_pos)) { in CurrentParamRegister()
166 size_t arg_pos = itr_args_ - NumberOfExtraArgumentsForJni(); in Next() local168 (arg_pos < NumArgs()) && in Next()169 IsParamALongOrDouble(arg_pos)) { in Next()190 int arg_pos = itr_args_ - NumberOfExtraArgumentsForJni(); in CurrentParamRegister() local191 if ((itr_args_ >= 2) && IsParamALongOrDouble(arg_pos)) { in CurrentParamRegister()
439 for (size_t shorty_pos = 0, arg_pos = 0; cur_reg < num_regs; ++shorty_pos, ++arg_pos, cur_reg++) { in EnterInterpreterFromInvoke() local443 Object* o = reinterpret_cast<StackReference<Object>*>(&args[arg_pos])->AsMirrorPtr(); in EnterInterpreterFromInvoke()448 uint64_t wide_value = (static_cast<uint64_t>(args[arg_pos + 1]) << 32) | args[arg_pos]; in EnterInterpreterFromInvoke()451 arg_pos++; in EnterInterpreterFromInvoke()455 shadow_frame->SetVReg(cur_reg, args[arg_pos]); in EnterInterpreterFromInvoke()