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

1 23 4

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
dtoa.c 192 #define word1(x) (x)->L[0] macro
195 #define word1(x) (x)->L[1] macro
993 word1(&u) = 0;
1017 word1(&d) = y << ((32-Ebits) + k) | w >> (Ebits - k);
1024 word1(&d) = z << k | y >> (32 - k);
1028 word1(&d) = z;
1066 b->x[0] = word1(d);
1130 if ((y = word1(d))) {
    [all...]
  /prebuilts/ndk/r11/sources/android/support/src/stdio/
strtod.c 213 #define word1(x) ((x).ul[0]) macro
216 #define word1(x) ((x).ul[1]) macro
1276 word1(a) = 0;
1283 word1(a) = 0;
1288 word1(a) = L >= 31 ? 1 : 1 << (31 - L);
1310 #define d1 word1(d)
1360 word1(d) = d1 >> 16 | d1 << 16;
1387 d1 = word1(d) >> 16 | word1(d) << 16;
1390 #define d1 word1(d
    [all...]
  /prebuilts/ndk/r13/sources/android/support/src/stdio/
strtod.c 213 #define word1(x) ((x).ul[0]) macro
216 #define word1(x) ((x).ul[1]) macro
1276 word1(a) = 0;
1283 word1(a) = 0;
1288 word1(a) = L >= 31 ? 1 : 1 << (31 - L);
1310 #define d1 word1(d)
1360 word1(d) = d1 >> 16 | d1 << 16;
1387 d1 = word1(d) >> 16 | word1(d) << 16;
1390 #define d1 word1(d
    [all...]
  /device/linaro/bootloader/edk2/StdLib/LibC/gdtoa/
gdtoaimp.h 270 #define word1(x) ((ULong *)&x)[0] macro
273 #define word1(x) ((ULong *)&x)[1] macro
278 #define word1(x) ( /* LINTED */ (U*)&x)->L[0] macro
281 #define word1(x) ( /* LINTED */ (U*)&x)->L[1] macro
dtoa.c 172 if (!word1(d) && !(word0(d) & 0xfffff))
250 x = i > 32 ? word0(d) << (64 - i) | word1(d) >> (i - 32)
251 : word1(d) << (32 - i);
556 if (!word1(d) && !(word0(d) & Bndry_mask)
664 if (jj1 == 0 && mode != 1 && !(word1(d) & 1)
683 && !(word1(d) & 1)
804 word1(d) = 0;
misc.c 662 #define d1 word1(d)
709 word1(d) = d1 >> 16 | d1 << 16;
733 d1 = word1(d) >> 16 | word1(d) << 16;
736 #define d1 word1(d)
  /bionic/libc/upstream-openbsd/lib/libc/gdtoa/
dtoa.c 172 if (!word1(&d) && !(word0(&d) & 0xfffff))
250 x = i > 32 ? word0(&d) << (64 - i) | word1(&d) >> (i - 32)
251 : word1(&d) << (32 - i);
564 if (!word1(&d) && !(word0(&d) & Bndry_mask)
675 if (j1 == 0 && mode != 1 && !(word1(&d) & 1)
694 && !(word1(&d) & 1)
826 word1(&d) = 0;
misc.c 660 #define d1 word1(&d)
707 word1(&d) = d1 >> 16 | d1 << 16;
733 #define d1 word1(&d)
738 d1 = word1(&d) >> 16 | word1(&d) << 16;
gdtoaimp.h 281 #define word1(x) (x)->L[0] macro
284 #define word1(x) (x)->L[1] macro
strtodg.c 322 L = word1(d) << 16 | word1(d) >> 16;
325 if ( (L = word1(d)) !=0)
  /external/valgrind/VEX/pub/
libvex_guest_x86.h 259 UInt word1; member in struct:__anon35334::__anon35335::__anon35337
  /kernel/tests/net/test/
cstruct_test.py 60 "word1 nest2 nest3 int4",
77 d.nest2.word1 = 33214
87 " nest2=Nested(word1=33214, nest2=TestStructA(byte1=3, int2=4),"
  /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;
  /external/pcre/pcrecpp/
pcrecpp_unittest.cc 421 string word1; local
426 CHECK(r.PartialMatch("foo", &word1, &word2, &word3));
427 CHECK_EQ(word1, "foo");
430 CHECK(r.PartialMatch("bar", &word1, &word2, &word3));
431 CHECK_EQ(word1, "");
434 CHECK(r.PartialMatch("baz", &word1, &word2, &word3));
435 CHECK_EQ(word1, "");
438 CHECK(!r.PartialMatch("f", &word1, &word2, &word3));
    [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
FusionDictionary.java 301 * @param word1 the next word of the context
304 public void setBigram(final String word0, final String word1,
308 final PtNode ptNode1 = findWordInTree(mRootNodeArray, word1);
310 add(getCodePoints(word1), new ProbabilityInfo(0), false /* isNotAWord */,
313 // if word1 and word2 share a common stem that happens not to have been
317 ptNode0.addBigram(word1, probabilityInfo);
  /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...]
  /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/skia/src/sksl/
SkSLSPIRVCodeGenerator.cpp     [all...]
  /art/compiler/optimizing/
codegen_test.cc 254 const uint16_t word1 = High16Bits(Low32Bits(input)); \
258 Instruction::CONST_WIDE | 0 << 8, word0, word1, word2, word3, \
304 const uint16_t word1 = High16Bits(Low32Bits(input)); local
308 Instruction::CONST_WIDE | 0 << 8, word0, word1, word2, word3,
constant_folding_test.cc 165 const uint16_t word1 = High16Bits(Low32Bits(input)); local
169 Instruction::CONST_WIDE | 0 << 8, word0, word1, word2, word3,
  /external/libpcap/msdos/
ndis2.h 378 WORD word1; member in struct:_ReqBlock
ndis2.c 585 protManDS = reqBlock.word1;
  /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/syslinux/gpxe/src/drivers/net/
atl1e.c 798 packet_size = ((prrs->word1 >> RRS_PKT_SIZE_SHIFT) &
815 (((u32)((prrs->word1 >> RRS_PKT_SIZE_SHIFT) &
    [all...]
  /external/c-ares/
configure     [all...]

Completed in 2756 milliseconds

1 23 4