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

  /art/compiler/jni/quick/arm/
calling_convention_arm.h 78 size_t NumberOfOutgoingStackArgs() OVERRIDE;
calling_convention_arm.cc 268 return RoundUp(NumberOfOutgoingStackArgs() * kFramePointerSize + padding_,
317 size_t ArmJniCallingConvention::NumberOfOutgoingStackArgs() {
  /art/compiler/jni/quick/arm64/
calling_convention_arm64.h 77 size_t NumberOfOutgoingStackArgs() OVERRIDE;
calling_convention_arm64.cc 218 return RoundUp(NumberOfOutgoingStackArgs() * kFramePointerSize, kStackAlignment);
263 size_t Arm64JniCallingConvention::NumberOfOutgoingStackArgs() {
  /art/compiler/jni/quick/mips/
calling_convention_mips.h 80 size_t NumberOfOutgoingStackArgs() OVERRIDE;
calling_convention_mips.cc 196 return RoundUp(NumberOfOutgoingStackArgs() * kFramePointerSize + padding_, kStackAlignment);
244 size_t MipsJniCallingConvention::NumberOfOutgoingStackArgs() {
  /art/compiler/jni/quick/mips64/
calling_convention_mips64.h 79 size_t NumberOfOutgoingStackArgs() OVERRIDE;
calling_convention_mips64.cc 162 return RoundUp(NumberOfOutgoingStackArgs() * kFramePointerSize, kStackAlignment);
189 size_t Mips64JniCallingConvention::NumberOfOutgoingStackArgs() {
  /art/compiler/jni/quick/x86/
calling_convention_x86.h 81 size_t NumberOfOutgoingStackArgs() OVERRIDE;
calling_convention_x86.cc 192 return RoundUp(NumberOfOutgoingStackArgs() * kFramePointerSize, kStackAlignment);
212 size_t X86JniCallingConvention::NumberOfOutgoingStackArgs() {
  /art/compiler/jni/quick/x86_64/
calling_convention_x86_64.h 75 size_t NumberOfOutgoingStackArgs() OVERRIDE;
calling_convention_x86_64.cc 160 return RoundUp(NumberOfOutgoingStackArgs() * kFramePointerSize, kStackAlignment);
197 size_t X86_64JniCallingConvention::NumberOfOutgoingStackArgs() {
  /art/compiler/jni/quick/
calling_convention.h 366 virtual size_t NumberOfOutgoingStackArgs() = 0;

Completed in 145 milliseconds