Home
last modified time | relevance | path

Searched refs:lastfree (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/lua/src/
H A Dltable.c484 t->lastfree = NULL; /* signal that it is using dummy node */ in setnodevector()
500 t->lastfree = gnode(t, size); /* all positions are free */ in setnodevector()
530 Node *lastfree = t1->lastfree; in exchangehashpart() local
533 t1->lastfree = t2->lastfree; in exchangehashpart()
536 t2->lastfree = lastfree; in exchangehashpart()
647 while (t->lastfree > t->node) { in getfreepos()
648 t->lastfree--; in getfreepos()
649 if (keyisnil(t->lastfree)) in getfreepos()
650 return t->lastfree; in getfreepos()
H A Dltable.h27 #define isdummy(t) ((t)->lastfree == NULL)
H A Dlobject.h746 Node *lastfree; /* any free position is before this position */ member
H A Dltests.c1002 lua_pushinteger(L, isdummy(t) ? 0 : t->lastfree - t->node); in table_query()
/freebsd/sys/contrib/openzfs/module/lua/
H A Dltable.c299 t->lastfree = gnode(t, size); /* all positions are free */ in setnodevector()
387 while (t->lastfree > t->node) { in getfreepos()
388 t->lastfree--; in getfreepos()
389 if (ttisnil(gkey(t->lastfree))) in getfreepos()
390 return t->lastfree; in getfreepos()
H A Dlobject.h564 Node *lastfree; /* any free position is before this position */ member