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

  /art/compiler/jni/quick/mips64/
calling_convention_mips64.cc 204 size_t Mips64JniCallingConvention::OutArgSize() {
232 size_t offset = displacement_.Int32Value() - OutArgSize() + (args_on_stack * kFramePointerSize);
233 CHECK_LT(offset, OutArgSize());
  /art/compiler/jni/quick/arm/
calling_convention_arm.cc 412 size_t ArmJniCallingConvention::OutArgSize() {
471 - OutArgSize()
473 CHECK_LT(offset, OutArgSize());
  /art/compiler/jni/quick/arm64/
calling_convention_arm64.cc 271 size_t Arm64JniCallingConvention::OutArgSize() {
322 size_t offset = displacement_.Int32Value() - OutArgSize() + (args_on_stack * kFramePointerSize);
323 CHECK_LT(offset, OutArgSize());
  /art/compiler/jni/quick/mips/
calling_convention_mips.cc 363 size_t MipsJniCallingConvention::OutArgSize() {
442 size_t offset = displacement_.Int32Value() - OutArgSize() + (itr_slots_ * kFramePointerSize);
443 CHECK_LT(offset, OutArgSize());
  /art/compiler/jni/quick/x86/
calling_convention_x86.cc 241 size_t X86JniCallingConvention::OutArgSize() {
263 return FrameOffset(displacement_.Int32Value() - OutArgSize() + (itr_slots_ * kFramePointerSize));
  /art/compiler/jni/quick/x86_64/
calling_convention_x86_64.cc 222 size_t X86_64JniCallingConvention::OutArgSize() {
267 size_t offset = displacement_.Int32Value() - OutArgSize() + (args_on_stack * kFramePointerSize);
268 CHECK_LT(offset, OutArgSize());

Completed in 57 milliseconds