Lines Matching refs:used
46 NOTE: Since negative value is used for DKIX_EMPTY and DKIX_DUMMY, type of
47 dk_indices entry is signed integer and int16 is used for table which
99 To preserve the order in a split table, a bit vector is used to record the
231 equally good collision statistics, needed less code & used less memory.
239 /*Global counter used to set ma_version_tag field of dictionary.
428 * This can be used to reserve enough size to insert n entries without
439 * Currently set to used*3.
444 * GROWTH_RATE was set to used*4 up to version 3.2.
445 * GROWTH_RATE was set to used*2 in version 3.3.0
446 * GROWTH_RATE was set to used*2 + capacity/2 in 3.4.0-3.6.0.
450 /* This immutable, empty PyDictKeysObject is used for PyDict_Clear()
717 new_dict(PyDictKeysObject *keys, PyDictValues *values, Py_ssize_t used, int free_values_on_failure)
748 mp->ma_used = used;
1026 The basic lookup function used by all operations.
1357 Internal routine used by dictresize() to build a hashtable of entries.
2668 /* Single-arg dict update; used by dict_update_common and operators. */
3070 do fast-copy only if it has at most 1/3 non-used keys.
3709 /* Internal version of PyDict_Contains used when the hash value is already known */
4761 // This utility function is used by set operations.
5406 Py_ssize_t used = 0;
5411 used += 1;
5415 PyObject *res = new_dict(keys, values, used, 0);