Home
last modified time | relevance | path

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

/external/skia/third_party/lua/src/
Dltable.c300 t->lastfree = gnode(t, size); /* all positions are free */ in setnodevector()
388 while (t->lastfree > t->node) { in getfreepos()
389 t->lastfree--; in getfreepos()
390 if (ttisnil(gkey(t->lastfree))) in getfreepos()
391 return t->lastfree; in getfreepos()
Dlobject.h567 Node *lastfree; /* any free position is before this position */ member
/external/syslinux/com32/lua/src/
Dltable.c301 t->lastfree = gnode(t, size); /* all positions are free */ in setnodevector()
389 while (t->lastfree > t->node) { in getfreepos()
390 t->lastfree--; in getfreepos()
391 if (ttisnil(gkey(t->lastfree))) in getfreepos()
392 return t->lastfree; in getfreepos()
Dlobject.h567 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()