HomeSort by relevance Sort by last modified time
    Searched refs:dk_indices (Results 1 - 2 of 2) sorted by null

  /external/python/cpython3/Objects/
dict-common.h 25 /* Size of the hash table (dk_indices). It must be a power of 2. */
28 /* Function to lookup in the hash table (dk_indices):
62 char dk_indices[]; /* char is required to avoid strict aliasing. */ member in struct:_dictkeysobject
dictobject.c 26 | dk_indices |
33 dk_indices is actual hashtable. It holds index in entries, or DKIX_EMPTY(-1)
46 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
303 ((PyDictKeyEntry*)(&((int8_t*)((dk)->dk_indices))[DK_SIZE(dk) * DK_IXSIZE(dk)]))
321 int8_t *indices = (int8_t*)(keys->dk_indices);
325 int16_t *indices = (int16_t*)(keys->dk_indices);
330 int64_t *indices = (int64_t*)(keys->dk_indices);
335 int32_t *indices = (int32_t*)(keys->dk_indices);
351 int8_t *indices = (int8_t*)(keys->dk_indices);
    [all...]

Completed in 143 milliseconds