Home
last modified time | relevance | path

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

/external/python/cpython3/Objects/
Ddict-common.h62 char dk_indices[]; /* char is required to avoid strict aliasing. */ member
Ddictobject.c309 ((PyDictKeyEntry*)(&((int8_t*)((dk)->dk_indices))[DK_SIZE(dk) * DK_IXSIZE(dk)]))
345 const int8_t *indices = (const int8_t*)(keys->dk_indices); in dictkeys_get_index()
349 const int16_t *indices = (const int16_t*)(keys->dk_indices); in dictkeys_get_index()
354 const int64_t *indices = (const int64_t*)(keys->dk_indices); in dictkeys_get_index()
359 const int32_t *indices = (const int32_t*)(keys->dk_indices); in dictkeys_get_index()
375 int8_t *indices = (int8_t*)(keys->dk_indices); in dictkeys_set_index()
380 int16_t *indices = (int16_t*)(keys->dk_indices); in dictkeys_set_index()
386 int64_t *indices = (int64_t*)(keys->dk_indices); in dictkeys_set_index()
391 int32_t *indices = (int32_t*)(keys->dk_indices); in dictkeys_set_index()
586 memset(&dk->dk_indices[0], 0xff, es * size); in new_keys_object()