HomeSort by relevance Sort by last modified time
    Searched defs:word0 (Results 1 - 25 of 26) sorted by null

1 2

  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
Ver4DictDecoder.java 104 final String word0 = wordProperty.mWord; local
106 fusionDict.setBigram(word0, bigram.mWord, bigram.mProbabilityInfo);
Ver2DictDecoder.java 298 final String word0 = wordProperty.mWord; local
300 fusionDict.setBigram(word0, bigram.mWord, bigram.mProbabilityInfo);
  /bionic/libc/kernel/uapi/linux/
romfs_fs.h 37 __be32 word0; member in struct:romfs_super_block
  /development/ndk/platforms/android-L/include/linux/
romfs_fs.h 37 __be32 word0; member in struct:romfs_super_block
  /external/kernel-headers/original/uapi/linux/
romfs_fs.h 25 __be32 word0; member in struct:romfs_super_block
  /external/ltrace/sysdeps/linux-gnu/ia64/
trace.c 51 } word0; member in struct:bundle_t::__anon31255
101 unsigned long bot = 0UL | bundle.bitmap.word0.bot_slot1;
111 insn = bundle.bitmap.word0.slot0;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/linux/
romfs_fs.h 22 __be32 word0; 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 22 __be32 word0; member in struct:romfs_super_block
  /prebuilts/ndk/9/platforms/android-21/arch-arm/usr/include/linux/
romfs_fs.h 37 __be32 word0; member in struct:romfs_super_block
  /prebuilts/ndk/9/platforms/android-21/arch-arm64/usr/include/linux/
romfs_fs.h 37 __be32 word0; member in struct:romfs_super_block
  /prebuilts/ndk/9/platforms/android-21/arch-mips/usr/include/linux/
romfs_fs.h 37 __be32 word0; member in struct:romfs_super_block
  /prebuilts/ndk/9/platforms/android-21/arch-mips64/usr/include/linux/
romfs_fs.h 37 __be32 word0; member in struct:romfs_super_block
  /prebuilts/ndk/9/platforms/android-21/arch-x86/usr/include/linux/
romfs_fs.h 37 __be32 word0; member in struct:romfs_super_block
  /prebuilts/ndk/9/platforms/android-21/arch-x86_64/usr/include/linux/
romfs_fs.h 37 __be32 word0; member in struct:romfs_super_block
  /external/chromium_org/third_party/icu/source/common/
ucnv_ext.cpp 37 uint32_t word0, word; local
52 /* word0 is suitable for <=toUSection[] comparison, word for <toUSection[] */
53 word0=UCNV_EXT_TO_U_MAKE_WORD(byte, 0);
63 word=word0|UCNV_EXT_TO_U_VALUE_MASK;
77 if(word0<=toUSection[start]) {
80 if(++start<limit && word0<=toUSection[start]) {
83 if(++start<limit && word0<=toUSection[start]) {
    [all...]
  /external/icu/icu4c/source/common/
ucnv_ext.cpp 37 uint32_t word0, word; local
52 /* word0 is suitable for <=toUSection[] comparison, word for <toUSection[] */
53 word0=UCNV_EXT_TO_U_MAKE_WORD(byte, 0);
63 word=word0|UCNV_EXT_TO_U_VALUE_MASK;
77 if(word0<=toUSection[start]) {
80 if(++start<limit && word0<=toUSection[start]) {
83 if(++start<limit && word0<=toUSection[start]) {
    [all...]
  /external/chromium_org/third_party/cld/encodings/compact_lang_det/
cldutil.cc 100 uint32 word0, word1; local
102 word0 = UnalignedLoad32(word_ptr) & kWordMask0[bytecount & 3];
103 word0 = word0 ^ (word0 >> 3);
104 return word0;
107 word0 = UnalignedLoad32(word_ptr);
108 word0 = word0 ^ (word0 >> 3)
157 uint32 word0, word1, word2; local
226 uint64 word0; local
    [all...]
  /packages/inputmethods/LatinIME/native/jni/
com_android_inputmethod_latin_BinaryDictionary.cpp 454 // other hand, word0 can be null and then it means the set of params doesn't contain bigram
456 jintArray word0 = static_cast<jintArray>( local
458 jsize word0Length = word0 ? env->GetArrayLength(word0) : 0;
460 if (word0) {
461 env->GetIntArrayRegion(word0, 0, word0Length, word0CodePoints);
487 if (word0) {
501 env->DeleteLocalRef(word0);
    [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
BinaryDictionaryDecayingTests.java 79 private void addBigramWords(final BinaryDictionary binaryDictionary, final String word0,
81 binaryDictionary.addNgramEntry(new PrevWordsInfo(new WordInfo(word0)), word1, probability,
86 final String word0, final String word1) {
87 return binaryDictionary.isValidNgram(new PrevWordsInfo(new WordInfo(word0)), word1);
473 final String word0 = words.get(word0Index); local
475 final Pair<String, String> bigram = new Pair<>(word0, word1);
567 final String word0 = words.get(word0Index); local
573 addBigramWords(binaryDictionary, word0, word1, DUMMY_PROBABILITY);
    [all...]
BinaryDictionaryTests.java 205 private static void addBigramWords(final BinaryDictionary binaryDictionary, final String word0,
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);
424 final String word0 = words.get(random.nextInt(wordCount)); local
426 if (TextUtils.equals(word0, word1))
647 final String word0 = words.get(random.nextInt(wordCount)); local
744 final String word0 = words.get(word0Index); local
885 final String word0 = words.get(random.nextInt(words.size())); local
962 final String word0 = entry.getKey().first; local
1040 final String word0 = words.get(word0Index); local
1058 final String word0 = words.get(i); local
1128 final String word0 = words.get(word0Index); local
1153 final String word0 = wordProperty.mWord; local
1418 final String word0 = words.get(word0Index); local
    [all...]
  /bionic/libc/upstream-openbsd/lib/libc/gdtoa/
gdtoaimp.h 280 #define word0(x) (x)->L[1] macro
283 #define word0(x) (x)->L[0] macro
  /external/chromium_org/third_party/WebKit/Source/wtf/
dtoa.cpp 59 #define word0(x) (x)->L[0] macro
62 #define word0(x) (x)->L[1] macro
553 #define d0 word0(d)
757 ASSERT((word0(&u) & Exp_mask) != Exp_mask);
769 if (word0(&u) & Sign_bit) {
771 word0(&u) &= ~Sign_bit; // clear sign bit
776 if ((i = (int)(word0(&u) >> Exp_shift1 & (Exp_mask >> Exp_shift1)))) {
778 word0(&d2) &= Frac_mask1;
779 word0(&d2) |= Exp_11;
809 x = (i > 32) ? (word0(&u) << (64 - i)) | (word1(&u) >> (i - 32)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
r600_shader.c 478 uint32_t word0 = i32_from_byte_stream(bytes, &bytes_read); local
484 /* WORD0 */
485 vtx.inst = G_SQ_VTX_WORD0_VTX_INST(word0);
486 vtx.fetch_type = G_SQ_VTX_WORD0_FETCH_TYPE(word0);
487 vtx.buffer_id = G_SQ_VTX_WORD0_BUFFER_ID(word0);
488 vtx.src_gpr = G_SQ_VTX_WORD0_SRC_GPR(word0);
489 vtx.src_sel_x = G_SQ_VTX_WORD0_SRC_SEL_X(word0);
490 vtx.mega_fetch_count = G_SQ_VTX_WORD0_MEGA_FETCH_COUNT(word0);
    [all...]
  /external/mesa3d/src/gallium/drivers/r600/
r600_shader.c 478 uint32_t word0 = i32_from_byte_stream(bytes, &bytes_read); local
484 /* WORD0 */
485 vtx.inst = G_SQ_VTX_WORD0_VTX_INST(word0);
486 vtx.fetch_type = G_SQ_VTX_WORD0_FETCH_TYPE(word0);
487 vtx.buffer_id = G_SQ_VTX_WORD0_BUFFER_ID(word0);
488 vtx.src_gpr = G_SQ_VTX_WORD0_SRC_GPR(word0);
489 vtx.src_sel_x = G_SQ_VTX_WORD0_SRC_SEL_X(word0);
490 vtx.mega_fetch_count = G_SQ_VTX_WORD0_MEGA_FETCH_COUNT(word0);
    [all...]
  /external/chromium_org/base/third_party/dmg_fp/
dtoa.cc 307 #define word0(x) (x)->L[1] macro
310 #define word0(x) (x)->L[0] macro
1172 L = (word0(x) & Exp_mask) - (P-1)*Exp_msk1;
1181 word0(&u) = L;
1189 word0(&u) = 0x80000 >> L;
1193 word0(&u) = 0;
1217 #define d0 word0(&d)
1264 word0(&d) = d0 >> 16 | d0 << 16;
1289 d0 = word0(d) >> 16 | word0(d) << 16
    [all...]

Completed in 693 milliseconds

1 2