HomeSort by relevance Sort by last modified time
    Searched defs:arg_pos (Results 1 - 4 of 4) 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...]

Completed in 1128 milliseconds