Searched refs:lastfree (Results 1 – 5 of 5) sorted by relevance
440 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() local489 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()
27 #define isdummy(t) ((t)->lastfree == NULL)
719 Node *lastfree; /* any free position is before this position */ member
997 block *lastfree; in PyObject_Free() local1023 *(block **)p = lastfree = pool->freeblock; in PyObject_Free()1025 if (lastfree) { in PyObject_Free()
1878 block *lastfree = pool->freeblock; in pymalloc_free() local1879 *(block **)p = lastfree; in pymalloc_free()1883 if (UNLIKELY(lastfree == NULL)) { in pymalloc_free()