Home
last modified time | relevance | path

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

/freebsd/sys/contrib/openzfs/module/lua/
H A Dldo.c373 #define next_ci(L) (L->ci = (L->ci->next ? L->ci->next : luaE_extendCI(L))) macro
392 ci = next_ci(L); /* now 'enter' new function */ in luaD_precall()
423 ci = next_ci(L); /* now 'enter' new function */ in luaD_precall()
/freebsd/contrib/lua/src/
H A Dldo.c499 #define next_ci(L) (L->ci->next ? L->ci->next : luaE_extendCI(L)) macro
504 CallInfo *ci = L->ci = next_ci(L); /* new frame */ in prepCallInfo()