Home
last modified time | relevance | path

Searched refs:predicted (Results 1 – 25 of 43) sorted by relevance

12

/external/v8/test/mjsunit/
Drandom-bit-correlations.js38 var predicted;
40 predicted = (history[ago] >> predictor_bit) & 1;
42 predicted = predictor_bit == -2 ? 0 : 1;
45 if (bit == predicted) m++;
/external/v8/test/cctest/
Dtest-random-number-generator.cc101 int predicted; in RandomBitCorrelation() local
103 predicted = (history[ago] >> predictor_bit) & 1; in RandomBitCorrelation()
105 predicted = predictor_bit == -2 ? 0 : 1; in RandomBitCorrelation()
108 if (bit == predicted) m++; in RandomBitCorrelation()
/external/libvorbis/lib/
Dfloor1.c731 int predicted=render_point(x0,x1,y0,y1,info->postlist[i]); in floor1_fit() local
734 if(vx>=0 && predicted!=vx){ in floor1_fit()
737 output[i]= predicted|0x8000; in floor1_fit()
813 int predicted=render_point(x0,x1,y0,y1,info->postlist[i]); in floor1_encode() local
815 if((post[i]&0x8000) || (predicted==post[i])){ in floor1_encode()
816 post[i]=predicted|0x8000; /* in case there was roundoff jitter in floor1_encode()
820 int headroom=(look->quant_q-predicted<predicted? in floor1_encode()
821 look->quant_q-predicted:predicted); in floor1_encode()
823 int val=post[i]-predicted; in floor1_encode()
1013 int predicted=render_point(info->postlist[look->loneighbor[i-2]], in floor1_inverse1() local
[all …]
/external/opencv3/samples/cpp/
Dlogistic_regression.cpp79 static float calculateAccuracyPercent(const Mat &original, const Mat &predicted) in calculateAccuracyPercent() argument
81 return 100 * (float)countNonZero(original == predicted) / predicted.rows; in calculateAccuracyPercent()
/external/tremolo/Tremolo/
Dfloor1.c334 int predicted=render_point(info->postlist[info->loneighbor[i-2]], in floor1_inverse1() local
339 int hiroom=quant_q-predicted; in floor1_inverse1()
340 int loroom=predicted; in floor1_inverse1()
359 fit_value[i]=val+predicted; in floor1_inverse1()
364 fit_value[i]=predicted|0x8000; in floor1_inverse1()
/external/libvorbis/doc/
D07-floor1.tex269 …9) [predicted] = \link{vorbis:spec:render:point}{render_point}( vector [floor1_X_list] element [lo…
276 11) [highroom] = [range] - [predicted]
277 12) [lowroom] = [predicted]
297 22) vector [floor1_final_Y] element [i] = [val] - [lowroom] + [predicted]
301 … 23) vector [floor1_final_Y] element [i] = [predicted] - [val] + [highroom] - 1
310 [predicted] - (([val] + 1) divided by 2 using integer division)
315 [predicted] + ([val] / 2 using integer division)
324 28) vector [floor1_final_Y] element [i] = [predicted]
/external/opencv3/3rdparty/libwebp/enc/
Dvp8l.c114 VP8LHistogram* predicted = in AnalyzeEntropy() local
115 (VP8LHistogram*)malloc(2 * sizeof(*predicted)); in AnalyzeEntropy()
116 if (predicted == NULL) return 0; in AnalyzeEntropy()
117 nonpredicted = predicted + 1; in AnalyzeEntropy()
119 VP8LHistogramInit(predicted, 0); in AnalyzeEntropy()
134 VP8LHistogramAddSinglePixOrCopy(predicted, &pix_diff_token); in AnalyzeEntropy()
141 *predicted_bits = VP8LHistogramEstimateBitsBulk(predicted); in AnalyzeEntropy()
142 free(predicted); in AnalyzeEntropy()
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/textana/
Dacctab.utf13 ! prominence set (predicted by the DT) Pico
Dphrtab.utf13 ! bound set (predicted by the DT) Pico
/external/llvm/test/Analysis/BlockFrequencyInfo/
Dbasic.ll35 ; The 'then' branch is predicted more likely via branch weight metadata.
70 ; The 'case_c' branch is predicted more likely via branch weight metadata.
/external/v8/test/webkit/
Dboolean-argument-prediction-expected.txt24 This tests that arguments predicted to be boolean are checked.
Ddfg-compare-final-object-to-final-object-or-other-when-both-proven-final-object-expected.txt24 …reEq optimization for the case where one side is predicted final object and the other side is pred…
Ddfg-compare-final-object-to-final-object-or-other-when-proven-final-object-expected.txt24 …reEq optimization for the case where one side is predicted final object and the other side is pred…
Ddfg-peephole-compare-final-object-to-final-object-or-other-when-proven-final-object-expected.txt24 …reEq optimization for the case where one side is predicted final object and the other side is pred…
Ddfg-peephole-compare-final-object-to-final-object-or-other-when-both-proven-final-object-expected.txt24 …reEq optimization for the case where one side is predicted final object and the other side is pred…
Ddfg-arith-add-overflow-check-elimination-predicted-but-not-proven-int-expected.txt24 Tests that when values predicted but not proven int are used in a tower of additions, we don't elim…
Ddfg-bool-to-int32-reuse-expected.txt24 Tests that using a value predicted boolean after it is converted to an int32 doesn't crash the comp…
Ddfg-int32-to-double-on-known-number-expected.txt24 …an int32 to double conversion on a value that is proved to be a number, predicted to be an int32, …
Ddfg-mispredict-variable-but-prove-int-expected.txt24 Tests that a variable predicted to be either int or double but proven to be an int does confuse the…
Ddfg-int32-to-double-on-set-local-and-sometimes-exit-expected.txt24 …does a forward exit, and works right even when the relevant variable is actually predicted numeric.
/external/kernel-headers/original/uapi/linux/
Dperf_event.h963 predicted:1,/* target predicted */ member
/external/opencv3/doc/tutorials/imgproc/histograms/histogram_comparison/
Dhistogram_comparison.markdown156 … that the match *base-half* is the second best match (as we predicted). For the other two metrics,
/external/opencv3/doc/tutorials/ml/introduction_to_svm/
Dintroduction_to_svm.markdown157 Cartesian plane. Each of the points is colored depending on the class predicted by the SVM; in
/external/opencv3/doc/tutorials/ml/non_linear_svms/
Dnon_linear_svms.markdown147 Cartesian plane. Each of the points is colored depending on the class predicted by the SVM; in
/external/pcre/dist/
DHACKING70 compile - which might use a bit less than the predicted amount of memory. The

12