Searched defs:probability (Results 1 - 25 of 26) sorted by relevance

12

/external/apache-commons-math/src/main/java/org/apache/commons/math/distribution/
H A DDiscreteDistribution.java29 * method represents the probability mass function, or PMF for the distribution.
31 * @param x the value at which the probability mass function is evaluated.
32 * @return the value of the probability mass function at x
34 double probability(double x); method in interface:DiscreteDistribution
H A DIntegerDistribution.java30 * method represents the probability mass function for the distribution.
32 * @param x the value at which the probability density function is evaluated.
33 * @return the value of the probability density function at x
35 double probability(int x); method in interface:IntegerDistribution
40 * this method represents the probability distribution function, or PDF
45 * @throws MathException if the cumulative probability can not be
54 * @return the cumulative probability.
55 * @throws MathException if the cumulative probability can not be
67 * probability under (the density of) X, then <code>m - 1</code> is
77 * @param p the cumulative probability
[all...]
H A DAbstractIntegerDistribution.java64 * @return cumulative probability that a random variable with this
66 * @throws MathException if the cumulative probability can not be
79 * @return the probability that a random variable with this distribution
82 * @throws MathException if the cumulative probability can not be
105 * this method represents the probability distribution function, or PDF,
110 * @throws MathException if the cumulative probability can not be
118 * method represents the probability mass function, or PMF, for the distribution.
122 * @param x the value at which the probability density function is evaluated
123 * @return the value of the probability density function at x
125 public double probability(doubl method in class:AbstractIntegerDistribution
[all...]
H A DBinomialDistributionImpl.java41 /** The probability of success. */
46 * probability of success.
49 * @param p the probability of success.
67 * Access the probability of success for this distribution.
69 * @return the probability of success.
104 * Change the probability of success for this distribution.
106 * @param p the new probability of success.
108 * probability.
117 * Change the probability of success for this distribution.
119 * @param p the new probability o
185 public double probability(int x) { method in class:BinomialDistributionImpl
[all...]
H A DPascalDistributionImpl.java42 /** The probability of success */
47 * probability of success.
49 * @param p the probability of success
66 * Access the probability of success for this distribution.
67 * @return the probability of success
101 * Change the probability of success for this distribution.
102 * @param p the new probability of success
104 * probability.
113 * Change the probability of success for this distribution.
114 * @param p the new probability o
175 public double probability(int x) { method in class:PascalDistributionImpl
[all...]
H A DPoissonDistributionImpl.java37 * Default maximum number of iterations for cumulative probability calculations.
60 * Maximum number of iterations for cumulative probability.
68 * Convergence criterion for cumulative probability.
182 * The probability mass function P(X = x) for a Poisson distribution.
184 * @param x the value at which the probability density function is
186 * @return the value of the probability mass function at x
188 public double probability(int x) { method in class:PoissonDistributionImpl
203 * The probability distribution function P(X <= x) for a Poisson
208 * @throws MathException if the cumulative probability can not be computed
238 // calculate the probability usin
[all...]
H A DZipfDistributionImpl.java139 * The probability mass function P(X = x) for a Zipf distribution.
141 * @param x the value at which the probability density function is evaluated.
142 * @return the value of the probability mass function at x
144 public double probability(final int x) { method in class:ZipfDistributionImpl
154 * The probability distribution function P(X <= x) for a Zipf distribution.
175 * @param p the desired probability for the critical value
188 * @param p the desired probability for the critical value
H A DHypergeometricDistributionImpl.java116 * @param p the desired probability for the critical value
129 * @param p the desired probability for the critical value
196 public double probability(int x) { method in class:HypergeometricDistributionImpl
228 private double probability(int n, int m, int k, int x) { method in class:HypergeometricDistributionImpl
335 * probability is computed by summing the point probabilities for the values
349 double ret = probability(n, m, k, x0);
352 ret += probability(n, m, k, x0);
/external/iptables/include/linux/netfilter/
H A Dxt_statistic.h25 __u32 probability; member in struct:xt_statistic_info::__anon8320::__anon8321
/external/kernel-headers/original/uapi/linux/netfilter/
H A Dxt_statistic.h25 __u32 probability; member in struct:xt_statistic_info::__anon9006::__anon9007
/external/iproute2/tc/
H A Dq_choke.c40 double probability = 0.02; local
89 } else if (strcmp(*argv, "probability") == 0) {
91 if (sscanf(*argv, "%lg", &probability) != 1) {
92 fprintf(stderr, "Illegal \"probability\"\n");
141 wlog = tc_red_eval_P(opt.qth_min*avpkt, opt.qth_max*avpkt, probability);
143 fprintf(stderr, "CHOKE: failed to calculate probability.\n");
161 max_P = probability * pow(2, 32);
196 fprintf(f, "probability %g ", max_P / pow(2, 32));
H A Dq_gred.c44 fprintf(stderr, " [ probability PROBABILITY ] [ bandwidth KBPS ]\n");
128 double probability = 0.02; local
191 } else if (strcmp(*argv, "probability") == 0) {
193 if (sscanf(*argv, "%lg", &probability) != 1) {
194 fprintf(stderr, "Illegal \"probability\"\n");
247 if ((parm = tc_red_eval_P(opt.qth_min, opt.qth_max, probability)) < 0) {
248 fprintf(stderr, "GRED: failed to calculate probability.\n");
264 max_P = probability * pow(2, 32);
328 fprintf(f, "probability %lg ", max_p[i] / pow(2, 32));
H A Dq_red.c32 fprintf(stderr, " [adaptive] [probability PROBABILITY] [bandwidth KBPS]\n");
41 double probability = 0.02; local
81 } else if (strcmp(*argv, "probability") == 0) {
83 if (sscanf(*argv, "%lg", &probability) != 1) {
84 fprintf(stderr, "Illegal \"probability\"\n");
137 if ((parm = tc_red_eval_P(opt.qth_min, opt.qth_max, probability)) < 0) {
138 fprintf(stderr, "RED: failed to calculate probability.\n");
152 max_P = probability * pow(2, 32);
195 fprintf(f, "probability %lg ", max_P / pow(2, 32));
H A Dq_sfq.c34 fprintf(stderr, " [ avpkt BYTES ] [ burst PACKETS ] [ probability P ]\n");
45 double probability = 0.02; local
134 } else if (strcmp(*argv, "probability") == 0) {
136 if (sscanf(*argv, "%lg", &probability) != 1) {
137 fprintf(stderr, "Illegal \"probability\"\n");
192 wlog = tc_red_eval_P(opt.qth_min, opt.qth_max, probability);
194 fprintf(stderr, "SFQ: failed to calculate probability.\n");
198 opt.max_P = probability * pow(2, 32);
236 fprintf(f, "min %s max %s probability %g ",
/external/libvpx/libvpx/vp8/decoder/
H A Ddboolhuff.h53 static int vp8dx_decode_bool(BOOL_DECODER *br, int probability) { argument
61 split = 1 + (((br->range - 1) * probability) >> 8);
/external/libvpx/libvpx/vp8/encoder/
H A Dboolhuff.h59 static void vp8_encode_bool(BOOL_CODER *br, int bit, int probability) { argument
70 Sectionbits[active_section] += vp8_prob_cost[255 - probability];
72 Sectionbits[active_section] += vp8_prob_cost[probability];
77 split = 1 + (((range - 1) * probability) >> 8);
/external/libvpx/libvpx/vpx_dsp/
H A Dbitwriter.h33 static INLINE void vpx_write(vpx_writer *br, int bit, int probability) { argument
40 split = 1 + (((range - 1) * probability) >> 8);
/external/v4l2_codec2/vda/
H A Dvp8_bool_decoder.cc125 int Vp8BoolDecoder::ReadBit(int probability) { argument
127 size_t split = 1 + (((range_ - 1) * probability) >> 8);
158 bool Vp8BoolDecoder::ReadBool(bool* out, uint8_t probability) { argument
159 *out = !!ReadBit(probability);
/external/libtextclassifier/lang_id/
H A Dlang-id.cc54 // Default value for the probability threshold; see comments for
170 float probability = scores[label]; local
171 if (probability < probability_threshold_) {
190 // We use a tiny probability, such that any client that uses a meaningful
191 // probability threshold ignores this prediction. We don't use 0.0f, to
328 // Only predictions with a probability (confidence) above this threshold are
/external/libnl/include/linux-private/linux/
H A Dpkt_sched.h525 __u32 probability; member in struct:tc_netem_reorder
530 __u32 probability; member in struct:tc_netem_corrupt
606 __u32 increment; /* probability increment, (d1 in Blue) */
607 __u32 decrement; /* probability decrement, (d2 in Blue) */
/external/iproute2/include/linux/
H A Dpkt_sched.h223 __u32 max_P; /* probability, high resolution */
555 __u32 probability; member in struct:tc_netem_reorder
560 __u32 probability; member in struct:tc_netem_corrupt
643 __u32 increment; /* probability increment, (d1 in Blue) */
644 __u32 decrement; /* probability decrement, (d2 in Blue) */
848 __u32 prob; /* current probability */
/external/kernel-headers/original/uapi/linux/
H A Dpkt_sched.h224 __u32 max_P; /* probability, high resolution */
558 __u32 probability; member in struct:tc_netem_reorder
563 __u32 probability; member in struct:tc_netem_corrupt
646 __u32 increment; /* probability increment, (d1 in Blue) */
647 __u32 decrement; /* probability decrement, (d2 in Blue) */
857 __u32 prob; /* current probability */
/external/v8/src/regexp/
H A Djsregexp.cc3709 // probability-of-finding-one-of-the-characters, where the probability is
3737 // We use the probability of skipping times the distance we are skipping to
3739 // dividing by 2 we switch off the skipping if the probability of skipping
3745 // Called 'probability' but it is only a rough estimate and can actually
3747 int probability = (in_quickcheck_range ? kSize / 2 : kSize) - frequency; local
3748 int points = (i - remembered_from) * probability;
/external/robolectric/v3/runtime/
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...

Completed in 450 milliseconds

12