OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:randomization_seed
(Results
1 - 9
of
9
) sorted by null
/external/chromium_org/chrome/common/metrics/
caching_permuted_entropy_provider.cc
42
uint32
randomization_seed
) const {
46
if (!FindValue(
randomization_seed
, &value)) {
47
value = PermutedEntropyProvider::GetPermutedValue(
randomization_seed
);
48
AddToCache(
randomization_seed
, value);
73
void CachingPermutedEntropyProvider::AddToCache(uint32
randomization_seed
,
90
entry->set_randomization_seed(
randomization_seed
);
96
bool CachingPermutedEntropyProvider::FindValue(uint32
randomization_seed
,
99
if (cache_.entry(i).
randomization_seed
() ==
randomization_seed
) {
caching_permuted_entropy_provider.h
41
virtual uint16 GetPermutedValue(uint32
randomization_seed
) const OVERRIDE;
49
// Adds |
randomization_seed
| -> |value| to the cache.
50
void AddToCache(uint32
randomization_seed
, uint16 value) const;
52
// Finds the value corresponding to |
randomization_seed
|, setting |value| and
54
bool FindValue(uint32
randomization_seed
, uint16* value) const;
/external/chromium_org/components/variations/
entropy_provider.cc
47
void PermuteMappingUsingRandomizationSeed(uint32
randomization_seed
,
52
SeededRandGenerator generator(
randomization_seed
);
67
uint32
randomization_seed
) const {
104
uint32
randomization_seed
) const {
105
if (
randomization_seed
== 0)
106
randomization_seed
= HashName(trial_name);
108
return GetPermutedValue(
randomization_seed
) /
113
uint32
randomization_seed
) const {
115
internal::PermuteMappingUsingRandomizationSeed(
randomization_seed
, &mapping);
entropy_provider.h
35
// [0, |mapping.size()|), permuted based on |
randomization_seed
|.
36
void PermuteMappingUsingRandomizationSeed(uint32
randomization_seed
,
55
uint32
randomization_seed
) const OVERRIDE;
78
uint32
randomization_seed
) const OVERRIDE;
83
virtual uint16 GetPermutedValue(uint32
randomization_seed
) const;
variations_seed_processor.cc
269
uint32
randomization_seed
= 0;
local
276
randomization_seed
= study.
randomization_seed
();
287
randomization_seed
, NULL));
entropy_provider_unittest.cc
111
const uint32
randomization_seed
= HashName(trial_name);
local
112
internal::PermuteMappingUsingRandomizationSeed(
randomization_seed
,
/external/chromium_org/base/metrics/
field_trial.h
94
// the specified field trial. If |
randomization_seed
| is not 0, it will be
97
// value given the same input |trial_name| and |
randomization_seed
| values.
99
uint32
randomization_seed
) const = 0;
360
// name, which is used otherwise or if |
randomization_seed
| has value 0). The
361
// |
randomization_seed
| value (other than 0) should never be the same for two
373
uint32
randomization_seed
,
field_trial.cc
287
uint32
randomization_seed
,
324
GetEntropyForTrial(trial_name,
randomization_seed
);
327
DCHECK_EQ(0U,
randomization_seed
);
/external/chromium_org/net/disk_cache/
backend_unittest.cc
[
all
...]
Completed in 89 milliseconds