OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:OutArgSize
(Results
1 - 3
of
3
) sorted by null
/art/compiler/jni/quick/x86/
calling_convention_x86.cc
134
size_t X86JniCallingConvention::
OutArgSize
() {
152
return FrameOffset(displacement_.Int32Value() -
OutArgSize
() + (itr_slots_ * kPointerSize));
/art/compiler/jni/quick/arm/
calling_convention_arm.cc
153
size_t ArmJniCallingConvention::
OutArgSize
() {
198
size_t offset = displacement_.Int32Value() -
OutArgSize
() + ((itr_slots_ - 4) * kPointerSize);
199
CHECK_LT(offset,
OutArgSize
());
/art/compiler/jni/quick/mips/
calling_convention_mips.cc
157
size_t MipsJniCallingConvention::
OutArgSize
() {
202
size_t offset = displacement_.Int32Value() -
OutArgSize
() + (itr_slots_ * kPointerSize);
203
CHECK_LT(offset,
OutArgSize
());
Completed in 375 milliseconds