Home
last modified time | relevance | path

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

/external/python/cpython3/Objects/
Dtypeobject.c2815 et->ht_cached_keys = _PyDict_NewKeysForClass(); in type_new()
2959 res->ht_cached_keys = _PyDict_NewKeysForClass(); in PyType_FromSpecWithBases()
3302 if (et->ht_cached_keys) in type_dealloc()
3303 _PyDictKeys_DecRef(et->ht_cached_keys); in type_dealloc()
3446 if (et->ht_cached_keys) in type___sizeof___impl()
3447 size += _PyDict_KeysSize(et->ht_cached_keys); in type___sizeof___impl()
3535 cached_keys = ((PyHeapTypeObject *)type)->ht_cached_keys; in type_clear()
3537 ((PyHeapTypeObject *)type)->ht_cached_keys = NULL; in type_clear()
Ddictobject.c4277 #define CACHED_KEYS(tp) (((PyHeapTypeObject*)tp)->ht_cached_keys)
/external/python/cpython3/Include/
Dobject.h475 struct _dictkeysobject *ht_cached_keys; member