OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SizeOfReturnValue
(Results
1 - 8
of
8
) sorted by null
/art/compiler/jni/quick/
jni_compiler.cc
385
if (main_jni_conv->
SizeOfReturnValue
() != 0 && !reference_return) {
393
__ Store(return_save_location, main_jni_conv->ReturnRegister(), main_jni_conv->
SizeOfReturnValue
());
468
if (main_jni_conv->
SizeOfReturnValue
() != 0 && !reference_return) {
469
__ Load(mr_conv->ReturnRegister(), return_save_location, mr_conv->
SizeOfReturnValue
());
calling_convention.h
39
size_t
SizeOfReturnValue
() const {
/art/compiler/jni/quick/mips64/
calling_convention_mips64.cc
158
return RoundUp(frame_data_size + handle_scope_size +
SizeOfReturnValue
(), kStackAlignment);
/art/compiler/jni/quick/x86/
calling_convention_x86.cc
188
return RoundUp(frame_data_size + handle_scope_size +
SizeOfReturnValue
(), kStackAlignment);
/art/compiler/jni/quick/arm/
calling_convention_arm.cc
264
return RoundUp(frame_data_size + handle_scope_size +
SizeOfReturnValue
(), kStackAlignment);
/art/compiler/jni/quick/arm64/
calling_convention_arm64.cc
214
return RoundUp(frame_data_size + handle_scope_size +
SizeOfReturnValue
(), kStackAlignment);
/art/compiler/jni/quick/mips/
calling_convention_mips.cc
192
return RoundUp(frame_data_size + handle_scope_size +
SizeOfReturnValue
(), kStackAlignment);
/art/compiler/jni/quick/x86_64/
calling_convention_x86_64.cc
156
return RoundUp(frame_data_size + handle_scope_size +
SizeOfReturnValue
(), kStackAlignment);
Completed in 497 milliseconds