/art/compiler/jni/quick/mips64/ |
D | calling_convention_mips64.cc | 204 size_t Mips64JniCallingConvention::OutArgSize() { in OutArgSize() function in art::mips64::Mips64JniCallingConvention 232 size_t offset = displacement_.Int32Value() - OutArgSize() + (args_on_stack * kFramePointerSize); in CurrentParamStackOffset() 233 CHECK_LT(offset, OutArgSize()); in CurrentParamStackOffset()
|
D | calling_convention_mips64.h | 68 size_t OutArgSize() OVERRIDE;
|
/art/compiler/jni/quick/x86_64/ |
D | calling_convention_x86_64.cc | 222 size_t X86_64JniCallingConvention::OutArgSize() { in OutArgSize() function in art::x86_64::X86_64JniCallingConvention 267 size_t offset = displacement_.Int32Value() - OutArgSize() + (args_on_stack * kFramePointerSize); in CurrentParamStackOffset() 268 CHECK_LT(offset, OutArgSize()); in CurrentParamStackOffset()
|
D | calling_convention_x86_64.h | 62 size_t OutArgSize() OVERRIDE;
|
/art/compiler/jni/quick/mips/ |
D | calling_convention_mips.cc | 363 size_t MipsJniCallingConvention::OutArgSize() { in OutArgSize() function in art::mips::MipsJniCallingConvention 442 size_t offset = displacement_.Int32Value() - OutArgSize() + (itr_slots_ * kFramePointerSize); in CurrentParamStackOffset() 443 CHECK_LT(offset, OutArgSize()); in CurrentParamStackOffset()
|
D | calling_convention_mips.h | 69 size_t OutArgSize() OVERRIDE;
|
/art/compiler/jni/quick/arm64/ |
D | calling_convention_arm64.cc | 271 size_t Arm64JniCallingConvention::OutArgSize() { in OutArgSize() function in art::arm64::Arm64JniCallingConvention 322 size_t offset = displacement_.Int32Value() - OutArgSize() + (args_on_stack * kFramePointerSize); in CurrentParamStackOffset() 323 CHECK_LT(offset, OutArgSize()); in CurrentParamStackOffset()
|
D | calling_convention_arm64.h | 66 size_t OutArgSize() OVERRIDE;
|
/art/compiler/jni/quick/x86/ |
D | calling_convention_x86.cc | 241 size_t X86JniCallingConvention::OutArgSize() { in OutArgSize() function in art::x86::X86JniCallingConvention 263 return FrameOffset(displacement_.Int32Value() - OutArgSize() + (itr_slots_ * kFramePointerSize)); in CurrentParamStackOffset()
|
D | calling_convention_x86.h | 69 size_t OutArgSize() OVERRIDE;
|
/art/compiler/jni/quick/arm/ |
D | calling_convention_arm.cc | 412 size_t ArmJniCallingConvention::OutArgSize() { in OutArgSize() function in art::arm::ArmJniCallingConvention 471 - OutArgSize() in CurrentParamStackOffset() 473 CHECK_LT(offset, OutArgSize()); in CurrentParamStackOffset()
|
D | calling_convention_arm.h | 67 size_t OutArgSize() OVERRIDE;
|
/art/compiler/jni/quick/ |
D | calling_convention.h | 300 virtual size_t OutArgSize() = 0;
|
D | jni_compiler.cc | 315 const size_t main_out_arg_size = main_jni_conv->OutArgSize(); in ArtJniCompileMethodInternal() 568 const size_t end_out_arg_size = end_jni_conv->OutArgSize(); in ArtJniCompileMethodInternal()
|