OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:arg_pos
(Results
1 - 4
of
4
) sorted by null
/art/compiler/jni/quick/
calling_convention.cc
123
unsigned int
arg_pos
= itr_args_ - NumberOfExtraArgumentsForJni();
local
124
return
arg_pos
< NumArgs();
131
int
arg_pos
= itr_args_ - NumberOfExtraArgumentsForJni();
local
132
if (IsParamALongOrDouble(
arg_pos
)) {
151
int
arg_pos
= itr_args_ - NumberOfExtraArgumentsForJni();
local
152
return IsParamAReference(
arg_pos
);
173
int
arg_pos
= itr_args_ - NumberOfExtraArgumentsForJni();
local
174
return ParamSize(
arg_pos
);
/art/compiler/jni/quick/arm/
calling_convention_arm.cc
162
size_t
arg_pos
= itr_args_ - NumberOfExtraArgumentsForJni();
local
164
(
arg_pos
< NumArgs()) &&
165
IsParamALongOrDouble(
arg_pos
)) {
186
int
arg_pos
= itr_args_ - NumberOfExtraArgumentsForJni();
local
187
if ((itr_args_ >= 2) && IsParamALongOrDouble(
arg_pos
)) {
/art/compiler/jni/quick/mips/
calling_convention_mips.cc
166
size_t
arg_pos
= itr_args_ - NumberOfExtraArgumentsForJni();
local
168
(
arg_pos
< NumArgs()) &&
169
IsParamALongOrDouble(
arg_pos
)) {
190
int
arg_pos
= itr_args_ - NumberOfExtraArgumentsForJni();
local
191
if ((itr_args_ >= 2) && IsParamALongOrDouble(
arg_pos
)) {
/art/runtime/interpreter/
interpreter.cc
478
size_t
arg_pos
= is_range ? vregC + arg_offset : arg[arg_offset];
local
481
Object* o = shadow_frame.GetVRegReference(
arg_pos
);
503
uint64_t wide_value = (static_cast<uint64_t>(shadow_frame.GetVReg(
arg_pos
+ 1)) << 32) |
504
static_cast<uint32_t>(shadow_frame.GetVReg(
arg_pos
));
511
new_shadow_frame->SetVReg(cur_reg, shadow_frame.GetVReg(
arg_pos
));
588
size_t
arg_pos
= is_range ? vregC + arg_offset : arg[arg_offset];
local
591
Object* o = shadow_frame.GetVRegReference(
arg_pos
);
596
uint64_t wide_value = (static_cast<uint64_t>(shadow_frame.GetVReg(
arg_pos
+ 1)) << 32) |
597
static_cast<uint32_t>(shadow_frame.GetVReg(
arg_pos
));
604
new_shadow_frame->SetVReg(cur_reg, shadow_frame.GetVReg(
arg_pos
));
[
all
...]
Completed in 41 milliseconds