Home
last modified time | relevance | path

Searched refs:condexit (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/lua/src/
H A Dlparser.c1472 int condexit; in whilestat() local
1476 condexit = cond(ls); in whilestat()
1483 luaK_patchtohere(fs, condexit); /* false conditions finish the loop */ in whilestat()
1489 int condexit; in repeatstat() local
1498 condexit = cond(ls); /* read condition (inside scope block) */ in repeatstat()
1502 luaK_patchtohere(fs, condexit); /* repetition must close upvalues */ in repeatstat()
1504 condexit = luaK_jump(fs); /* repeat after closing upvalues */ in repeatstat()
1507 luaK_patchlist(fs, condexit, repeat_init); /* close the loop */ in repeatstat()
/freebsd/sys/contrib/openzfs/module/lua/
H A Dlparser.c1240 int condexit; in whilestat() local
1244 condexit = cond(ls); in whilestat()
1251 luaK_patchtohere(fs, condexit); /* false conditions finish the loop */ in whilestat()
1257 int condexit; in repeatstat() local
1266 condexit = cond(ls); /* read condition (inside scope block) */ in repeatstat()
1268 luaK_patchclose(fs, condexit, bl2.nactvar); in repeatstat()
1270 luaK_patchlist(fs, condexit, repeat_init); /* close the loop */ in repeatstat()