Home
last modified time | relevance | path

Searched refs:endpc (Results 1 – 7 of 7) sorted by relevance

/external/apache-commons-bcel/src/main/java/org/apache/bcel/verifier/statics/
DPass3aVerifier.java307 final int endpc = element.getEndPC(); in delayedPass2Checks() local
309 if (startpc >= endpc) { in delayedPass2Checks()
311 … "' that has its start_pc ('"+startpc+"') not smaller than its end_pc ('"+endpc+"')."); in delayedPass2Checks()
317 if ( (!contains(instructionPositions, endpc)) && (endpc != codeLength)) { in delayedPass2Checks()
/external/lua/src/
Dldump.c170 dumpInt(D, f->locvars[i].endpc); in dumpDebug()
Dlfunc.c292 if (pc < f->locvars[i].endpc) { /* is variable active? */ in luaF_getlocalname()
Dlundump.c248 f->locvars[i].endpc = loadInt(S); in loadDebug()
Dluac.c706 i,getstr(f->locvars[i].varname),f->locvars[i].startpc+1,f->locvars[i].endpc+1); in PrintDebug()
Dlobject.h506 int endpc; /* first point where variable is dead */ member
Dlparser.c333 var->endpc = fs->pc; in removevars()