Lines Matching refs:fill
38 /* Object used as dummy key to fill deleted entries */
171 so->fill++;
175 if ((size_t)so->fill*5 < mask*3)
194 the setobject's fill and used fields.
258 if (so->fill == so->used) {
264 Subtle: This is *necessary* if fill==size,
266 terminate failing searches. If fill < size, it's
268 assert(so->fill > so->used);
290 if (so->fill == so->used) {
297 so->fill = so->used;
389 so->fill = 0;
401 Py_ssize_t fill = so->fill;
418 else if (fill > 0) {
577 if ((so->fill + other->used)*5 >= so->mask*3) {
586 if (so->fill == 0 && so->mask == other->mask && other->fill == other->used) {
596 so->fill = other->fill;
602 if (so->fill == 0) {
605 so->fill = other->used;
709 if ((so->mask + 1 - so->fill) & 1)
713 if ((so->fill - so->used) & 1)
900 if ((so->fill + dictsize)*5 >= so->mask*3) {
961 so->fill = 0;
1066 t = a->fill; a->fill = b->fill; b->fill = t;
1458 if ((size_t)(so->fill - so->used) <= (size_t)so->mask / 4)
1990 if (self->fill)