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

1 2

  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
get_pred_adv_b_add.cpp 91 uint32 pred_word, word1, word2; local
118 word1 = *((uint32*)prev); /* read 4 bytes, b4 b3 b2 b1 */
120 word1 >>= 8; /* 0 b4 b3 b2 */
121 pred_word = word1 | (word2 << 24); /* b5 b4 b3 b2 */
124 word1 = *((uint32*)(prev += 4)); /* b12 b11 b10 b9 */
126 pred_word = word2 | (word1 << 24); /* b9 b8 b7 b6 */
136 prev -= 2; /* word1-aligned */
140 word1 = *((uint32*)prev); /* read 4 bytes, b4 b3 b2 b1 */
142 word1 >>= 16; /* 0 0 b4 b3 */
143 pred_word = word1 | (word2 << 16); /* b6 b5 b4 b3 *
191 uint32 word1, word2, word3, word12; local
520 uint32 word1, word2, word3, word12, word22; local
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
UserHistoryDictionaryBigramList.java 47 public void addBigram(String word1, String word2) {
48 addBigram(word1, word2, FORGETTING_CURVE_INITIAL_VALUE);
54 public void addBigram(String word1, String word2, byte fcValue) {
56 Log.d(TAG, "--- add bigram: " + word1 + ", " + word2 + ", " + fcValue);
59 if (mBigramMap.containsKey(word1)) {
60 map = mBigramMap.get(word1);
63 mBigramMap.put(word1, map);
74 public void updateBigram(String word1, String word2, byte fcValue) {
76 Log.d(TAG, "--- update bigram: " + word1 + ", " + word2 + ", " + fcValue);
79 if (mBigramMap.containsKey(word1)) {
    [all...]
UserHistoryDictIOUtils.java 48 public void setBigram(final String word1, final String word2, final int frequency);
53 public int getFrequency(final String word1, final String word2);
141 for (final String word1 : bigrams.keySet()) {
142 final HashMap<String, Byte> word1Bigrams = bigrams.getBigrams(word1);
144 final int freq = dict.getFrequency(word1, word2);
150 if (word1 == null) {
153 Log.d(TAG, "add bigram: " + word1
158 if (word1 == null) { // unigram
161 if (FusionDictionary.findWordInTree(fusionDict.mRoot, word1) == null) {
162 fusionDict.add(word1, 2, null, false /* isNotAWord */)
204 final String word1 = entry.getValue(); local
    [all...]
UserHistoryDictionary.java 149 public int addToUserHistory(final String word1, final String word2, final boolean isValid) {
151 (word1 != null && word1.length() >= Constants.Dictionary.MAX_WORD_LENGTH)) {
160 if (word2.equals(word1)) {
164 if (null == word1) {
168 word1, word2, new ForgettingCurveParams(isValid));
170 mBigramList.addBigram(word1, word2);
179 public boolean cancelAddingUserHistory(final String word1, final String word2) {
182 if (mBigramList.removeBigram(word1, word2)) {
183 return super.removeBigram(word1, word2)
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
motion_comp.cpp 358 ULong pred_word, word1, word2; local
388 word1 = *((ULong*)(prev += lx)); /* read 4 bytes, b4 b3 b2 b1 */
390 word1 >>= 8; /* 0 b4 b3 b2 */
391 pred_word = word1 | (word2 << 24); /* b5 b4 b3 b2 */
394 word1 = *((ULong*)(prev + 8)); /* b12 b11 b10 b9 */
396 pred_word = word2 | (word1 << 24); /* b9 b8 b7 b6 */
404 prev -= 2; /* word1-aligned */
410 word1 = *((ULong*)(prev += lx)); /* read 4 bytes, b4 b3 b2 b1 */
412 word1 >>= 16; /* 0 0 b4 b3 */
413 pred_word = word1 | (word2 << 16); /* b6 b5 b4 b3 *
458 ULong word1, word2, word3, word12; local
783 ULong word1, word2, word3, word12, word22; local
    [all...]
  /external/stlport/test/unit/
setdiff_test.cpp 74 const char* word1 = "ABCDEFGHIJKLMNO"; local
78 set_symmetric_difference(word1, word1 + ::strlen(word1), word2, word2 + ::strlen(word2),
125 const char* word1 = "ABCDEFGHIJKLMNO"; local
129 set_difference(word1, word1 + ::strlen(word1), word2, word2 + ::strlen(word2), back_inserter(diff), less<char>());
setinter_test.cpp 68 const char* word1 = "ABCDEFGHIJKLMNO"; local
72 set_intersection(word1, word1 + ::strlen(word1), word2, word2 + ::strlen(word2),
setunion_test.cpp 71 const char* word1 = "ABCDEFGHIJKLMNO"; local
75 set_union(word1, word1 + ::strlen(word1), word2, word2 + ::strlen(word2),
swap_test.cpp 57 char word1[] = "World"; local
59 swap_ranges((char*)word1, (char*)word1 + ::strlen(word1), (char*)word2);
60 CPPUNIT_ASSERT(!strcmp(word1, "Hello"));
  /ndk/tests/device/test-gnustl-full/unit/
setdiff_test.cpp 74 const char* word1 = "ABCDEFGHIJKLMNO"; local
78 set_symmetric_difference(word1, word1 + ::strlen(word1), word2, word2 + ::strlen(word2),
125 const char* word1 = "ABCDEFGHIJKLMNO"; local
129 set_difference(word1, word1 + ::strlen(word1), word2, word2 + ::strlen(word2), back_inserter(diff), less<char>());
setinter_test.cpp 68 const char* word1 = "ABCDEFGHIJKLMNO"; local
72 set_intersection(word1, word1 + ::strlen(word1), word2, word2 + ::strlen(word2),
setunion_test.cpp 71 const char* word1 = "ABCDEFGHIJKLMNO"; local
75 set_union(word1, word1 + ::strlen(word1), word2, word2 + ::strlen(word2),
swap_test.cpp 57 char word1[] = "World"; local
59 swap_ranges((char*)word1, (char*)word1 + ::strlen(word1), (char*)word2);
60 CPPUNIT_ASSERT(!strcmp(word1, "Hello"));
  /ndk/tests/device/test-stlport/unit/
setdiff_test.cpp 74 const char* word1 = "ABCDEFGHIJKLMNO"; local
78 set_symmetric_difference(word1, word1 + ::strlen(word1), word2, word2 + ::strlen(word2),
125 const char* word1 = "ABCDEFGHIJKLMNO"; local
129 set_difference(word1, word1 + ::strlen(word1), word2, word2 + ::strlen(word2), back_inserter(diff), less<char>());
setinter_test.cpp 68 const char* word1 = "ABCDEFGHIJKLMNO"; local
72 set_intersection(word1, word1 + ::strlen(word1), word2, word2 + ::strlen(word2),
setunion_test.cpp 71 const char* word1 = "ABCDEFGHIJKLMNO"; local
75 set_union(word1, word1 + ::strlen(word1), word2, word2 + ::strlen(word2),
swap_test.cpp 57 char word1[] = "World"; local
59 swap_ranges((char*)word1, (char*)word1 + ::strlen(word1), (char*)word2);
60 CPPUNIT_ASSERT(!strcmp(word1, "Hello"));
  /packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
Diff.java 124 final CharGroup word1 = FusionDictionary.findWordInTree(dict1.mRoot, word0.mWord); local
125 if (null == word1) {
131 if (word0.mFrequency != word1.getFrequency()) {
133 + " -> " + word1.getFrequency());
136 if (word0.mIsNotAWord != word1.getIsNotAWord()) {
138 + " -> " + word1.getIsNotAWord());
141 if (word0.mIsBlacklistEntry != word1.getIsBlacklistEntry()) {
143 + " -> " + word1.getIsBlacklistEntry());
147 "Bigram", word0.mBigrams, word1.getBigrams());
149 "Shortcut", word0.mShortcutTargets, word1.getShortcutTargets())
    [all...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/EN/
UserDictionaryToolsListEN.java 71 public int compare(WnnWord word1, WnnWord word2) {
72 return word1.stroke.compareTo(word2.stroke);
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
UserDictionaryToolsListJAJP.java 68 public int compare(WnnWord word1, WnnWord word2) {
69 return word1.stroke.compareTo(word2.stroke);
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
UserHistoryDictIOUtilsTests.java 56 public int getFrequency(String word1, String word2) {
57 if (word1 == null) return UNIGRAM_FREQUENCY;
70 private void addBigram(final String word1, final String word2,
72 addWord(word1, addedWords);
74 addedWords.get(word1).add(word2);
77 private void addBigramToBigramList(final String word1, final String word2,
80 bigramList.addBigram(null, word1);
81 bigramList.addBigram(word1, word2);
83 addBigram(word1, word2, addedWords);
219 public void setBigram(final String word1, final String word2, final int frequency)
    [all...]
  /packages/inputmethods/LatinIME/native/jni/src/
bigram_dictionary.h 34 bool isValidBigram(const int *word1, int length1, const int *word2, int length2) const;
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
omxVCM4P2_MCReconBlock_s.s 115 ;// M_LOAD_XINT $pSrc, $srcStep, $offset, $word0, $word1, $word2, $word3
129 ;// $word0, $word1, $word2, $word3
137 ;// | Offset | Aligned Ptr | word0 | word1 | word2 | word3 |
151 ;// Note: {$word0, $word1, $word2, $word3} should be registers with ascending
155 M_LOAD_XINT $pSrc, $srcStep, $offset, $word0, $word1, $word2, $word3
157 LDM $pSrc, {$word0, $word1, $word2}
169 ;// M_EXT_XINT $offset, $word0, $word1, $word2, $word3
175 ;// $word0, $word1, $word2, $word3
181 ;// | Offset | Aligned Ptr | word0 | word1 | word2 | word3 |
190 ;// $word0, $word1, $word2, $word
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
romfs_fs.h 23 __be32 word1; member in struct:romfs_super_block
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
romfs_fs.h 23 __be32 word1; member in struct:romfs_super_block

Completed in 489 milliseconds

1 2