Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/lua/src/
H A Dlparser.c1460 int condexit; in whilestat() local
1464 condexit = cond(ls); in whilestat()
1471 luaK_patchtohere(fs, condexit); /* false conditions finish the loop */ in whilestat()
1477 int condexit; in repeatstat() local
1486 condexit = cond(ls); /* read condition (inside scope block) */ in repeatstat()
1490 luaK_patchtohere(fs, condexit); /* repetition must close upvalues */ in repeatstat()
1492 condexit = luaK_jump(fs); /* repeat after closing upvalues */ in repeatstat()
1495 luaK_patchlist(fs, condexit, repeat_init); /* close the loop */ in repeatstat()
/freebsd-13.1/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()