Home
last modified time | relevance | path

Searched refs:use_hash_seed (Results 1 – 8 of 8) sorted by relevance

/third_party/python/Lib/test/
D_test_embed_set_config.py192 self.set_config(use_hash_seed=1, hash_seed=0)
194 self.set_config(use_hash_seed=0, hash_seed=0)
196 self.set_config(use_hash_seed=1, hash_seed=123)
Dtest_embed.py454 use_hash_seed=0,
/third_party/python/Python/
Dinitconfig.c603 assert(config->use_hash_seed >= 0); in config_check_consistency()
705 config->use_hash_seed = -1; in _PyConfig_InitCompatConfig()
785 config->use_hash_seed = 0; in PyConfig_InitIsolatedConfig()
893 COPY_ATTR(use_hash_seed); in _PyConfig_Copy()
998 SET_ITEM_INT(use_hash_seed); in _PyConfig_AsDict()
1271 GET_UINT(use_hash_seed); in _PyConfig_FromDict()
1465 Py_HashRandomizationFlag = (config->use_hash_seed == 0 || in config_set_global_vars()
1630 config->use_hash_seed = 1; in config_init_hash_seed()
1635 config->use_hash_seed = 0; in config_init_hash_seed()
1718 if (config->use_hash_seed < 0) { in config_read_env_vars()
[all …]
Dbootstrap_hash.c583 if (config->use_hash_seed) { in _Py_HashRandomization_Init()
Dsysmodule.c2604 SetFlag(config->use_hash_seed == 0 || config->hash_seed != 0); in set_flags_from_config()
/third_party/python/Include/cpython/
Dinitconfig.h141 int use_hash_seed; member
/third_party/python/Doc/c-api/
Dinit_config.rst724 .. c:member:: int use_hash_seed
728 If :c:member:`~PyConfig.use_hash_seed` is zero, a seed is chosen randomly
733 Default *use_hash_seed* value: ``-1`` in Python mode, ``0`` in isolated
/third_party/python/Programs/
D_testembed.c507 config.use_hash_seed = 1; in test_init_from_config()