Home
last modified time | relevance | path

Searched refs:ht_cached_keys (Results 1 – 3 of 3) sorted by relevance

/third_party/python/Include/cpython/
Dobject.h290 struct _dictkeysobject *ht_cached_keys; member
/third_party/python/Objects/
Dtypeobject.c3195 et->ht_cached_keys = _PyDict_NewKeysForClass(); in type_new_impl()
3563 res->ht_cached_keys = _PyDict_NewKeysForClass(); in PyType_FromModuleAndSpec()
4060 if (et->ht_cached_keys) { in type_dealloc()
4061 _PyDictKeys_DecRef(et->ht_cached_keys); in type_dealloc()
4208 if (et->ht_cached_keys) in type___sizeof___impl()
4209 size += _PyDict_KeysSize(et->ht_cached_keys); in type___sizeof___impl()
4299 cached_keys = ((PyHeapTypeObject *)type)->ht_cached_keys; in type_clear()
4301 ((PyHeapTypeObject *)type)->ht_cached_keys = NULL; in type_clear()
Ddictobject.c4987 #define CACHED_KEYS(tp) (((PyHeapTypeObject*)tp)->ht_cached_keys)