Home
last modified time | relevance | path

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

/external/python/cpython3/Include/cpython/
Dobject.h291 struct _dictkeysobject *ht_cached_keys; member
/external/python/cpython3/Objects/
Dtypeobject.c2844 et->ht_cached_keys = _PyDict_NewKeysForClass(); in type_new()
3055 res->ht_cached_keys = _PyDict_NewKeysForClass(); in PyType_FromModuleAndSpec()
3482 if (et->ht_cached_keys) { in type_dealloc()
3483 _PyDictKeys_DecRef(et->ht_cached_keys); in type_dealloc()
3630 if (et->ht_cached_keys) in type___sizeof___impl()
3631 size += _PyDict_KeysSize(et->ht_cached_keys); in type___sizeof___impl()
3723 cached_keys = ((PyHeapTypeObject *)type)->ht_cached_keys; in type_clear()
3725 ((PyHeapTypeObject *)type)->ht_cached_keys = NULL; in type_clear()
Ddictobject.c4764 #define CACHED_KEYS(tp) (((PyHeapTypeObject*)tp)->ht_cached_keys)