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 146 unsigned int arg_pos = itr_args_ - NumberOfExtraArgumentsForJni(); local
147 return arg_pos < NumArgs();
154 int arg_pos = itr_args_ - NumberOfExtraArgumentsForJni(); local
155 if (IsParamALongOrDouble(arg_pos)) {
177 int arg_pos = itr_args_ - NumberOfExtraArgumentsForJni(); local
178 return IsParamAReference(arg_pos);
194 int arg_pos = itr_args_ - NumberOfExtraArgumentsForJni(); local
195 return IsParamAFloatOrDouble(arg_pos);
207 int arg_pos = itr_args_ - NumberOfExtraArgumentsForJni(); local
208 return IsParamADouble(arg_pos);
220 int arg_pos = itr_args_ - NumberOfExtraArgumentsForJni(); local
240 int arg_pos = itr_args_ - NumberOfExtraArgumentsForJni(); local
    [all...]
  /art/compiler/jni/quick/mips/
calling_convention_mips.cc 167 size_t arg_pos = itr_args_ - NumberOfExtraArgumentsForJni(); local
169 (arg_pos < NumArgs()) &&
170 IsParamALongOrDouble(arg_pos)) {
191 int arg_pos = itr_args_ - NumberOfExtraArgumentsForJni(); local
192 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...]
  /art/compiler/jni/quick/arm/
calling_convention_arm.cc 276 size_t arg_pos = itr_args_ - NumberOfExtraArgumentsForJni(); local
278 (arg_pos < NumArgs()) &&
279 IsParamALongOrDouble(arg_pos)) {
300 int arg_pos = itr_args_ - NumberOfExtraArgumentsForJni(); local
301 if ((itr_args_ >= 2) && IsParamALongOrDouble(arg_pos)) {
  /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 345 for (size_t shorty_pos = 0, arg_pos = 0; cur_reg < num_regs; ++shorty_pos, ++arg_pos, cur_reg++) {
349 Object* o = reinterpret_cast<StackReference<Object>*>(&args[arg_pos])->AsMirrorPtr();
354 uint64_t wide_value = (static_cast<uint64_t>(args[arg_pos + 1]) << 32) | args[arg_pos];
357 arg_pos++;
361 shadow_frame->SetVReg(cur_reg, args[arg_pos]);

Completed in 192 milliseconds