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.c374 #define next_ci(L) (L->ci = (L->ci->next ? L->ci->next : luaE_extendCI(L))) macro
393 ci = next_ci(L); /* now 'enter' new function */ in luaD_precall()
424 ci = next_ci(L); /* now 'enter' new function */ in luaD_precall()
/freebsd/contrib/lua/src/
H A Dldo.c506 #define next_ci(L) (L->ci->next ? L->ci->next : luaE_extendCI(L)) macro
511 CallInfo *ci = L->ci = next_ci(L); /* new frame */ in prepCallInfo()