HomeSort by relevance Sort by last modified time
    Searched refs:NumberOfOutgoingStackArgs (Results 1 - 11 of 11) sorted by null

  /art/compiler/jni/quick/x86/
calling_convention_x86.cc 136 return RoundUp(NumberOfOutgoingStackArgs() * kFramePointerSize, kStackAlignment);
156 size_t X86JniCallingConvention::NumberOfOutgoingStackArgs() {
calling_convention_x86.h 78 size_t NumberOfOutgoingStackArgs() OVERRIDE;
  /art/compiler/jni/quick/arm/
calling_convention_arm.h 80 size_t NumberOfOutgoingStackArgs() OVERRIDE;
calling_convention_arm.cc 155 return RoundUp(NumberOfOutgoingStackArgs() * kFramePointerSize + padding_,
204 size_t ArmJniCallingConvention::NumberOfOutgoingStackArgs() {
  /art/compiler/jni/quick/arm64/
calling_convention_arm64.h 77 size_t NumberOfOutgoingStackArgs() OVERRIDE;
calling_convention_arm64.cc 207 return RoundUp(NumberOfOutgoingStackArgs() * kFramePointerSize, kStackAlignment);
252 size_t Arm64JniCallingConvention::NumberOfOutgoingStackArgs() {
  /art/compiler/jni/quick/mips/
calling_convention_mips.h 80 size_t NumberOfOutgoingStackArgs() OVERRIDE;
calling_convention_mips.cc 159 return RoundUp(NumberOfOutgoingStackArgs() * kFramePointerSize + padding_, kStackAlignment);
207 size_t MipsJniCallingConvention::NumberOfOutgoingStackArgs() {
  /art/compiler/jni/quick/x86_64/
calling_convention_x86_64.h 76 size_t NumberOfOutgoingStackArgs() OVERRIDE;
calling_convention_x86_64.cc 159 return RoundUp(NumberOfOutgoingStackArgs() * kFramePointerSize, kStackAlignment);
196 size_t X86_64JniCallingConvention::NumberOfOutgoingStackArgs() {
  /art/compiler/jni/quick/
calling_convention.h 356 virtual size_t NumberOfOutgoingStackArgs() = 0;

Completed in 487 milliseconds