Home
last modified time | relevance | path

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

/external/lua/src/
Dltable.c440 t->lastfree = NULL; /* signal that it is using dummy node */ in setnodevector()
456 t->lastfree = gnode(t, size); /* all positions are free */ in setnodevector()
486 Node *lastfree = t1->lastfree; in exchangehashpart() local
489 t1->lastfree = t2->lastfree; in exchangehashpart()
492 t2->lastfree = lastfree; in exchangehashpart()
603 while (t->lastfree > t->node) { in getfreepos()
604 t->lastfree--; in getfreepos()
605 if (keyisnil(t->lastfree)) in getfreepos()
606 return t->lastfree; in getfreepos()
Dltable.h27 #define isdummy(t) ((t)->lastfree == NULL)
Dlobject.h719 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.c1878 block *lastfree = pool->freeblock; in pymalloc_free() local
1879 *(block **)p = lastfree; in pymalloc_free()
1883 if (UNLIKELY(lastfree == NULL)) { in pymalloc_free()