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

  /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
lfunc.c 126 f->locvars = NULL;
140 luaM_freearray(L, f->locvars, f->sizelocvars);
152 for (i = 0; i<f->sizelocvars && f->locvars[i].startpc <= pc; i++) {
153 if (pc < f->locvars[i].endpc) { /* is variable active? */
156 return getstr(f->locvars[i].varname);
lundump.c 158 f->locvars=luaM_newvector(S->L,n,LocVar);
160 for (i=0; i<n; i++) f->locvars[i].varname=NULL;
163 f->locvars[i].varname=LoadString(S);
164 f->locvars[i].startpc=LoadInt(S);
165 f->locvars[i].endpc=LoadInt(S);
ldump.c 130 DumpString(f->locvars[i].varname,D);
131 DumpInt(f->locvars[i].startpc,D);
132 DumpInt(f->locvars[i].endpc,D);
luac.c 414 i,getstr(f->locvars[i].varname),f->locvars[i].startpc+1,f->locvars[i].endpc+1);
lparser.c 169 luaM_growvector(ls->L, f->locvars, fs->nlocvars, f->sizelocvars,
171 while (oldsize < f->sizelocvars) f->locvars[oldsize++].varname = NULL;
172 f->locvars[fs->nlocvars].varname = varname;
201 return &fs->f->locvars[idx];
569 luaM_reallocvector(L, f->locvars, f->sizelocvars, fs->nlocvars, LocVar);
    [all...]
lobject.h 473 LocVar *locvars; /* information about local variables (debug information) */ member in struct:Proto
lgc.c 469 markobject(g, f->locvars[i].varname);
    [all...]
  /external/lua/src/
lfunc.c 116 f->locvars = NULL;
130 luaM_freearray(L, f->locvars, f->sizelocvars);
142 for (i = 0; i<f->sizelocvars && f->locvars[i].startpc <= pc; i++) {
143 if (pc < f->locvars[i].endpc) { /* is variable active? */
146 return getstr(f->locvars[i].varname);
lundump.c 187 f->locvars = luaM_newvector(S->L, n, LocVar);
190 f->locvars[i].varname = NULL;
192 f->locvars[i].varname = LoadString(S);
193 f->locvars[i].startpc = LoadInt(S);
194 f->locvars[i].endpc = LoadInt(S);
ldump.c 155 DumpString(f->locvars[i].varname, D);
156 DumpInt(f->locvars[i].startpc, D);
157 DumpInt(f->locvars[i].endpc, D);
luac.c 432 i,getstr(f->locvars[i].varname),f->locvars[i].startpc+1,f->locvars[i].endpc+1);
lparser.c 165 luaM_growvector(ls->L, f->locvars, fs->nlocvars, f->sizelocvars,
168 f->locvars[oldsize++].varname = NULL;
169 f->locvars[fs->nlocvars].varname = varname;
198 return &fs->f->locvars[idx];
566 luaM_reallocvector(L, f->locvars, f->sizelocvars, fs->nlocvars, LocVar);
    [all...]
lobject.h 424 LocVar *locvars; /* information about local variables (debug information) */ member in struct:Proto
lgc.c 491 markobjectN(g, f->locvars[i].varname);
    [all...]

Completed in 698 milliseconds