/external/v8/test/mjsunit/ |
D | random-bit-correlations.js | 38 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/ |
D | test-random-number-generator.cc | 101 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/ |
D | floor1.c | 731 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/ |
D | logistic_regression.cpp | 79 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/ |
D | floor1.c | 334 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/ |
D | 07-floor1.tex | 269 …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/ |
D | vp8l.c | 114 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/ |
D | acctab.utf | 13 ! prominence set (predicted by the DT) Pico
|
D | phrtab.utf | 13 ! bound set (predicted by the DT) Pico
|
/external/llvm/test/Analysis/BlockFrequencyInfo/ |
D | basic.ll | 35 ; 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/ |
D | boolean-argument-prediction-expected.txt | 24 This tests that arguments predicted to be boolean are checked.
|
D | dfg-compare-final-object-to-final-object-or-other-when-both-proven-final-object-expected.txt | 24 …reEq optimization for the case where one side is predicted final object and the other side is pred…
|
D | dfg-compare-final-object-to-final-object-or-other-when-proven-final-object-expected.txt | 24 …reEq optimization for the case where one side is predicted final object and the other side is pred…
|
D | dfg-peephole-compare-final-object-to-final-object-or-other-when-proven-final-object-expected.txt | 24 …reEq optimization for the case where one side is predicted final object and the other side is pred…
|
D | dfg-peephole-compare-final-object-to-final-object-or-other-when-both-proven-final-object-expected.txt | 24 …reEq optimization for the case where one side is predicted final object and the other side is pred…
|
D | dfg-arith-add-overflow-check-elimination-predicted-but-not-proven-int-expected.txt | 24 Tests that when values predicted but not proven int are used in a tower of additions, we don't elim…
|
D | dfg-bool-to-int32-reuse-expected.txt | 24 Tests that using a value predicted boolean after it is converted to an int32 doesn't crash the comp…
|
D | dfg-int32-to-double-on-known-number-expected.txt | 24 …an int32 to double conversion on a value that is proved to be a number, predicted to be an int32, …
|
D | dfg-mispredict-variable-but-prove-int-expected.txt | 24 Tests that a variable predicted to be either int or double but proven to be an int does confuse the…
|
D | dfg-int32-to-double-on-set-local-and-sometimes-exit-expected.txt | 24 …does a forward exit, and works right even when the relevant variable is actually predicted numeric.
|
/external/kernel-headers/original/uapi/linux/ |
D | perf_event.h | 963 predicted:1,/* target predicted */ member
|
/external/opencv3/doc/tutorials/imgproc/histograms/histogram_comparison/ |
D | histogram_comparison.markdown | 156 … 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/ |
D | introduction_to_svm.markdown | 157 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/ |
D | non_linear_svms.markdown | 147 Cartesian plane. Each of the points is colored depending on the class predicted by the SVM; in
|
/external/pcre/dist/ |
D | HACKING | 70 compile - which might use a bit less than the predicted amount of memory. The
|