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.h287 struct _dictkeysobject *ht_cached_keys; member
/external/python/cpython3/Objects/
Dtypeobject.c2820 et->ht_cached_keys = _PyDict_NewKeysForClass(); in type_new()
2988 res->ht_cached_keys = _PyDict_NewKeysForClass(); in PyType_FromSpecWithBases()
3360 if (et->ht_cached_keys) in type_dealloc()
3361 _PyDictKeys_DecRef(et->ht_cached_keys); in type_dealloc()
3506 if (et->ht_cached_keys) in type___sizeof___impl()
3507 size += _PyDict_KeysSize(et->ht_cached_keys); in type___sizeof___impl()
3595 cached_keys = ((PyHeapTypeObject *)type)->ht_cached_keys; in type_clear()
3597 ((PyHeapTypeObject *)type)->ht_cached_keys = NULL; in type_clear()
Ddictobject.c4590 #define CACHED_KEYS(tp) (((PyHeapTypeObject*)tp)->ht_cached_keys)