OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IsParamALongOrDouble
(Results
1 - 7
of
7
) sorted by null
/art/compiler/jni/quick/arm/
calling_convention_arm.cc
114
if (
IsParamALongOrDouble
(cur_arg)) {
165
IsParamALongOrDouble
(arg_pos)) {
187
if ((itr_args_ >= 2) &&
IsParamALongOrDouble
(arg_pos)) {
/art/compiler/jni/quick/mips/
calling_convention_mips.cc
114
if (
IsParamALongOrDouble
(cur_arg)) {
169
IsParamALongOrDouble
(arg_pos)) {
191
if ((itr_args_ >= 2) &&
IsParamALongOrDouble
(arg_pos)) {
/art/compiler/jni/quick/
calling_convention.cc
57
IsParamALongOrDouble
(itr_args_)) {
132
if (
IsParamALongOrDouble
(arg_pos)) {
calling_convention.h
90
bool
IsParamALongOrDouble
(unsigned int param) const {
/art/runtime/entrypoints/portable/
portable_trampoline_entrypoints.cc
78
bool
IsParamALongOrDouble
() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
79
return caller_mh_.
IsParamALongOrDouble
(param_index_);
93
if (
IsParamALongOrDouble
() && cur_arg_index_ == 2) {
98
cur_arg_index_ += (
IsParamALongOrDouble
() ? 2 : 1);
105
if (
IsParamALongOrDouble
() && cur_arg_index_ % 2 != 0) {
110
cur_arg_index_ += (
IsParamALongOrDouble
() ? 2 : 1);
123
args_in_regs = args_in_regs + (mh.
IsParamALongOrDouble
(i) ? 2 : 1);
/art/runtime/entrypoints/quick/
quick_trampoline_entrypoints.cc
162
bool
IsParamALongOrDouble
() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
176
is_split_long_or_double_ = (cur_arg_index_ == 2) &&
IsParamALongOrDouble
();
178
cur_arg_index_ += (
IsParamALongOrDouble
() ? 2 : 1);
186
cur_arg_index_ += (
IsParamALongOrDouble
() ? 2 : 1);
/art/runtime/
object_utils.h
560
bool
IsParamALongOrDouble
(size_t param) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Completed in 799 milliseconds