Home
last modified time | relevance | path

Searched refs:NO_JUMP (Results 1 – 3 of 3) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
Dlcode.c33 return (e->k == VKNUM && e->t == NO_JUMP && e->f == NO_JUMP); in isnumeral()
62 fs->jpc = NO_JUMP; in luaK_jump()
63 j = luaK_codeAsBx(fs, OP_JMP, 0, NO_JUMP); in luaK_jump()
83 lua_assert(dest != NO_JUMP); in fixjump()
102 if (offset == NO_JUMP) /* point to itself represents end of list */ in getjump()
103 return NO_JUMP; /* end of list */ in getjump()
123 for (; list != NO_JUMP; list = getjump(fs, list)) { in need_value()
145 for (; list != NO_JUMP; list = getjump(fs, list)) in removevalues()
152 while (list != NO_JUMP) { in patchlistaux()
165 fs->jpc = NO_JUMP; in dischargejpc()
[all …]
Dlcode.h20 #define NO_JUMP (-1) macro
Dlparser.c149 e->f = e->t = NO_JUMP; in init_exp()
535 fs->jpc = NO_JUMP; in open_func()
1290 prep = isnum ? luaK_codeAsBx(fs, OP_FORPREP, base, NO_JUMP) : luaK_jump(fs); in forbody()
1298 endfor = luaK_codeAsBx(fs, OP_FORLOOP, base, NO_JUMP); in forbody()
1302 endfor = luaK_codeAsBx(fs, OP_TFORLOOP, base + 2, NO_JUMP); in forbody()
1412 int escapelist = NO_JUMP; /* exit list for finished parts */ in ifstat()