HomeSort by relevance Sort by last modified time
    Searched defs:shorty_len (Results 1 - 2 of 2) sorted by null

  /art/compiler/dex/
vreg_analysis.cc 409 int shorty_len = strlen(shorty); local
410 for (int i = 1; i < shorty_len; i++) {
  /art/runtime/entrypoints/quick/
quick_trampoline_entrypoints.cc 119 const char* shorty, uint32_t shorty_len)
121 is_static_(is_static), shorty_(shorty), shorty_len_(shorty_len),
122 args_in_regs_(ComputeArgsInRegs(is_static, shorty, shorty_len)),
123 num_params_((is_static ? 0 : 1) + shorty_len - 1), // +1 for this, -1 for return type
192 static size_t ComputeArgsInRegs(bool is_static, const char* shorty, uint32_t shorty_len)
195 for (size_t i = 0; i < shorty_len; i++) {
229 uint32_t shorty_len, ShadowFrame& sf, size_t first_arg_reg) :
230 QuickArgumentVisitor(sp, is_static, shorty, shorty_len), sf_(sf), cur_reg_(first_arg_reg) {}
320 uint32_t shorty_len, ScopedObjectAccessUnchecked* soa,
322 QuickArgumentVisitor(sp, is_static, shorty, shorty_len), soa_(soa), args_(args) {
520 uint32_t shorty_len; local
    [all...]

Completed in 896 milliseconds