Home | History | Annotate | Download | only in src

Lines Matching full:strt

679       G(L)->strt.nuse--;
781 int hs = g->strt.size / 2; /* half the size of the string table */
782 if (g->strt.nuse < cast(lu_int32, hs)) /* using less than that half? */
993 for (i = 0; i < g->strt.size; i++) /* free all string lists */
994 sweepwholelist(L, &g->strt.hash[i]);
995 lua_assert(g->strt.nuse == 0);
1045 g->GCmemtrav = g->strt.size * sizeof(GCObject*);
1070 for (i = 0; i < GCSWEEPMAX && g->sweepstrgc + i < g->strt.size; i++)
1071 sweepwholelist(L, &g->strt.hash[g->sweepstrgc + i]);
1073 if (g->sweepstrgc >= g->strt.size) /* no more strings to sweep? */