Home
last modified time | relevance | path

Searched refs:probability (Results 1 – 25 of 81) sorted by relevance

1234

/external/llvm/test/Analysis/BranchProbabilityInfo/
Dloop.ll1 ; Test the static branch probability heuristics for no-return functions.
12 ; CHECK: edge entry -> do.body probability is 0x80000000 / 0x80000000 = 100.00% [HOT edge]
18 ; CHECK: edge do.body -> do.body1 probability is 0x80000000 / 0x80000000 = 100.00% [HOT edge]
26 ; CHECK: edge do.body1 -> do.body1 probability is 0x7c000000 / 0x80000000 = 96.88% [HOT edge]
27 ; CHECK: edge do.body1 -> do.end probability is 0x04000000 / 0x80000000 = 3.12%
34 ; CHECK: edge do.end -> do.body probability is 0x7c000000 / 0x80000000 = 96.88% [HOT edge]
35 ; CHECK: edge do.end -> do.end5 probability is 0x04000000 / 0x80000000 = 3.12%
46 ; CHECK: edge entry -> for.body.lr.ph probability is 0x50000000 / 0x80000000 = 62.50%
47 ; CHECK: edge entry -> for.end6 probability is 0x30000000 / 0x80000000 = 37.50%
52 ; CHECK: edge for.body.lr.ph -> for.body probability is 0x80000000 / 0x80000000 = 100.00% [HOT edge]
[all …]
Dbasic.ll7 ; CHECK: edge entry -> body probability is 0x80000000 / 0x80000000 = 100.00% [HOT edge]
18 ; CHECK: edge body -> exit probability is 0x04000000 / 0x80000000 = 3.12%
19 ; CHECK: edge body -> body probability is 0x7c000000 / 0x80000000 = 96.88% [HOT edge]
30 ; CHECK: edge entry -> then probability is 0x78787878 / 0x80000000 = 94.12% [HOT edge]
31 ; CHECK: edge entry -> else probability is 0x07878788 / 0x80000000 = 5.88%
35 ; CHECK: edge then -> exit probability is 0x80000000 / 0x80000000 = 100.00% [HOT edge]
39 ; CHECK: edge else -> exit probability is 0x80000000 / 0x80000000 = 100.00% [HOT edge]
55 ; CHECK: edge entry -> case_a probability is 0x06666666 / 0x80000000 = 5.00%
56 ; CHECK: edge entry -> case_b probability is 0x06666666 / 0x80000000 = 5.00%
57 ; CHECK: edge entry -> case_c probability is 0x66666666 / 0x80000000 = 80.00%
[all …]
Dnoreturn.ll1 ; Test the static branch probability heuristics for no-return functions.
11 ; CHECK: edge entry -> exit probability is 0x7ffff800 / 0x80000000 = 100.00% [HOT edge]
12 ; CHECK: edge entry -> abort probability is 0x00000800 / 0x80000000 = 0.00%
29 ; CHECK: edge entry -> exit probability is 0x7fffe000 / 0x80000000 = 100.00% [HOT edge]
30 ; CHECK: edge entry -> case_a probability is 0x00000800 / 0x80000000 = 0.00%
31 ; CHECK: edge entry -> case_b probability is 0x00000800 / 0x80000000 = 0.00%
32 ; CHECK: edge entry -> case_c probability is 0x00000800 / 0x80000000 = 0.00%
33 ; CHECK: edge entry -> case_d probability is 0x00000800 / 0x80000000 = 0.00%
58 ; CHECK: edge entry -> exit probability is 0x7ffff800 / 0x80000000 = 100.00% [HOT edge]
59 ; CHECK: edge entry -> dom probability is 0x00000800 / 0x80000000 = 0.00%
[all …]
Dpr22718.ll4 ; reflected in the probability computation because the weight is larger than
7 ; CHECK: edge for.body -> if.then probability is 0x0cccba45 / 0x80000000 = 10.00%
8 ; CHECK: edge for.body -> if.else probability is 0x733345bb / 0x80000000 = 90.00% [HOT edge]
/external/chromium-trace/catapult/telemetry/third_party/WebKit/PerformanceTests/resources/
Dstatistics.js69 var probability = (1 - (1 - confidenceLevel) / 2);
70 if (!(probability in tDistributionInverseCDF)) {
78 var cdfForProbability = tDistributionInverseCDF[probability];
106 this.confidenceInterval = function (values, probability) { argument
109 …var delta = this.confidenceIntervalDelta(probability || 0.95, values.length, sum, this.squareSum(v…
/external/libvpx/libvpx/vp8/encoder/
Dboolhuff.h62 static void vp8_encode_bool(BOOL_CODER *br, int bit, int probability) in vp8_encode_bool() argument
74 Sectionbits[active_section] += vp8_prob_cost[255-probability]; in vp8_encode_bool()
76 Sectionbits[active_section] += vp8_prob_cost[probability]; in vp8_encode_bool()
81 split = 1 + (((range - 1) * probability) >> 8); in vp8_encode_bool()
/external/apache-commons-math/src/main/java/org/apache/commons/math/distribution/
DHypergeometricDistributionImpl.java196 public double probability(int x) { in probability() method in HypergeometricDistributionImpl
228 private double probability(int n, int m, int k, int x) { in probability() method in HypergeometricDistributionImpl
349 double ret = probability(n, m, k, x0); in innerCumulativeProbability()
352 ret += probability(n, m, k, x0); in innerCumulativeProbability()
DAbstractIntegerDistribution.java125 public double probability(double x) { in probability() method in AbstractIntegerDistribution
128 return this.probability((int) x); in probability()
/external/iproute2/tc/
Dq_choke.c40 double probability = 0.02; in choke_parse_opt() local
91 if (sscanf(*argv, "%lg", &probability) != 1) { in choke_parse_opt()
141 wlog = tc_red_eval_P(opt.qth_min*avpkt, opt.qth_max*avpkt, probability); in choke_parse_opt()
161 max_P = probability * pow(2, 32); in choke_parse_opt()
Dq_red.c41 double probability = 0.02; in red_parse_opt() local
83 if (sscanf(*argv, "%lg", &probability) != 1) { in red_parse_opt()
137 if ((parm = tc_red_eval_P(opt.qth_min, opt.qth_max, probability)) < 0) { in red_parse_opt()
152 max_P = probability * pow(2, 32); in red_parse_opt()
Dq_sfq.c45 double probability = 0.02; in sfq_parse_opt() local
136 if (sscanf(*argv, "%lg", &probability) != 1) { in sfq_parse_opt()
192 wlog = tc_red_eval_P(opt.qth_min, opt.qth_max, probability); in sfq_parse_opt()
198 opt.max_P = probability * pow(2, 32); in sfq_parse_opt()
Dq_netem.c350 if (get_percent(&reorder.probability, *argv)) { in netem_parse_opt()
365 if (get_percent(&corrupt.probability, *argv)) { in netem_parse_opt()
444 if (reorder.probability) { in netem_parse_opt()
647 if (reorder && reorder->probability) { in netem_print_opt()
649 sprint_percent(reorder->probability, b1)); in netem_print_opt()
655 if (corrupt && corrupt->probability) { in netem_print_opt()
657 sprint_percent(corrupt->probability, b1)); in netem_print_opt()
Dq_gred.c128 double probability = 0.02; in gred_parse_opt() local
193 if (sscanf(*argv, "%lg", &probability) != 1) { in gred_parse_opt()
247 if ((parm = tc_red_eval_P(opt.qth_min, opt.qth_max, probability)) < 0) { in gred_parse_opt()
264 max_P = probability * pow(2, 32); in gred_parse_opt()
/external/libgdx/gdx/src/com/badlogic/gdx/math/
DCumulativeDistribution.java78 public T value(float probability){ in value() argument
84 if(probability < value.frequency) in value()
86 else if(probability > value.frequency) in value()
/external/llvm/test/Transforms/SampleProfile/
Dfnptr.ll8 ; CHECK: edge for.body3 -> if.then probability is 0x1a4f3959 / 0x80000000 = 20.55%
9 ; CHECK: edge for.body3 -> if.else probability is 0x65b0c6a7 / 0x80000000 = 79.45%
10 ; CHECK: edge for.inc -> for.inc12 probability is 0x33d4a4c1 / 0x80000000 = 40.49%
11 ; CHECK: edge for.inc -> for.body3 probability is 0x4c2b5b3f / 0x80000000 = 59.51%
12 ; CHECK: edge for.inc12 -> for.end14 probability is 0x3f06d04e / 0x80000000 = 49.24%
13 ; CHECK: edge for.inc12 -> for.cond1.preheader probability is 0x40f92fb2 / 0x80000000 = 50.76%
Ddiscriminator.ll37 ; CHECK: edge while.cond -> while.body probability is 0x7ebb907a / 0x80000000 = 99.01% [HOT edge]
38 ; CHECK: edge while.cond -> while.end probability is 0x01446f86 / 0x80000000 = 0.99%
44 ; CHECK: edge while.body -> if.then probability is 0x06666666 / 0x80000000 = 5.00%
45 ; CHECK: edge while.body -> if.end probability is 0x7999999a / 0x80000000 = 95.00% [HOT edge]
Dpropagate.ll76 ; CHECK: edge for.cond -> for.body probability is 0x745d1746 / 0x80000000 = 90.91% [HOT edge]
77 ; CHECK: edge for.cond -> for.end18 probability is 0x0ba2e8ba / 0x80000000 = 9.09%
85 ; CHECK: edge for.body -> if.then3 probability is 0x1999999a / 0x80000000 = 20.00%
86 ; CHECK: edge for.body -> if.end probability is 0x66666666 / 0x80000000 = 80.00%
100 ; CHECK: edge if.end -> if.then6 probability is 0x000f801f / 0x80000000 = 0.05%
101 ; CHECK: edge if.end -> if.else7 probability is 0x7ff07fe1 / 0x80000000 = 99.95% [HOT edge]
122 ; CHECK: edge for.cond8 -> for.body11 probability is 0x5bfc7472 / 0x80000000 = 71.86%
123 ; CHECK: edge for.cond8 -> for.end probability is 0x24038b8e / 0x80000000 = 28.14%
Dcalls.ll55 ; CHECK: edge while.cond -> while.body probability is 0x80000000 / 0x80000000 = 100.00% [HOT edge]
56 ; CHECK: edge while.cond -> while.end probability is 0x00000000 / 0x80000000 = 0.00%
66 ; CHECK: edge while.body -> if.then probability is 0x80000000 / 0x80000000 = 100.00% [HOT edge]
67 ; CHECK: edge while.body -> if.else probability is 0x00000000 / 0x80000000 = 0.00%
/external/libvpx/libvpx/vp8/decoder/
Ddboolhuff.h58 static int vp8dx_decode_bool(BOOL_DECODER *br, int probability) { in vp8dx_decode_bool() argument
66 split = 1 + (((br->range - 1) * probability) >> 8); in vp8dx_decode_bool()
/external/iptables/extensions/
Dlibxt_statistic.man14 [\fB!\fP] \fB\-\-probability\fP \fIp\fP
15 Set the probability for a packet to be randomly matched. It only works with the
/external/libvpx/libvpx/vpx_dsp/
Dbitwriter.h33 static INLINE void vpx_write(vpx_writer *br, int bit, int probability) { in vpx_write() argument
40 split = 1 + (((range - 1) * probability) >> 8); in vpx_write()
/external/libgdx/gdx/src/com/badlogic/gdx/maps/tiled/
DAtlasTmxMapLoader.java409 String probability = tileElement.getAttribute("probability", null); in loadTileset() local
410 if (probability != null) { in loadTileset()
411 tile.getProperties().put("probability", probability); in loadTileset()
448 String probability = tileElement.getAttribute("probability", null); in loadTileset() local
449 if (probability != null) { in loadTileset()
450 tile.getProperties().put("probability", probability); in loadTileset()
/external/llvm/docs/
DBlockFrequencyTerminology.rst27 branch probability associated with a given edge is its own weight divided by
47 The probability of branching from block A to block B is 7/15, and the
48 probability of branching from block A to block C is 8/15.
122 * every branch weight is assumed to be 1 (i.e., every branch probability
/external/llvm/test/CodeGen/X86/
Dcode_placement_ignore_succ_in_inner_loop.ll4 ; Test that when determining the edge probability from a node in an inner loop
46 ; Test that when determining the edge probability from a node in a loop to a
76 ; Test that when determining the edge probability from a node in a loop to a
/external/opencv3/doc/py_tutorials/py_imgproc/py_histograms/py_histogram_backprojection/
Dpy_histogram_backprojection.markdown17 that of our input image, where each pixel corresponds to the probability of that pixel belonging to
27 words, we calculate the probability of every pixel belonging to the ground and show it. The
53 with every pixel as its corresponding probability of being target. ie B(x,y) = R[h(x,y),s(x,y)]
82 backproject function. It returns the probability image. Then we convolve the image with a disc

1234