Searched refs:ma_used (Results 1 – 4 of 4) sorted by relevance
217 (mp)->ma_used = (mp)->ma_fill = 0; \270 assert (mp->ma_used == 0); in PyDict_New()532 mp->ma_used++; in insertdict_by_entry()589 mp->ma_used++; in insertdict_clean()627 if (mp->ma_fill == mp->ma_used) { in dictresize()637 assert(mp->ma_fill > mp->ma_used); in dictresize()655 mp->ma_used = 0; in dictresize()761 n_used = mp->ma_used; in dict_set_item_by_hash_or_entry()786 if (!(mp->ma_used > n_used && mp->ma_fill*3 >= (mp->ma_mask+1)*2)) in dict_set_item_by_hash_or_entry()788 return dictresize(mp, (mp->ma_used > 50000 ? 2 : 4) * mp->ma_used); in dict_set_item_by_hash_or_entry()[all …]
217 (mp)->ma_used = (mp)->ma_fill = 0; \270 assert (mp->ma_used == 0); in PyDict_New()543 mp->ma_used++; in insertdict()578 mp->ma_used++; in insertdict_clean()616 if (mp->ma_fill == mp->ma_used) { in dictresize()626 assert(mp->ma_fill > mp->ma_used); in dictresize()644 mp->ma_used = 0; in dictresize()772 n_used = mp->ma_used; in PyDict_SetItem()791 if (!(mp->ma_used > n_used && mp->ma_fill*3 >= (mp->ma_mask+1)*2)) in PyDict_SetItem()793 return dictresize(mp, (mp->ma_used > 50000 ? 2 : 4) * mp->ma_used); in PyDict_SetItem()[all …]
73 Py_ssize_t ma_used; /* # Active */ member