/bionic/libc/include/sys/ |
_system_properties.h | 103 ** Called to predict if a series of cached __system_property_find 106 ** also be used to predict if a failed __system_property_find
|
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/ |
DFA.js | 15 /** From the input stream, predict what alternative will succeed 20 predict: function(input) {
|
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/ |
DFA.pm | 60 # From the input stream, predict what alternative will succeed 64 sub predict { subroutine
|
/external/opencv3/modules/ml/test/ |
test_svmtrainauto.cpp | 78 float result0 = svm->predict( test_point0 ); 81 float result1 = svm->predict( test_point1 );
|
/external/opencv3/modules/video/src/ |
kalman.cpp | 82 const Mat& KalmanFilter::predict(const Mat& control) function in class:cv::KalmanFilter 97 // handle the case when there will be measurement before the next predict.
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/ |
armVCM4P2_ACDCPredict.c | 61 * OMX_VC_HORIZONTAL predict horizontally 62 * OMX_VC_VERTICAL predict vertically
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/ |
b-header-vars | 40 BASIC_BLOCK_H=basic-block.h predict.h predict.def vec.h statistics.h ggc.h gtype-desc.h statistics.h function.h line-map.h input.h machmode.h mode-classes.def insn-modes.h cfg-flags.def cfghooks.h 41 GIMPLE_H=gimple.h gimple.def gsstruct.def pointer-set.h vec.h statistics.h ggc.h gtype-desc.h statistics.h ggc.h gtype-desc.h statistics.h basic-block.h predict.h predict.def vec.h statistics.h ggc.h gtype-desc.h statistics.h function.h i386-opts.h real.h machmode.h mode-classes.def insn-modes.h fixed-value.h machmode.h mode-classes.def insn-modes.h double-int.h tree-ssa-operands.h tree-ssa-alias.h internal-fn.h internal-fn.def 58 CFGLOOP_H=cfgloop.h basic-block.h predict.h predict.def vec.h statistics.h ggc.h gtype-desc.h statistics.h function.h hashtab.h statistics.h sbitmap.h 76 PREDICT_H=predict.h predict.def 103 IRA_INT_H=ira.h ira-int.h cfgloop.h basic-block.h predict.h predict.def vec.h statistics.h ggc.h gtype-desc.h statistics.h function.h hashtab.h statistics.h sbitmap.h (…) [all...] |
/external/opencv3/apps/traincascade/ |
old_ml.hpp | 203 virtual float predict( const CvMat* samples, CV_OUT CvMat* results=0, CV_OUT CvMat* results_prob=0 ) const; 211 CV_WRAP virtual float predict( const cv::Mat& samples, CV_OUT cv::Mat* results=0, CV_OUT cv::Mat* results_prob=0 ) const; 491 virtual float predict( const CvMat* sample, bool returnDFVal=false ) const; 492 virtual float predict( const CvMat* samples, CV_OUT CvMat* results, bool returnDFVal=false ) const; 512 CV_WRAP virtual float predict( const cv::Mat& sample, bool returnDFVal=false ) const; 513 CV_WRAP_AS(predict_all) virtual void predict( cv::InputArray samples, cv::OutputArray results ) const; 539 virtual float predict( const float* row_sample, int row_len, bool returnDFVal=false ) const; 787 virtual CvDTreeNode* predict( const CvMat* sample, const CvMat* missingDataMask=0, 796 CV_WRAP virtual CvDTreeNode* predict( const cv::Mat& sample, const cv::Mat& missingDataMask=cv::Mat(), [all...] |
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/ |
dfa.rb | 95 For more information on the prediction algorithm, check out the #predict method 171 def predict( input ) method in class:ANTLR3 237 def predict( input ) method in class:ANTLR3
|
/external/libpng/contrib/intel/ |
filter_sse2_intrinsics.c | 21 // Functions in this file look at most 3 pixels (a,b,c) to predict the 4th (d). 177 // Paeth tries to predict pixel d using the pixel to the left of it, a, 233 // Paeth tries to predict pixel d using the pixel to the left of it, a,
|
/external/webp/src/dsp/ |
lossless_enc.c | 541 static WEBP_INLINE uint32_t Predict(VP8LPredictorFunc pred_func, 589 const uint32_t predict = local 590 Predict(pred_func, col, row, current_row, upper_row); 591 uint32_t residual = VP8LSubPixels(current_row[col], predict); 643 const uint32_t predict = local 644 Predict(pred_func, x, y, current_row, upper_row); 645 argb[y * width + x] = VP8LSubPixels(current_row[x], predict); 649 uint32_t predict, residual; local 655 predict = Predict(pred_func, x, y, current_row, upper_row) [all...] |
/external/antlr/antlr-3.4/runtime/C/include/ |
antlr3cyclicdfa.h | 75 ANTLR3_INT32 (*predict) (void * ctx, pANTLR3_BASE_RECOGNIZER recognizer, pANTLR3_INT_STREAM is, struct ANTLR3_CYCLIC_DFA_struct * dfa); member in struct:ANTLR3_CYCLIC_DFA_struct
|
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/ |
nuances.rb | 132 // this rule used to generate an infinite loop in DFA.predict
|
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/ |
TestDFAMatching.java | 99 assertEquals(dfa.predict(stream), expected);
|
/external/libvpx/libvpx/vp9/common/ |
vp9_reconinter.h | 31 sf->predict[subpel_x != 0][subpel_y != 0][ref](
|
/external/llvm/test/CodeGen/AMDGPU/ |
llvm.round.ll | 30 ; predict how the scheduler will order the instructions. We already have
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/ |
NameValueBlockReader.java | 52 // block. We cut the inflater off at its source because we can't predict the
|
/external/opencv3/samples/cpp/ |
kalman.cpp | 59 Mat prediction = KF.predict();
|
/external/opencv3/samples/python2/ |
digits_video.py | 83 digit = model.predict(sample)[0]
|
kalman.py | 46 prediction = kalman.predict()
|
/external/valgrind/memcheck/tests/ |
descr_belowsp.c | 100 /* Cannot test the next byte, as we cannot predict how
|
/prebuilts/go/darwin-x86/src/math/rand/ |
example_test.go | 33 "Cannot predict now",
|
/prebuilts/go/linux-x86/src/math/rand/ |
example_test.go | 33 "Cannot predict now",
|
/external/antlr/antlr-3.4/runtime/Python/antlr3/ |
dfa.py | 64 def predict(self, input): member in class:DFA 66 From the input stream, predict what alternative will succeed
|
/external/valgrind/cachegrind/ |
cg_branchpred.c | 40 that return stack predictors almost always predict correctly, and 65 a successful predict.
|