OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:frame_data_size
(Results
1 - 5
of
5
) sorted by null
/art/compiler/jni/quick/x86/
calling_convention_x86.cc
127
size_t
frame_data_size
= sizeof(StackReference<mirror::ArtMethod>) +
local
132
return RoundUp(
frame_data_size
+ handle_scope_size + SizeOfReturnValue(), kStackAlignment);
/art/compiler/jni/quick/arm/
calling_convention_arm.cc
146
size_t
frame_data_size
= sizeof(StackReference<mirror::ArtMethod>) +
local
151
return RoundUp(
frame_data_size
+ handle_scope_size + SizeOfReturnValue(), kStackAlignment);
/art/compiler/jni/quick/mips/
calling_convention_mips.cc
150
size_t
frame_data_size
= sizeof(StackReference<mirror::ArtMethod>) +
local
155
return RoundUp(
frame_data_size
+ handle_scope_size + SizeOfReturnValue(), kStackAlignment);
/art/compiler/jni/quick/arm64/
calling_convention_arm64.cc
198
size_t
frame_data_size
= sizeof(StackReference<mirror::ArtMethod>) +
local
203
return RoundUp(
frame_data_size
+ handle_scope_size + SizeOfReturnValue(), kStackAlignment);
/art/compiler/jni/quick/x86_64/
calling_convention_x86_64.cc
150
size_t
frame_data_size
= sizeof(StackReference<mirror::ArtMethod>) +
local
155
return RoundUp(
frame_data_size
+ handle_scope_size + SizeOfReturnValue(), kStackAlignment);
Completed in 185 milliseconds