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

1 2 3

  /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...]
  /external/chromium_org/third_party/cld/encodings/compact_lang_det/
cldutil.cc 100 uint32 word0, word1; local
109 word1 = UnalignedLoad32(word_ptr + 4) & kWordMask0[bytecount & 3];
110 word1 = word1 ^ (word1 << 18);
111 return word0 + word1;
157 uint32 word0, word1, word2; local
165 word1 = UnalignedLoad32(word_ptr + 4) & kWordMask0[bytecount & 3];
166 word1 = word1 ^ (word1 << 4)
227 uint64 word1; local
    [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...]
  /bionic/libc/upstream-openbsd/lib/libc/gdtoa/
ulp.c 53 word1(&a) = 0;
60 word1(&a) = 0;
65 word1(&a) = L >= 31 ? 1 : 1 << (31 - L);
strtod.c 77 word1(&u) = 0;
309 word1(&rv) = 0;
321 word1(&rv) = bits[0];
326 word1(&rv) = NAN_WORD1;
467 word1(&rv) = Big1;
471 word1(&rv) = 0;
475 word1(&rv) = 0;
484 word1(&rv) = Big1;
513 word1(&rv) = Big1;
536 word1(&rv) = 0
    [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/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);
  /external/ltrace/sysdeps/linux-gnu/ia64/
trace.c 55 } word1; member in struct:bundle_t::__anon30412
102 unsigned long top = 0UL | bundle.bitmap.word1.top_slot1;
108 insn = bundle.bitmap.word1.slot2;
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
BinaryDictionaryTests.java 206 final String word1, final int probability) {
207 binaryDictionary.addNgramEntry(new PrevWordsInfo(new WordInfo(word0)), word1, probability,
212 final String word0, final String word1) {
213 return binaryDictionary.isValidNgram(new PrevWordsInfo(new WordInfo(word0)), word1);
217 final String word0, final String word1) {
218 binaryDictionary.removeNgramEntry(new PrevWordsInfo(new WordInfo(word0)), word1);
222 final String word0, final String word1) {
223 return binaryDictionary.getNgramProbability(new PrevWordsInfo(new WordInfo(word0)), word1);
425 final String word1 = words.get(random.nextInt(wordCount)); local
426 if (TextUtils.equals(word0, word1)) {
648 final String word1 = words.get(random.nextInt(wordCount)); local
745 final String word1 = words.get(word1Index); local
886 final String word1 = words.get(random.nextInt(words.size())); local
963 final String word1 = entry.getKey().second; local
1041 final String word1 = words.get(word1Index); local
1067 final String word1 = wordProperty.mBigrams.get(j).mWord; local
1129 final String word1 = words.get(word1Index); local
1159 final String word1 = wordProperty.mBigrams.get(j).mWord; local
1419 final String word1 = words.get(word1Index); local
    [all...]
  /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...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
Ver4DictEncoder.java 106 for (final WeightedString word1 : word0Property.mBigrams) {
109 if (!binaryDict.addNgramEntry(prevWordsInfo, word1.mWord,
110 word1.getProbability(), 0 /* timestamp */)) {
112 + prevWordsInfo + " -> " + word1.mWord);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/linux/
romfs_fs.h 23 __be32 word1; member in struct:romfs_super_block
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
romfs_fs.h 23 __be32 word1; member in struct:romfs_super_block

Completed in 528 milliseconds

1 2 3