HomeSort by relevance Sort by last modified time
    Searched defs:OutArgSize (Results 1 - 5 of 5) sorted by null

  /art/compiler/jni/quick/x86/
calling_convention_x86.cc 135 size_t X86JniCallingConvention::OutArgSize() {
153 return FrameOffset(displacement_.Int32Value() - OutArgSize() + (itr_slots_ * kFramePointerSize));
  /art/compiler/jni/quick/arm/
calling_convention_arm.cc 154 size_t ArmJniCallingConvention::OutArgSize() {
199 size_t offset = displacement_.Int32Value() - OutArgSize() + ((itr_slots_ - 4) * kFramePointerSize);
200 CHECK_LT(offset, OutArgSize());
  /art/compiler/jni/quick/arm64/
calling_convention_arm64.cc 206 size_t Arm64JniCallingConvention::OutArgSize() {
247 size_t offset = displacement_.Int32Value() - OutArgSize() + (args_on_stack * kFramePointerSize);
248 CHECK_LT(offset, OutArgSize());
  /art/compiler/jni/quick/mips/
calling_convention_mips.cc 158 size_t MipsJniCallingConvention::OutArgSize() {
202 size_t offset = displacement_.Int32Value() - OutArgSize() + (itr_slots_ * kFramePointerSize);
203 CHECK_LT(offset, OutArgSize());
  /art/compiler/jni/quick/x86_64/
calling_convention_x86_64.cc 158 size_t X86_64JniCallingConvention::OutArgSize() {
193 return FrameOffset(displacement_.Int32Value() - OutArgSize() + (offset * kFramePointerSize));

Completed in 185 milliseconds