local_count 143 core/AbcParser.cpp DebuggerMethodInfo* dmi = DebuggerMethodInfo::create(core, info.local_count, -1, info.scope_count); local_count 164 core/AbcParser.cpp for(int i = 0; i < info.local_count; i++) local_count 923 core/AbcParser.cpp int local_count = readU30(pos); local_count 924 core/AbcParser.cpp (void)local_count; local_count 963 core/AbcParser.cpp << " local_count=" << local_count local_count 1040 core/AbcParser.cpp DebuggerMethodInfo* dmi = DebuggerMethodInfo::create(core, local_count, code_length, max_scope_depth - init_scope_depth); local_count 473 core/CodegenLIR.cpp if (core->debugger() && i < (state->verifier->local_count + state->verifier->max_scope)) { local_count 1345 core/CodegenLIR.cpp checker = new (*alloc1) DebuggerCheck(core, *alloc1, lirout, state->verifier->local_count + state->verifier->max_scope); local_count 1424 core/CodegenLIR.cpp varTraits = InsAlloc((state->verifier->local_count + state->verifier->max_scope) * sizeof(Traits*)); local_count 1554 core/CodegenLIR.cpp if (firstLocal < state->verifier->local_count) local_count 1557 core/CodegenLIR.cpp for (int i=firstLocal, n=state->verifier->local_count; i < n; i++) local_count 2002 core/CodegenLIR.cpp if (core->debugger()) emitKill(state, ms->local_count()/*scopeBase*/ + state->scopeDepth); local_count 767 core/Interpreter.cpp register Atom* const scopeBase = framep + ms->local_count(); local_count 48 core/MethodInfo-inlines.h local_count(_local_count), local_count 385 core/MethodInfo-inlines.h REALLY_INLINE int32_t MethodSignature::local_count() const local_count 603 core/MethodInfo.cpp const uint32_t extra = (local_count <= 1) ? 0 : (sizeof(Stringp)*(local_count-1)); local_count 605 core/MethodInfo.cpp DebuggerMethodInfo* dmi = new (gc, extra) DebuggerMethodInfo(local_count, codeSize, max_scopes); local_count 607 core/MethodInfo.cpp for (int32_t i=0; i<local_count; i++) local_count 647 core/MethodInfo.cpp return dmi ? dmi->local_count : 0; local_count 705 core/MethodInfo.cpp if (dmi && slot >= 0 && slot < dmi->local_count) local_count 715 core/MethodInfo.cpp if (!dmi || slot < 0 || slot >= dmi->local_count) local_count 761 core/MethodInfo.cpp AvmAssert(i >= 0 && i < getMethodSignature()->local_count()); local_count 833 core/MethodInfo.cpp AvmAssert(i >= 0 && i < getMethodSignature()->local_count()); local_count 1041 core/MethodInfo.cpp const int32_t local_count = 1; local_count 1045 core/MethodInfo.cpp ms->_local_count = local_count; local_count 1102 core/MethodInfo.cpp if (ms->frame_size() < 0 || ms->local_count() < 0 || ms->max_scope() < 0) local_count 72 core/MethodInfo.h const int32_t local_count; // FIXME: merge with localCount above; this one may be visible to a debugger? local_count 265 core/MethodInfo.h int32_t local_count() const; local_count 456 core/MethodInfo.h int32_t local_count() const; local_count 157 core/StackTrace.cpp for (int i = (ms->max_scope() + ms->local_count() - 1), n = ms->local_count(); i >= n; --i) local_count 114 core/Verifier.cpp local_count = ms->local_count(); local_count 193 core/Verifier.cpp if (local_count < param_count+1) local_count 411 core/Verifier.cpp if (local >= local_count) local_count 2392 core/Verifier.cpp if (local < 0 || local >= local_count) local_count 2530 core/Verifier.cpp for (int i=0, n=local_count; i < n; i++) local_count 77 core/Verifier.h int local_count; local_count 879 core/avmplusDebugger.cpp *pastLastLocal = ms->local_count();