Home
last modified time | relevance | path

Searched refs:ma_values (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython3/Objects/
Ddictobject.c529 CHECK(mp->ma_values[i] != NULL); in _PyDict_CheckConsistency()
638 mp->ma_values = values; in new_dict()
669 assert(orig->ma_values == NULL); in clone_combined_dict()
832 assert(mp->ma_values == NULL); in lookdict_unicode()
875 assert(mp->ma_values == NULL); in lookdict_unicode_nodummy()
921 assert(mp->ma_values != NULL); in lookdict_split()
925 *value_addr = mp->ma_values[ix]; in lookdict_split()
947 *value_addr = mp->ma_values[ix]; in lookdict_split()
997 if ((value = mp->ma_values[i]) == NULL) in _PyDict_MaybeUntrack()
1056 if (mp->ma_values != NULL && !PyUnicode_CheckExact(key)) { in insertdict()
[all …]
/external/python/cpython3/Include/cpython/
Ddictobject.h31 PyObject **ma_values; member
63 #define _PyDict_HasSplitTable(d) ((d)->ma_values != NULL)