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

  /external/chromium_org/third_party/skia/third_party/lua/src/
ldo.c 393 if (!allowyield) L->nny++;
396 if (!allowyield) L->nny--;
405 lua_assert(L->nny == 0);
464 L->nny = 0; /* should be zero to be yieldable */
533 L->nny = 0; /* allow yields */
551 L->nny = 1; /* do not allow yields */
564 if (L->nny > 0) {
592 unsigned short old_nny = L->nny;
602 L->nny = old_nny;
658 L->nny++; /* cannot yield during parsing *
    [all...]
lstate.h 164 unsigned short nny; /* number of non-yieldable calls in stack */ member in struct:lua_State
lstate.c 215 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 69 milliseconds