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

  /art/compiler/jni/quick/
calling_convention.cc 142 unsigned int arg_pos = itr_args_ - NumberOfExtraArgumentsForJni(); local
143 return arg_pos < NumArgs();
150 int arg_pos = itr_args_ - NumberOfExtraArgumentsForJni(); local
151 if (IsParamALongOrDouble(arg_pos)) {
173 int arg_pos = itr_args_ - NumberOfExtraArgumentsForJni(); local
174 return IsParamAReference(arg_pos);
190 int arg_pos = itr_args_ - NumberOfExtraArgumentsForJni(); local
191 return IsParamAFloatOrDouble(arg_pos);
203 int arg_pos = itr_args_ - NumberOfExtraArgumentsForJni(); local
204 return IsParamADouble(arg_pos);
216 int arg_pos = itr_args_ - NumberOfExtraArgumentsForJni(); local
236 int arg_pos = itr_args_ - NumberOfExtraArgumentsForJni(); local
    [all...]
  /art/compiler/jni/quick/arm/
calling_convention_arm.cc 163 size_t arg_pos = itr_args_ - NumberOfExtraArgumentsForJni(); local
165 (arg_pos < NumArgs()) &&
166 IsParamALongOrDouble(arg_pos)) {
187 int arg_pos = itr_args_ - NumberOfExtraArgumentsForJni(); local
188 if ((itr_args_ >= 2) && IsParamALongOrDouble(arg_pos)) {
  /art/compiler/jni/quick/mips/
calling_convention_mips.cc 166 size_t arg_pos = itr_args_ - NumberOfExtraArgumentsForJni(); local
168 (arg_pos < NumArgs()) &&
169 IsParamALongOrDouble(arg_pos)) {
190 int arg_pos = itr_args_ - NumberOfExtraArgumentsForJni(); local
191 if ((itr_args_ >= 2) && IsParamALongOrDouble(arg_pos)) {
  /external/lldb/source/Interpreter/
Args.cpp 171 const char *arg_pos; local
172 for (arg_pos = command;
173 arg_pos && arg_pos[0];
174 arg_pos = arg_end)
177 const char *arg_start = ::strspn (arg_pos, k_space_separators) + arg_pos;
192 arg_pos = arg_piece_start;
205 arg_end = ::strcspn (arg_pos, k_space_separators_with_slash_and_quotes) + arg_pos;
    [all...]
  /external/lldb/include/lldb/Interpreter/
Args.h 43 OptionArgElement (int defs_index, int pos, int arg_pos) :
46 opt_arg_pos (arg_pos)
  /art/runtime/interpreter/
interpreter.cc 440 for (size_t shorty_pos = 0, arg_pos = 0; cur_reg < num_regs; ++shorty_pos, ++arg_pos, cur_reg++) {
444 Object* o = reinterpret_cast<StackReference<Object>*>(&args[arg_pos])->AsMirrorPtr();
449 uint64_t wide_value = (static_cast<uint64_t>(args[arg_pos + 1]) << 32) | args[arg_pos];
452 arg_pos++;
456 shadow_frame->SetVReg(cur_reg, args[arg_pos]);

Completed in 88 milliseconds