Home
last modified time | relevance | path

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

/external/lua/src/
Dlcode.c155 if (offset == NO_JUMP) /* point to itself represents end of list */ in getjump()
156 return NO_JUMP; /* end of list */ in getjump()
169 lua_assert(dest != NO_JUMP); in fixjump()
181 if (l2 == NO_JUMP) return; /* nothing to concatenate? */ in luaK_concat()
182 else if (*l1 == NO_JUMP) /* no original list? */ in luaK_concat()
187 while ((next = getjump(fs, list)) != NO_JUMP) /* find last element */ in luaK_concat()
199 return codesJ(fs, OP_JMP, NO_JUMP, 0); in luaK_jump()
277 for (; list != NO_JUMP; list = getjump(fs, list)) in removevalues()
289 while (list != NO_JUMP) { in patchlistaux()
885 for (; list != NO_JUMP; list = getjump(fs, list)) { in need_value()
[all …]
Dlcode.h20 #define NO_JUMP (-1) macro
Dlparser.c153 e->f = e->t = NO_JUMP; in init_exp()
160 e->f = e->t = NO_JUMP; in codestring()
267 e->f = e->t = NO_JUMP; in init_var()
1667 int target = NO_JUMP; in test_then_block()
1706 int escapelist = NO_JUMP; /* exit list for finished parts */ in ifstat()