HomeSort by relevance Sort by last modified time
    Searched refs:predicted (Results 1 - 25 of 45) sorted by null

1 2

  /external/v8/test/cctest/
test-random-number-generator.cc 83 // The predicted bit is one of the bits from the PRNG.
101 int predicted; local
103 predicted = (history[ago] >> predictor_bit) & 1;
105 predicted = predictor_bit == -2 ? 0 : 1;
108 if (bit == predicted) m++;
  /external/v8/test/mjsunit/
random-bit-correlations.js 24 // The predicted bit is one of the bits from the PRNG.
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/webkit/
dfg-constant-fold-misprediction.js 28 // A function with an argument correctly predicted double.
34 // A division that is going to be predicted integer on the first compilation. The
36 // division will be 1, which is too low for the division to be predicted double.
37 // If we constant fold this division, we'll have a constant node that is predicted
39 // predicted double, will lead the Fixup phase to inject an Int32ToDouble node on
dfg-compare-final-object-to-final-object-or-other-when-both-proven-final-object.js 25 "Tests that the CompareEq optimization for the case where one side is predicted final object and the other side is predicted either final object or other (i.e. null or undefined) doesn't assert when both sides are also proven final object."
dfg-compare-final-object-to-final-object-or-other-when-proven-final-object.js 25 "Tests that the CompareEq optimization for the case where one side is predicted final object and the other side is predicted either final object or other (i.e. null or undefined) doesn't assert when the other side is also proven final object."
dfg-peephole-compare-final-object-to-final-object-or-other-when-both-proven-final-object.js 25 "Tests that the peephole CompareEq optimization for the case where one side is predicted final object and the other side is predicted either final object or other (i.e. null or undefined) doesn't assert when both sides are also proven final object."
dfg-peephole-compare-final-object-to-final-object-or-other-when-proven-final-object.js 25 "Tests that the peephole CompareEq optimization for the case where one side is predicted final object and the other side is predicted either final object or other (i.e. null or undefined) doesn't assert when the other side is also proven final object."
dfg-bool-to-int32-reuse.js 25 "Tests that using a value predicted boolean after it is converted to an int32 doesn't crash the compiler while causing bad code gen."
dfg-int32-to-double-on-known-number.js 25 "Tests that we don't emit unnecessary speculation checks when performing an int32 to double conversion on a value that is proved to be a number, predicted to be an int32, but not proved to be an int32."
dfg-mispredict-variable-but-prove-int.js 25 "Tests that a variable predicted to be either int or double but proven to be an int does confuse the Branch logic."
boolean-argument-prediction.js 25 "This tests that arguments predicted to be boolean are checked."
dfg-arith-add-overflow-check-elimination-predicted-but-not-proven-int.js 25 "Tests that when values predicted but not proven int are used in a tower of additions, we don't eliminate the overflow check unsoundly."
dfg-int32-to-double-on-set-local-and-sometimes-exit.js 25 "Tests that an Int32ToDouble placed on a SetLocal does a forward exit, and works right even when the relevant variable is actually predicted numeric."
  /external/opencv3/samples/cpp/
logistic_regression.cpp 79 static float calculateAccuracyPercent(const Mat &original, const Mat &predicted)
81 return 100 * (float)countNonZero(original == predicted) / predicted.rows;
154 cout << "original vs predicted:" << endl;
  /external/libvorbis/lib/
floor1.c 731 int predicted=render_point(x0,x1,y0,y1,info->postlist[i]); local
734 if(vx>=0 && predicted!=vx){
737 output[i]= predicted|0x8000;
813 int predicted=render_point(x0,x1,y0,y1,info->postlist[i]); local
815 if((post[i]&0x8000) || (predicted==post[i])){
816 post[i]=predicted|0x8000; /* in case there was roundoff jitter
820 int headroom=(look->quant_q-predicted<predicted?
821 look->quant_q-predicted:predicted);
1013 int predicted=render_point(info->postlist[look->loneighbor[i-2]], local
    [all...]
  /system/extras/perfprofd/quipper/kernel-headers/tools/perf/
perf.h 146 u64 predicted : 1; member in struct:branch_flags
  /external/tremolo/Tremolo/
floor1.c 298 /* unpack wrapped/predicted values from stream */
334 int predicted=render_point(info->postlist[info->loneighbor[i-2]], local
339 int hiroom=quant_q-predicted;
340 int loroom=predicted;
359 fit_value[i]=val+predicted;
364 fit_value[i]=predicted|0x8000;
  /external/libvorbis/doc/
07-floor1.tex 269 9) [predicted] = \link{vorbis:spec:render:point}{render_point}( vector [floor1_X_list] element [low_neighbor_offset],
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]
  /system/extras/perfprofd/quipper/original-kernel-headers/tools/perf/
perf.h 184 u64 predicted:1; member in struct:branch_flags
  /system/extras/perfprofd/quipper/
perf_parser.h 93 bool predicted; member in struct:quipper::ParsedEvent::BranchEntry
perf_parser.cc 392 parsed_entry.predicted = entry.flags.predicted;
393 // Either predicted or mispredicted, not both. But don't use a CHECK here,
395 if (entry.flags.predicted == entry.flags.mispred) {
396 LOG(ERROR) << "Branch stack entry predicted and mispred flags "
  /external/opencv3/3rdparty/libwebp/enc/
vp8l.c 114 VP8LHistogram* predicted = local
115 (VP8LHistogram*)malloc(2 * sizeof(*predicted));
116 if (predicted == NULL) return 0;
117 nonpredicted = predicted + 1;
119 VP8LHistogramInit(predicted, 0);
134 VP8LHistogramAddSinglePixOrCopy(predicted, &pix_diff_token);
141 *predicted_bits = VP8LHistogramEstimateBitsBulk(predicted);
142 free(predicted);
    [all...]
  /development/ndk/platforms/android-21/include/linux/
perf_event.h 411 predicted:1, member in struct:perf_branch_entry
  /prebuilts/ndk/current/platforms/android-21/arch-arm/usr/include/linux/
perf_event.h 411 predicted:1, member in struct:perf_branch_entry
  /prebuilts/ndk/current/platforms/android-21/arch-arm64/usr/include/linux/
perf_event.h 411 predicted:1, member in struct:perf_branch_entry

Completed in 1160 milliseconds

1 2