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

  /art/compiler/jni/quick/mips/
calling_convention_mips.cc 455 size_t total_args = static_args + param_args + internal_args; local
457 return total_args - std::min(kMaxIntLikeRegisterArguments, static_cast<size_t>(total_args));
  /art/compiler/jni/quick/arm/
calling_convention_arm.cc 461 size_t total_args = static_args + param_args + internal_args; local
463 return total_args - std::min(kJniArgumentRegisterCount, static_cast<size_t>(total_args));
  /art/compiler/jni/quick/x86/
calling_convention_x86.cc 275 size_t total_args = static_args + param_args + internal_args; local
276 return total_args;
  /art/compiler/jni/quick/x86_64/
calling_convention_x86_64.cc 283 size_t total_args = static_args + param_args + internal_args; local
287 size_t total_stack_args = total_args
  /external/python/cpython3/Objects/
codeobject.c 106 Py_ssize_t i, n_cellvars, n_varnames, total_args; local
144 total_args = (Py_ssize_t)argcount + (Py_ssize_t)kwonlyargcount +
148 total_args = n_varnames + 1;
150 if (total_args > n_varnames) {
168 for (j = 0; j < total_args; j++) {
  /external/u-boot/common/
avb_verify.c 191 int total_args; local
208 total_args = i;
222 for (i = 0; i <= total_args; i++)
  /external/python/cpython3/Python/
ceval.c 3678 const Py_ssize_t total_args = co->co_argcount + co->co_kwonlyargcount; local
    [all...]

Completed in 398 milliseconds