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

  /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::__anon30412
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-19/arch-arm64/usr/include/linux/
romfs_fs.h 37 __be32 word0; member in struct:romfs_super_block
  /prebuilts/ndk/9/platforms/android-19/arch-mips64/usr/include/linux/
romfs_fs.h 37 __be32 word0; member in struct:romfs_super_block
  /prebuilts/ndk/9/platforms/android-19/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.c 36 uint32_t word0, word; local
51 /* word0 is suitable for <=toUSection[] comparison, word for <toUSection[] */
52 word0=UCNV_EXT_TO_U_MAKE_WORD(byte, 0);
62 word=word0|UCNV_EXT_TO_U_VALUE_MASK;
76 if(word0<=toUSection[start]) {
79 if(++start<limit && word0<=toUSection[start]) {
82 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 66 #define word0(x) (x)->L[0] macro
69 #define word0(x) (x)->L[1] macro
560 #define d0 word0(d)
764 ASSERT((word0(&u) & Exp_mask) != Exp_mask);
776 if (word0(&u) & Sign_bit) {
778 word0(&u) &= ~Sign_bit; // clear sign bit
783 if ((i = (int)(word0(&u) >> Exp_shift1 & (Exp_mask >> Exp_shift1)))) {
785 word0(&d2) &= Frac_mask1;
786 word0(&d2) |= Exp_11;
816 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
1163 L = (word0(x) & Exp_mask) - (P-1)*Exp_msk1;
1172 word0(&u) = L;
1180 word0(&u) = 0x80000 >> L;
1184 word0(&u) = 0;
1208 #define d0 word0(&d)
1255 word0(&d) = d0 >> 16 | d0 << 16;
1280 d0 = word0(d) >> 16 | word0(d) << 16
    [all...]
  /ndk/sources/android/support/src/stdio/
strtod.c 222 #define word0(x) ((x).ul[1]) macro
225 #define word0(x) ((x).ul[0]) macro
275 #define Infinite(x) (word0(x) == 0x7ff00000) /* sufficient test for here */
1278 L = (word0(x) & Exp_mask) - (P-1)*Exp_msk1;
1285 word0(a) = L;
1292 word0(a) = 0x80000 >> L;
1296 word0(a) = 0;
1319 #define d0 word0(d)
1369 word0(d) = d0 >> 16 | d0 << 16;
1396 d0 = word0(d) >> 16 | word0(d) << 16
    [all...]

Completed in 496 milliseconds