Home
last modified time | relevance | path

Searched refs:seed_text (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython3/Python/
Dbootstrap_hash.c551 _Py_ReadHashSeed(const char *seed_text, in _Py_ReadHashSeed() argument
557 if (seed_text && *seed_text != '\0' && strcmp(seed_text, "random") != 0) { in _Py_ReadHashSeed()
558 const char *endptr = seed_text; in _Py_ReadHashSeed()
560 seed = strtoul(seed_text, (char **)&endptr, 10); in _Py_ReadHashSeed()
/external/python/cpython3/Include/
Dpylifecycle.h180 const char *seed_text,
/external/python/cpython3/Modules/
Dmain.c1871 const char *seed_text = config_get_env_var("PYTHONHASHSEED"); in config_init_hash_seed() local
1874 if (_Py_ReadHashSeed(seed_text, &use_hash_seed, &hash_seed) < 0) { in config_init_hash_seed()