Home
last modified time | relevance | path

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

/src/contrib/lua/src/
H A Dlparser.c1471 int condexit; in whilestat() local
1475 condexit = cond(ls); in whilestat()
1482 luaK_patchtohere(fs, condexit); /* false conditions finish the loop */ in whilestat()
1488 int condexit; in repeatstat() local
1497 condexit = cond(ls); /* read condition (inside scope block) */ in repeatstat()
1501 luaK_patchtohere(fs, condexit); /* repetition must close upvalues */ in repeatstat()
1503 condexit = luaK_jump(fs); /* repeat after closing upvalues */ in repeatstat()
1506 luaK_patchlist(fs, condexit, repeat_init); /* close the loop */ in repeatstat()
/src/sys/contrib/openzfs/module/lua/
H A Dlparser.c1241 int condexit; in whilestat() local
1245 condexit = cond(ls); in whilestat()
1252 luaK_patchtohere(fs, condexit); /* false conditions finish the loop */ in whilestat()
1258 int condexit; in repeatstat() local
1267 condexit = cond(ls); /* read condition (inside scope block) */ in repeatstat()
1269 luaK_patchclose(fs, condexit, bl2.nactvar); in repeatstat()
1271 luaK_patchlist(fs, condexit, repeat_init); /* close the loop */ in repeatstat()