HomeSort by relevance Sort by last modified time
    Searched full:word1 (Results 51 - 75 of 85) sorted by null

1 23 4

  /external/dropbear/libtomcrypt/src/pk/asn1/der/object_identifier/
der_length_object_identifier.c 53 /* word1 = 0,1,2,3 and word2 0..39 */
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/
dynamic_patricia_trie_policy.cpp 246 const int *const word1, const int length1, const int probability) {
261 const int word1Pos = getTerminalNodePositionOfWord(word1, length1,
280 const int *const word1, const int length1) {
295 const int word1Pos = getTerminalNodePositionOfWord(word1, length1,
  /bionic/libc/stdlib/
strtod.c 216 #define word1(x) ((x).ul[0]) macro
219 #define word1(x) ((x).ul[1]) macro
1033 word1(a) = 0;
1040 word1(a) = 0;
1045 word1(a) = L >= 31 ? 1 : 1 << (31 - L);
1067 #define d1 word1(d)
1117 word1(d) = d1 >> 16 | d1 << 16;
1144 d1 = word1(d) >> 16 | word1(d) << 16;
1147 #define d1 word1(d
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
ExpandableBinaryDictionary.java 345 protected void addBigramDynamically(final String word0, final String word1,
357 mBinaryDictionary.addBigramWords(word0, word1, frequency);
360 mDictionaryWriter.addBigramWords(word0, word1, frequency, isValid,
370 protected void removeBigramDynamically(final String word0, final String word1) {
381 mBinaryDictionary.removeBigramWords(word0, word1);
384 mDictionaryWriter.removeBigramWords(word0, word1);
477 protected boolean isValidBigramLocked(final String word1, final String word2) {
479 return mBinaryDictionary.isValidBigram(word1, word2);
ExpandableDictionary.java 290 public boolean removeBigram(final String word0, final String word1) {
291 // Refer to addOrSetBigram() about word1.toLowerCase()
293 final Node secondWord = searchWord(mRoots, word1, 0, null);
322 public NextWord getBigramWord(final String word0, final String word1) {
325 final Node secondWord = searchWord(mRoots, word1, 0, null);
500 public int setBigramAndGetFrequency(final String word0, final String word1,
502 return setBigramAndGetFrequency(word0, word1, frequency, null /* unused */);
505 public int setBigramAndGetFrequency(final String word0, final String word1,
507 return setBigramAndGetFrequency(word0, word1, 0 /* unused */, fcp);
513 * @param word1 the second word of this bigra
    [all...]
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/dictionary/
bigram_dictionary.cpp 153 int BigramDictionary::getBigramProbability(const int *word0, int length0, const int *word1,
158 int nextWordPos = mDictionaryStructurePolicy->getTerminalNodePositionOfWord(word1, length1,
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
BinaryDictDecoderEncoderTests.java 405 final String word1 = expectedWords.get(expectedBigrams.keyAt(i)); local
407 if (expBigrams.get(word1) == null) {
408 expBigrams.put(word1, new ArrayList<String>());
410 expBigrams.get(word1).add(expectedWords.get(w2));
416 final String word1 = resultWords.get(entry.getKey()); local
420 if (actBigrams.get(word1) == null) {
421 actBigrams.put(word1, new ArrayList<String>());
423 actBigrams.get(word1).add(word2);
  /external/llvm/lib/Object/
MachOObjectFile.cpp 55 SwapValue(H.Word1);
370 return (RE.Word1 >> 24) & 1;
371 return (RE.Word1 >> 7) & 1;
383 return (RE.Word1 >> 25) & 3;
384 return (RE.Word1 >> 5) & 3;
395 return RE.Word1 >> 28;
396 return RE.Word1 & 0xf;
    [all...]
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86MachObjectWriter.cpp 195 MRE.Word1 = ((Index << 0) |
332 MRE.Word1 = ((Index << 0) |
405 MRE.Word1 = Value2;
425 MRE.Word1 = Value;
469 MRE.Word1 = ((Index << 0) |
570 MRE.Word1 = ((Index << 0) |
  /external/chromium_org/third_party/WebKit/Source/wtf/
dtoa.cpp 61 #define word1(x) (x)->L[1] macro
64 #define word1(x) (x)->L[0] macro
553 #define d1 word1(d)
814 x = (i > 32) ? (word0(&u) << (64 - i)) | (word1(&u) >> (i - 32))
815 : word1(&u) << (32 - i);
1038 if ((roundingNone || leftright) && (!word1(&u) && !(word0(&u) & Bndry_mask) && word0(&u) & (Exp_mask & ~Exp_msk1))) {
1112 // (the (word1(&u) & 1) clause is looking highly suspicious). I haven't
1122 if (!j1 && !(word1(&u) & 1)) {
1130 if (j < 0 || (!j && !(word1(&u) & 1))) {
    [all...]
  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
motion_comp.cpp 1702 uint32 word1, word2, word3; local
    [all...]
  /external/ipsec-tools/src/racoon/
eaytest.c 843 char *word1 = "1234567890", *word2 = "12345678901234567890"; local
850 buf = vmalloc(strlen(word1));
851 memcpy(buf->v, word1, buf->l);
880 char *word1 = "1234567890", *word2 = "12345678901234567890"; local
887 buf = vmalloc(strlen(word1));
888 memcpy(buf->v, word1, buf->l);
  /external/chromium_org/third_party/re2/re2/testing/
re2_test.cc 327 string word1; local
331 CHECK(RE2::PartialMatch("foo", r, &word1, &word2, &word3));
332 CHECK_EQ(word1, "foo");
335 CHECK(RE2::PartialMatch("bar", r, &word1, &word2, &word3));
336 CHECK_EQ(word1, "");
339 CHECK(RE2::PartialMatch("baz", r, &word1, &word2, &word3));
340 CHECK_EQ(word1, "");
343 CHECK(!RE2::PartialMatch("f", r, &word1, &word2, &word3));
    [all...]
  /external/regex-re2/re2/testing/
re2_test.cc 320 string word1; local
324 CHECK(RE2::PartialMatch("foo", r, &word1, &word2, &word3));
325 CHECK_EQ(word1, "foo");
328 CHECK(RE2::PartialMatch("bar", r, &word1, &word2, &word3));
329 CHECK_EQ(word1, "");
332 CHECK(RE2::PartialMatch("baz", r, &word1, &word2, &word3));
333 CHECK_EQ(word1, "");
336 CHECK(!RE2::PartialMatch("f", r, &word1, &word2, &word3));
    [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
BinaryDictionaryDecayingTests.java 276 final String word1 = words.get(word1Index); local
277 final Pair<String, String> bigram = new Pair<String, String>(word0, word1);
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/codec/
EncoderUtil.java 525 String word1 = encodeB(prefix, part1, usedCharacters, charset, local
532 return word1 + " " + word2;
553 String word1 = encodeQ(prefix, part1, usage, usedCharacters, local
560 return word1 + " " + word2;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
FusionDictionary.java 438 * @param word1 the previous word of the context
442 public void setBigram(final String word1, final String word2, final int frequency) {
443 PtNode ptNode = findWordInTree(mRootNodeArray, word1);
450 // if word1 and word2 share a common stem that happens not to have been
452 ptNode = findWordInTree(mRootNodeArray, word1);
    [all...]
  /external/chromium/sdch/open-vcdiff/src/
blockhash.cc 251 inline bool CompareWholeWordValues<1>(const char* word1,
254 memcpy(&aligned_word1, word1, sizeof(aligned_word1));
  /external/chromium_org/sdch/open-vcdiff/src/
blockhash.cc 252 inline bool CompareWholeWordValues<1>(const char* word1,
255 memcpy(&aligned_word1, word1, sizeof(aligned_word1));
  /external/open-vcdiff/src/
blockhash.cc 252 inline bool CompareWholeWordValues<1>(const char* word1,
255 memcpy(&aligned_word1, word1, sizeof(aligned_word1));
  /external/llvm/include/llvm/Object/
MachOFormat.h 352 uint32_t Word1;
  /libcore/harmony-tests/src/test/java/org/apache/harmony/luni/tests/java/util/
ScannerTest.java 675 s = new Scanner("word1 word2 ");
676 assertEquals("word1", s.next());
807 s = new Scanner("word1 word2 ");
809 assertEquals("word1", s.next(pattern));
854 s = new Scanner("word1 next ");
855 assertEquals("word1", s.next("\\w+"));
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
r600_shader.c 479 uint32_t word1 = i32_from_byte_stream(bytes, &bytes_read); local
492 /* WORD1 */
493 vtx.dst_gpr = G_SQ_VTX_WORD1_GPR_DST_GPR(word1);
494 vtx.dst_sel_x = G_SQ_VTX_WORD1_DST_SEL_X(word1);
495 vtx.dst_sel_y = G_SQ_VTX_WORD1_DST_SEL_Y(word1);
496 vtx.dst_sel_z = G_SQ_VTX_WORD1_DST_SEL_Z(word1);
497 vtx.dst_sel_w = G_SQ_VTX_WORD1_DST_SEL_W(word1);
498 vtx.use_const_fields = G_SQ_VTX_WORD1_USE_CONST_FIELDS(word1);
499 vtx.data_format = G_SQ_VTX_WORD1_DATA_FORMAT(word1);
500 vtx.num_format_all = G_SQ_VTX_WORD1_NUM_FORMAT_ALL(word1);
    [all...]
  /external/mesa3d/src/gallium/drivers/r600/
r600_shader.c 479 uint32_t word1 = i32_from_byte_stream(bytes, &bytes_read); local
492 /* WORD1 */
493 vtx.dst_gpr = G_SQ_VTX_WORD1_GPR_DST_GPR(word1);
494 vtx.dst_sel_x = G_SQ_VTX_WORD1_DST_SEL_X(word1);
495 vtx.dst_sel_y = G_SQ_VTX_WORD1_DST_SEL_Y(word1);
496 vtx.dst_sel_z = G_SQ_VTX_WORD1_DST_SEL_Z(word1);
497 vtx.dst_sel_w = G_SQ_VTX_WORD1_DST_SEL_W(word1);
498 vtx.use_const_fields = G_SQ_VTX_WORD1_USE_CONST_FIELDS(word1);
499 vtx.data_format = G_SQ_VTX_WORD1_DATA_FORMAT(word1);
500 vtx.num_format_all = G_SQ_VTX_WORD1_NUM_FORMAT_ALL(word1);
    [all...]
  /external/libvpx/libvpx/examples/includes/geshi/geshi/
winbatch.php 66 'ZOOMED', 'YES', 'WORD4', 'WORD2', 'WORD1', 'WHOLESECTION', 'WAIT', 'UNSORTED', 'UNCHECK', 'TRUE', 'TILE',
    [all...]

Completed in 757 milliseconds

1 23 4