HomeSort by relevance Sort by last modified time
    Searched defs:tostore (Results 1 - 2 of 2) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
lparser.c 648 int tostore; /* number of array elements pending to be stored */ member in struct:ConsControl
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);
    [all...]
  /external/lua/src/
lparser.c 642 int tostore; /* number of array elements pending to be stored */ member in struct:ConsControl
671 if (cc->tostore == LFIELDS_PER_FLUSH) {
672 luaK_setlist(fs, cc->t->u.info, cc->na, cc->tostore); /* flush */
673 cc->tostore = 0; /* no more items pending */
679 if (cc->tostore == 0) return;
688 luaK_setlist(fs, cc->t->u.info, cc->na, cc->tostore);
698 cc->tostore++;
731 cc.na = cc.nh = cc.tostore = 0;
738 lua_assert(cc.v.k == VVOID || cc.tostore > 0);
    [all...]

Completed in 4352 milliseconds