Home
last modified time | relevance | path

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

/third_party/python/Include/internal/
H A Dpycore_dict.h90 /* Size of the hash table (dk_indices). It must be a power of 2. */
93 /* Size of the hash table (dk_indices) by bytes. */
121 char dk_indices[]; /* char is required to avoid strict aliasing. */ member
148 (assert(dk->dk_kind == DICT_KEYS_GENERAL), (PyDictKeyEntry*)(&((int8_t*)((dk)->dk_indices))[(size_t)1 << (dk)->dk_log2_index_bytes]))
150 (assert(dk->dk_kind != DICT_KEYS_GENERAL), (PyDictUnicodeEntry*)(&((int8_t*)((dk)->dk_indices))[(size_t)1 << (dk)->dk_log2_index_bytes]))
/third_party/python/Objects/
H A Ddictobject.c27 | dk_indices[] |
34 dk_indices is actual hashtable. It holds index in entries, or DKIX_EMPTY(-1)
47 dk_indices entry is signed integer and int16 is used for table which
96 dk_indices, we can't increment dk_usable even though dk_nentries is
336 const int8_t *indices = (const int8_t*)(keys->dk_indices); in dictkeys_get_index()
340 const int16_t *indices = (const int16_t*)(keys->dk_indices); in dictkeys_get_index()
345 const int64_t *indices = (const int64_t*)(keys->dk_indices); in dictkeys_get_index()
350 const int32_t *indices = (const int32_t*)(keys->dk_indices); in dictkeys_get_index()
367 int8_t *indices = (int8_t*)(keys->dk_indices); in dictkeys_set_index()
372 int16_t *indices = (int16_t*)(keys->dk_indices); in dictkeys_set_index()
[all...]

Completed in 5 milliseconds