HomeSort by relevance Sort by last modified time
    Searched refs:nny (Results 1 - 8 of 8) sorted by null

  /external/lua/src/
ldo.c 508 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 > 0)
    [all...]
lstate.h 198 unsigned short nny; /* number of non-yieldable calls in stack */ member in struct:lua_State
lstate.c 236 L->nny = 1;
lapi.c 919 if (k != NULL && L->nny == 0) { /* need to prepare continuation? */
967 if (k == NULL || L->nny > 0) { /* no continuation or no yieldable? */
  /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
ldo.c 400 if (!allowyield) L->nny++;
403 if (!allowyield) L->nny--;
412 lua_assert(L->nny == 0);
471 L->nny = 0; /* should be zero to be yieldable */
537 int oldnny = L->nny; /* save 'nny' */
541 L->nny = 0; /* allow yields */
559 L->nny = (unsigned short)oldnny; /* restore 'nny' */
572 if (L->nny > 0)
    [all...]
lstate.h 164 unsigned short nny; /* number of non-yieldable calls in stack */ member in struct:lua_State
lstate.c 217 L->nny = 1;
lapi.c 899 if (k != NULL && L->nny == 0) { /* need to prepare continuation? */
947 if (k == NULL || L->nny > 0) { /* no continuation or no yieldable? */

Completed in 275 milliseconds