Searched refs:nny (Results 1 - 8 of 8) sorted by relevance

/freebsd-11-stable/contrib/lua/src/
H A Dldo.c508 L->nny++;
510 L->nny--;
522 lua_assert(ci->u.c.k != NULL && L->nny == 0);
591 L->nny = 0; /* should be zero to be yieldable */
650 unsigned short oldnny = L->nny; /* save "number of non-yieldable" calls */
662 L->nny = 0; /* allow yields */
679 L->nny = oldnny; /* restore 'nny' */
688 return (L->nny == 0);
698 if (L->nny >
[all...]
H A Dlstate.h198 unsigned short nny; /* number of non-yieldable calls in stack */ member in struct:lua_State
H A Dlstate.c236 L->nny = 1;
H A Dlapi.c919 if (k != NULL && L->nny == 0) { /* need to prepare continuation? */
967 if (k == NULL || L->nny > 0) { /* no continuation or no yieldable? */
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/lua/
H A Dldo.c410 if (!allowyield) L->nny++;
413 if (!allowyield) L->nny--;
422 lua_assert(L->nny == 0);
481 L->nny = 0; /* should be zero to be yieldable */
547 int oldnny = L->nny; /* save 'nny' */
551 L->nny = 0; /* allow yields */
569 L->nny = oldnny; /* restore 'nny' */
582 if (L->nny >
[all...]
H A Dlstate.h164 unsigned short nny; /* number of non-yieldable calls in stack */ member in struct:lua_State
H A Dlstate.c215 L->nny = 1;
H A Dlapi.c898 if (k != NULL && L->nny == 0) { /* need to prepare continuation? */
946 if (k == NULL || L->nny > 0) { /* no continuation or no yieldable? */

Completed in 189 milliseconds