Home | History | Annotate | Download | only in src

Lines Matching refs:tostore

648   int tostore;  /* number of array elements pending to be stored */
677 if (cc->tostore == LFIELDS_PER_FLUSH) {
678 luaK_setlist(fs, cc->t->u.info, cc->na, cc->tostore); /* flush */
679 cc->tostore = 0; /* no more items pending */
685 if (cc->tostore == 0) return;
694 luaK_setlist(fs, cc->t->u.info, cc->na, cc->tostore);
704 cc->tostore++;
737 cc.na = cc.nh = cc.tostore = 0;
744 lua_assert(cc.v.k == VVOID || cc.tostore > 0);