Home
last modified time | relevance | path

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

/external/lua/src/
Dltable.c314 t->lastfree = NULL; /* signal that it is using dummy node */ in setnodevector()
330 t->lastfree = gnode(t, size); /* all positions are free */ in setnodevector()
443 while (t->lastfree > t->node) { in getfreepos()
444 t->lastfree--; in getfreepos()
445 if (ttisnil(gkey(t->lastfree))) in getfreepos()
446 return t->lastfree; in getfreepos()
Dltable.h31 #define isdummy(t) ((t)->lastfree == NULL)
Dlobject.h504 Node *lastfree; /* any free position is before this position */ member
/external/python/cpython2/Objects/
Dobmalloc.c997 block *lastfree; in PyObject_Free() local
1023 *(block **)p = lastfree = pool->freeblock; in PyObject_Free()
1025 if (lastfree) { in PyObject_Free()
/external/python/cpython3/Objects/
Dobmalloc.c1616 block *lastfree; in pymalloc_free() local
1643 *(block **)p = lastfree = pool->freeblock; in pymalloc_free()
1645 if (!lastfree) { in pymalloc_free()