Searched defs:OutArgSize (Results 1 - 6 of 6) sorted by relevance

/art/compiler/jni/quick/mips/
H A Dcalling_convention_mips.cc159 size_t MipsJniCallingConvention::OutArgSize() { function in class:art::mips::MipsJniCallingConvention
203 size_t offset = displacement_.Int32Value() - OutArgSize() + (itr_slots_ * kFramePointerSize);
204 CHECK_LT(offset, OutArgSize());
/art/compiler/jni/quick/mips64/
H A Dcalling_convention_mips64.cc160 size_t Mips64JniCallingConvention::OutArgSize() { function in class:art::mips64::Mips64JniCallingConvention
183 size_t offset = displacement_.Int32Value() - OutArgSize() + ((itr_args_ - 8) * kFramePointerSize);
184 CHECK_LT(offset, OutArgSize());
/art/compiler/jni/quick/x86/
H A Dcalling_convention_x86.cc191 size_t X86JniCallingConvention::OutArgSize() { function in class:art::x86::X86JniCallingConvention
209 return FrameOffset(displacement_.Int32Value() - OutArgSize() + (itr_slots_ * kFramePointerSize));
/art/compiler/jni/quick/x86_64/
H A Dcalling_convention_x86_64.cc160 size_t X86_64JniCallingConvention::OutArgSize() { function in class:art::x86_64::X86_64JniCallingConvention
195 return FrameOffset(displacement_.Int32Value() - OutArgSize() + (offset * kFramePointerSize));
/art/compiler/jni/quick/arm/
H A Dcalling_convention_arm.cc267 size_t ArmJniCallingConvention::OutArgSize() { function in class:art::arm::ArmJniCallingConvention
312 size_t offset = displacement_.Int32Value() - OutArgSize() + ((itr_slots_ - 4) * kFramePointerSize);
313 CHECK_LT(offset, OutArgSize());
/art/compiler/jni/quick/arm64/
H A Dcalling_convention_arm64.cc217 size_t Arm64JniCallingConvention::OutArgSize() { function in class:art::arm64::Arm64JniCallingConvention
258 size_t offset = displacement_.Int32Value() - OutArgSize() + (args_on_stack * kFramePointerSize);
259 CHECK_LT(offset, OutArgSize());

Completed in 6 milliseconds