Home
last modified time | relevance | path

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

/third_party/python/Objects/
H A Ddictobject.c57 ma_values == NULL, dk_refcnt == 1.
61 ma_values != NULL, dk_refcnt >= 1
62 Values are stored in the ma_values array.
480 assert(i < (((char *)mp->ma_values)[-2])); in get_index_from_order()
481 return ((char *)mp->ma_values)[-3-i]; in get_index_from_order()
583 CHECK(mp->ma_values->values[index] != NULL); in _PyDict_CheckConsistency()
747 mp->ma_values = values; in new_dict()
786 assert(orig->ma_values == NULL); in clone_combined_dict_keys()
1064 *value_addr = mp->ma_values->values[ix]; in _Py_dict_lookup()
1129 if ((value = mp->ma_values in _PyDict_MaybeUntrack()
[all...]
/third_party/python/Include/cpython/
H A Ddictobject.h8 /* The ma_values pointer is NULL for a combined table
23 /* If ma_values is NULL, the table is "combined": keys and values
26 If ma_values is not NULL, the table is split:
27 keys are stored in ma_keys and values are stored in ma_values */
28 PyDictValues *ma_values; member
57 #define _PyDict_HasSplitTable(d) ((d)->ma_values != NULL)

Completed in 4 milliseconds