Searched refs:dictresize (Results 1 - 1 of 1) sorted by relevance
/third_party/python/Objects/ |
H A D | dictobject.c | 235 static int dictresize(PyDictObject *mp, uint8_t log_newsize, int unicode); 1183 return dictresize(mp, calculate_log2_keysize(GROWTH_RATE(mp)), unicode); in insertion_resize() 1357 Internal routine used by dictresize() to build a hashtable of entries. 1405 dictresize(PyDictObject *mp, uint8_t log2_newsize, int unicode) in dictresize() function 1542 // dictresize() must not be called after _PyDict_Fini() in dictresize() 2286 if (dictresize(mp, estimate_log2_keysize(PyDict_GET_SIZE(iterable)), unicode)) { in _PyDict_FromKeys() 2307 if (dictresize(mp, estimate_log2_keysize(PySet_GET_SIZE(iterable)), 0)) { in _PyDict_FromKeys() 2880 if (dictresize(mp, estimate_log2_keysize(mp->ma_used + other->ma_used), unicode)) { in dict_merge() 3476 if (dictresize(self, DK_LOG_SIZE(self->ma_keys), 1)) { in dict_popitem_impl()
|
Completed in 8 milliseconds