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.c303 ((PyDictKeyEntry*)(&((int8_t*)((dk)->dk_indices))[DK_SIZE(dk) * DK_IXSIZE(dk)]))
321 int8_t *indices = (int8_t*)(keys->dk_indices); in dk_get_index()
325 int16_t *indices = (int16_t*)(keys->dk_indices); in dk_get_index()
330 int64_t *indices = (int64_t*)(keys->dk_indices); in dk_get_index()
335 int32_t *indices = (int32_t*)(keys->dk_indices); in dk_get_index()
351 int8_t *indices = (int8_t*)(keys->dk_indices); in dk_set_index()
356 int16_t *indices = (int16_t*)(keys->dk_indices); in dk_set_index()
362 int64_t *indices = (int64_t*)(keys->dk_indices); in dk_set_index()
367 int32_t *indices = (int32_t*)(keys->dk_indices); in dk_set_index()
547 memset(&dk->dk_indices[0], 0xff, es * size); in new_keys_object()