Searched refs:ma_fill (Results 1 – 2 of 2) sorted by relevance
217 (mp)->ma_used = (mp)->ma_fill = 0; \263 if (mp->ma_fill) { in PyDict_New()524 mp->ma_fill++; in insertdict_by_entry()585 mp->ma_fill++; in insertdict_clean()627 if (mp->ma_fill == mp->ma_used) { in dictresize()637 assert(mp->ma_fill > mp->ma_used); in dictresize()656 i = mp->ma_fill; in dictresize()657 mp->ma_fill = 0; in dictresize()790 assert(mp->ma_fill <= mp->ma_mask); /* at least one empty slot */ in dict_set_item_by_hash_or_entry()816 if (!(mp->ma_used > n_used && mp->ma_fill*3 >= (mp->ma_mask+1)*2)) in dict_set_item_by_hash_or_entry()[all …]
72 Py_ssize_t ma_fill; /* # Active + # Dummy */ member