Home
last modified time | relevance | path

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

/f-stack/app/redis-5.0.5/deps/lua/src/
H A Dlparser.c995 int condexit; in whilestat() local
999 condexit = cond(ls); in whilestat()
1006 luaK_patchtohere(fs, condexit); /* false conditions finish the loop */ in whilestat()
1012 int condexit; in repeatstat() local
1021 condexit = cond(ls); /* read condition (inside scope block) */ in repeatstat()
1024 luaK_patchlist(ls->fs, condexit, repeat_init); /* close the loop */ in repeatstat()
1028 luaK_patchtohere(ls->fs, condexit); /* else... */ in repeatstat()
1132 int condexit; in test_then_block() local
1134 condexit = cond(ls); in test_then_block()
1137 return condexit; in test_then_block()
/f-stack/freebsd/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()