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 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/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)) {
  /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...]

Completed in 101 milliseconds