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

  /external/rappor/client/java/com/google/android/rappor/
Encoder.java 142 private final int numCohorts;
147 * <p>This value is stable for a given (userSecret, numCohorts) pair. Furthermore, if two
148 * encoders use the same userSecret but have different numCohorts values, the cohort assignment
149 * for the encoder with the smaller numCohorts value is a bitwise suffix of the cohort assignment
150 * for the encoder with the larger numCohorts value. It follows that, if you know maximum cohort
151 * assignment across a set of encoders, and you know the numCohorts setting for each encoder, then
153 * cohort value and (numCohorts-1), noting that numCohorts is required to be a positive power of
215 * @param numCohorts Number of cohorts into which the user pool is randomly segmented.
221 int numCohorts, int numBloomHashes)
    [all...]
  /frameworks/base/core/java/android/privacy/internal/rappor/
RapporConfig.java 50 * @param numCohorts Number of cohorts that used in Rappor algorithm.
54 double probabilityP, double probabilityQ, int numCohorts, int numBloomHashes) {
68 Preconditions.checkArgument(numCohorts > 0, "numCohorts needs to be > 0");
69 this.mNumCohorts = numCohorts;
83 + ", ProbabilityQ: %.3f, NumCohorts: %d, NumBloomHashes: %d",

Completed in 109 milliseconds