• Home
  • Raw
  • Download

Lines Matching refs:ma_table

211     (mp)->ma_table = (mp)->ma_smalltable;                               \
271 assert (mp->ma_table == mp->ma_smalltable); in PyDict_New()
326 PyDictEntry *ep0 = mp->ma_table; in lookdict()
346 if (ep0 == mp->ma_table && ep->me_key == startkey) { in lookdict()
378 if (ep0 == mp->ma_table && ep->me_key == startkey) { in lookdict()
414 PyDictEntry *ep0 = mp->ma_table; in lookdict_string()
492 ep = mp->ma_table; in _PyDict_MaybeUntrack()
574 PyDictEntry *ep0 = mp->ma_table; in insertdict_clean()
619 oldtable = mp->ma_table; in dictresize()
652 mp->ma_table = newtable; in dictresize()
954 table = mp->ma_table; in PyDict_Clear()
1030 ep = ((PyDictObject *)op)->ma_table; in PyDict_Next()
1057 ep = ((PyDictObject *)op)->ma_table; in _PyDict_Next()
1082 for (ep = mp->ma_table; fill > 0; ep++) { in dict_dealloc()
1089 if (mp->ma_table != mp->ma_smalltable) in dict_dealloc()
1090 PyMem_DEL(mp->ma_table); in dict_dealloc()
1120 PyDictEntry *ep = mp->ma_table + i; in dict_print()
1245 assert(mp->ma_table != NULL); in dict_subscript()
1316 ep = mp->ma_table; in dict_keys()
1350 ep = mp->ma_table; in dict_values()
1398 ep = mp->ma_table; in dict_items()
1669 entry = &other->ma_table[i]; in PyDict_Merge()
1811 if (a->ma_table[i].me_value == NULL) in characterize()
1813 thiskey = a->ma_table[i].me_key; in characterize()
1823 a->ma_table[i].me_value == NULL) in characterize()
1837 thisaval = a->ma_table[i].me_value; in characterize()
1938 PyObject *aval = a->ma_table[i].me_value; in dict_equal()
1942 PyObject *key = a->ma_table[i].me_key; in dict_equal()
2162 ep = &mp->ma_table[0]; in dict_popitem()
2172 while ((ep = &mp->ma_table[i])->me_value == NULL) { in dict_popitem()
2184 assert(mp->ma_table[0].me_value == NULL); in dict_popitem()
2185 mp->ma_table[0].me_hash = i + 1; /* next place to start */ in dict_popitem()
2240 if (mp->ma_table != mp->ma_smalltable) in dict_sizeof()
2415 assert(d->ma_table == NULL && d->ma_fill == 0 && d->ma_used == 0); in dict_new()
2632 ep = d->ma_table; in dictiter_iternextkey()
2705 ep = d->ma_table; in dictiter_iternextvalue()
2776 ep = d->ma_table; in dictiter_iternextitem()