Lines Matching defs:table
631 PyMemoTable *memo; /* Memo table, keep track of the seen
712 PicklerObject *pickler; /* Pickler whose memo table we're proxying. */
771 /* The table we get from _New() is probably smaller than we wanted.
827 PyMemoEntry *table = self->mt_table;
832 entry = &table[i];
838 entry = &table[i & mask];
861 /* Find the smallest valid table size >= min_size. */
868 /* Allocate new table. */
880 /* Copy entries from the old table. */
894 /* Deallocate the old table. */
930 * Quadrupling the size improves average table sparseness
932 * the number of expensive resize operations in a growing memo table.