HomeSort by relevance Sort by last modified time
    Searched defs:word1 (Results 26 - 39 of 39) sorted by null

12

  /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);
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
BinaryDictionaryTests.java 257 final String word1 = words.get(random.nextInt(wordCount)); local
258 if (TextUtils.equals(word0, word1)) {
261 final Pair<String, String> bigram = new Pair<String, String>(word0, word1);
265 binaryDictionary.addBigramWords(word0, word1, bigramProbability);
454 final String word1 = words.get(random.nextInt(wordCount)); local
455 if (TextUtils.equals(word0, word1)) {
458 final Pair<String, String> bigram = new Pair<String, String>(word0, word1);
462 binaryDictionary.addBigramWords(word0, word1, bigramProbability);
542 final String word1 = words.get(word1Index); local
543 if (TextUtils.equals(word0, word1)) {
666 final String word1 = words.get(random.nextInt(words.size())); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
dtoa.cpp 67 #define word1(x) (x)->L[1] macro
70 #define word1(x) (x)->L[0] macro
561 #define d1 word1(d)
816 x = (i > 32) ? (word0(&u) << (64 - i)) | (word1(&u) >> (i - 32))
817 : word1(&u) << (32 - i);
1040 if ((roundingNone || leftright) && (!word1(&u) && !(word0(&u) & Bndry_mask) && word0(&u) & (Exp_mask & ~Exp_msk1))) {
1114 // (the (word1(&u) & 1) clause is looking highly suspicious). I haven't
1124 if (!j1 && !(word1(&u) & 1)) {
1132 if (j < 0 || (!j && !(word1(&u) & 1))) {
    [all...]
  /external/valgrind/main/VEX/priv/
guest_mips_toIR.c 1264 UInt word1 = 0x00000342; local
    [all...]
guest_arm_toIR.c 12643 UInt word1 = 0xE1A0C1EC; local
14918 UInt word1 = 0x0CFCEA4F; local
    [all...]
guest_ppc_toIR.c 16545 UInt word1 = mode64 ? 0x78001800 : 0x54001800; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
motion_comp.cpp 1702 uint32 word1, word2, word3; local
    [all...]
intra_est.cpp 219 uint32 word1, word2, word3, word4; local
234 word1 = *((uint32*)(top)); /* read 4 bytes from top */
241 *((uint32*)(pred += 16)) = word1;
248 sum = word1 & 0xFF00FF;
249 word1 = (word1 >> 8) & 0xFF00FF;
250 sum += word1;
251 word1 = (word2 & 0xFF00FF);
252 sum += word1;
255 word1 = (word3 & 0xFF00FF)
    [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
BinaryDictDecoderEncoderTests.java 410 final String word1 = expectedWords.get(expectedBigrams.keyAt(i)); local
412 if (expBigrams.get(word1) == null) {
413 expBigrams.put(word1, new ArrayList<String>());
415 expBigrams.get(word1).add(expectedWords.get(w2));
421 final String word1 = resultWords.get(entry.getKey()); local
425 if (actBigrams.get(word1) == null) {
426 actBigrams.put(word1, new ArrayList<String>());
428 actBigrams.get(word1).add(word2);
  /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...]
  /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/chromium/base/third_party/dmg_fp/
dtoa.cc 308 #define word1(x) (x)->L[0] macro
311 #define word1(x) (x)->L[1] macro
1173 word1(&u) = 0;
1181 word1(&u) = 0;
1186 word1(&u) = L >= 31 ? 1 : 1 << 31 - L;
1209 #define d1 word1(&d)
1256 word1(&d) = d1 >> 16 | d1 << 16;
1281 d1 = word1(d) >> 16 | word1(d) << 16;
1284 #define d1 word1(d
    [all...]
  /external/chromium_org/base/third_party/dmg_fp/
dtoa.cc 314 #define word1(x) (x)->L[0] macro
317 #define word1(x) (x)->L[1] macro
1179 word1(&u) = 0;
1187 word1(&u) = 0;
1192 word1(&u) = L >= 31 ? 1 : 1 << 31 - L;
1215 #define d1 word1(&d)
1262 word1(&d) = d1 >> 16 | d1 << 16;
1287 d1 = word1(d) >> 16 | word1(d) << 16;
1290 #define d1 word1(d
    [all...]

Completed in 1179 milliseconds

12