HomeSort by relevance Sort by last modified time
    Searched full:predict (Results 1 - 25 of 294) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libvpx/libvpx/vp9/common/
vp9_scale.c 77 sf->predict[0][0][0] = vp9_convolve_copy;
78 sf->predict[0][0][1] = vp9_convolve_avg;
79 sf->predict[0][1][0] = vp9_convolve8_vert;
80 sf->predict[0][1][1] = vp9_convolve8_avg_vert;
81 sf->predict[1][0][0] = vp9_convolve8_horiz;
82 sf->predict[1][0][1] = vp9_convolve8_avg_horiz;
85 sf->predict[0][0][0] = vp9_convolve8_vert;
86 sf->predict[0][0][1] = vp9_convolve8_avg_vert;
87 sf->predict[0][1][0] = vp9_convolve8_vert;
88 sf->predict[0][1][1] = vp9_convolve8_avg_vert
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
vp9_scale.c 85 sf->predict[0][0][0] = vp9_convolve_copy;
86 sf->predict[0][0][1] = vp9_convolve_avg;
87 sf->predict[0][1][0] = vp9_convolve8_vert;
88 sf->predict[0][1][1] = vp9_convolve8_avg_vert;
89 sf->predict[1][0][0] = vp9_convolve8_horiz;
90 sf->predict[1][0][1] = vp9_convolve8_avg_horiz;
93 sf->predict[0][0][0] = vp9_convolve8_vert;
94 sf->predict[0][0][1] = vp9_convolve8_avg_vert;
95 sf->predict[0][1][0] = vp9_convolve8_vert;
96 sf->predict[0][1][1] = vp9_convolve8_avg_vert
    [all...]
vp9_scale.h 34 convolve_fn_t predict[2][2][2]; // horiz, vert, avg member in struct:scale_factors
  /packages/inputmethods/OpenWnn/res/xml/
debug_tool_engine.xml 21 <!-- For int predict(ComposingText text, int minLen, int maxLen) -->
24 targetMethod = "predict" param = "null,0,-1," intRet = "0" isRet = "" strRet = ""/>
27 targetMethod = "predict" param = "empty,0,-1," intRet = "0" isRet ="" strRet = ""/>
30 targetMethod = "predict" param = "text,10,5,testCase03" intRet = "1" isRet ="" strRet = ""/>
33 targetMethod = "predict" param = "comma,10,5," intRet = "1" isRet ="" strRet = ""/>
46 <!-- before predict() call -->
50 <!-- predict() not call. -->
81 <!-- For int predict(ComposingText text, int minLen, int maxLen) -->
84 targetMethod = "predict" param = "null,0,-1," intRet = "0" isRet = "" strRet = ""/>
  /external/marisa-trie/tools/
Makefile.am 9 marisa-predict
22 marisa_predict_SOURCES = marisa-predict.cc cmdopt.c
marisa-predict.cc 23 " -d, --depth-first predict keys in depth first order(default)\n"
24 " -b, --breadth-first predict keys in breadth first order\n"
32 int predict(const char * const *args, std::size_t num_args) { function in namespace:__anon15909
66 std::size_t num_keys = trie.predict(str);
81 << ": failed to predict keys from: " << str << std::endl;
158 return predict(cmdopt.argv + cmdopt.optind, cmdopt.argc - cmdopt.optind);
marisa-benchmark.cc 57 " -I, --predict-ids get key IDs in predictive searches (default)\n"
58 " -i, --predict-strs restore key strings in predictive searches\n"
107 std::cout << "predict: both IDs and strings" << std::endl;
109 std::cout << "predict: only IDs" << std::endl;
243 std::cerr << "error: predict() failed" << std::endl;
264 std::cerr << "error: predict() failed" << std::endl;
296 "build", "restore", "lookup", "find", "predict", "predict");
336 { "predict-ids", 0, NULL, 'I' },
337 { "predict-strs", 0, NULL, 'i' }
    [all...]
  /external/marisa-trie/v0_1_5/tools/
Makefile.am 8 marisa_alpha-predict \
22 marisa_alpha_predict_SOURCES = marisa_alpha-predict.cc cmdopt.c
marisa_alpha-predict.cc 23 " -d, --depth-first predict keys in depth first order(default)\n"
24 " -b, --breadth-first predict keys in breadth first order\n"
32 int predict(const char * const *args, std::size_t num_args) { function in namespace:__anon15922
66 std::size_t num_keys = trie.predict(str);
81 << ": failed to predict keys from: " << str << std::endl;
159 return predict(cmdopt.argv + cmdopt.optind, cmdopt.argc - cmdopt.optind);
  /external/antlr/antlr-3.4/runtime/Python/tests/
t045dfabug.g 8 // this rule used to generate an infinite loop in DFA.predict
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
armVCM4P2_SetPredDir.c 57 * OMX_VC_HORIZONTAL predict horizontally
58 * OMX_VC_VERTICAL predict vertically
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
WnnEngine.java 54 * Predict words/phrases.
57 * @param minLen The minimum length of a word to predict (0 : no limit)
58 * @param maxLen The maximum length of a word to predict (-1 : no limit)
61 public int predict(ComposingText text, int minLen, int maxLen); method in interface:WnnEngine
97 * After {@link #predict(ComposingText, int, int)} or {@link #makeCandidateListOf(int)} or
100 * frequency order for {@link #predict(ComposingText, int, int)} and
  /external/libvpx/libvpx/test/
intrapred_test.cc 62 virtual void Predict(MB_PREDICTION_MODE mode) = 0;
167 Predict(DC_PRED);
174 Predict(DC_PRED);
181 Predict(DC_PRED);
188 Predict(DC_PRED);
194 Predict(H_PRED);
200 Predict(V_PRED);
206 Predict(TM_PRED);
262 virtual void Predict(MB_PREDICTION_MODE mode) {
345 virtual void Predict(MB_PREDICTION_MODE mode)
    [all...]
idct_test.cc 39 unsigned char predict[256]; member in class:__anon13715::IDCTTest
80 for (i = 0; i < 256; i++) predict[i] = i;
82 ASM_REGISTER_STATE_CHECK(UUT(input, predict, 16, output, 16));
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
intrapred_test.cc 62 virtual void Predict(MB_PREDICTION_MODE mode) = 0;
167 Predict(DC_PRED);
174 Predict(DC_PRED);
181 Predict(DC_PRED);
188 Predict(DC_PRED);
194 Predict(H_PRED);
200 Predict(V_PRED);
206 Predict(TM_PRED);
262 virtual void Predict(MB_PREDICTION_MODE mode) {
345 virtual void Predict(MB_PREDICTION_MODE mode)
    [all...]
idct_test.cc 39 unsigned char predict[256]; member in class:__anon24077::IDCTTest
80 for (i = 0; i < 256; i++) predict[i] = i;
82 REGISTER_STATE_CHECK(UUT(input, predict, 16, output, 16));
  /external/marisa-trie/tests/
trie-test.cc 152 ASSERT(trie.predict("") == 4);
153 ASSERT(trie.predict("a") == 3);
154 ASSERT(trie.predict("ap") == 2);
155 ASSERT(trie.predict("app") == 2);
156 ASSERT(trie.predict("appl") == 1);
157 ASSERT(trie.predict("apple") == 1);
158 ASSERT(trie.predict("appleX") == 0);
159 ASSERT(trie.predict("X") == 0);
162 ASSERT(trie.predict("a", &ids) == 3);
169 ASSERT(trie.predict("a", &ids, &strs) == 3)
    [all...]
  /external/marisa-trie/v0_1_5/tests/
trie-test.cc 154 ASSERT(trie.predict("") == 4);
155 ASSERT(trie.predict("a") == 3);
156 ASSERT(trie.predict("ap") == 2);
157 ASSERT(trie.predict("app") == 2);
158 ASSERT(trie.predict("appl") == 1);
159 ASSERT(trie.predict("apple") == 1);
160 ASSERT(trie.predict("appleX") == 0);
161 ASSERT(trie.predict("X") == 0);
164 ASSERT(trie.predict("a", &ids) == 3);
171 ASSERT(trie.predict("a", &ids, &strs) == 3)
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRDFA.h 52 // simulate the DFA using the static tables and predict an alternative
53 - (NSInteger) predict:(id<ANTLRCharStream>)anInput;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRDFA.h 52 // simulate the DFA using the static tables and predict an alternative
53 - (NSInteger) predict:(id<ANTLRCharStream>)anInput;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRDFA.h 52 // simulate the DFA using the static tables and predict an alternative
53 - (NSInteger) predict:(id<ANTLRCharStream>)anInput;
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
armVCM4P2_SetPredDir_s.s 46 ; * OMX_VC_HORIZONTAL predict horizontally
47 ; * OMX_VC_VERTICAL predict vertically
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
armVCM4P2_SetPredDir_s.s 46 ; * OMX_VC_HORIZONTAL predict horizontally
47 ; * OMX_VC_VERTICAL predict vertically
  /external/ceres-solver/docs/source/
history.rst 24 method of least squares to correctly predict when and where the
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
predict.h 26 #include "predict.def"

Completed in 1709 milliseconds

1 2 3 4 5 6 7 8 91011>>