/external/stlport/test/unit/ |
D | setdiff_test.cpp | 74 const char* word1 = "ABCDEFGHIJKLMNO"; in setsymd2() local 78 set_symmetric_difference(word1, word1 + ::strlen(word1), word2, word2 + ::strlen(word2), in setsymd2() 125 const char* word1 = "ABCDEFGHIJKLMNO"; in setdiff2() local 129 …set_difference(word1, word1 + ::strlen(word1), word2, word2 + ::strlen(word2), back_inserter(diff)… in setdiff2()
|
D | setinter_test.cpp | 68 const char* word1 = "ABCDEFGHIJKLMNO"; in setintr2() local 72 set_intersection(word1, word1 + ::strlen(word1), word2, word2 + ::strlen(word2), in setintr2()
|
D | setunion_test.cpp | 71 const char* word1 = "ABCDEFGHIJKLMNO"; in setunon2() local 75 set_union(word1, word1 + ::strlen(word1), word2, word2 + ::strlen(word2), in setunon2()
|
D | swap_test.cpp | 57 char word1[] = "World"; in swprnge1() local 59 swap_ranges((char*)word1, (char*)word1 + ::strlen(word1), (char*)word2); in swprnge1() 60 CPPUNIT_ASSERT(!strcmp(word1, "Hello")); in swprnge1()
|
/external/openssl/crypto/rc2/ |
D | rrc2.doc | 106 word0 = ( word0 + ( word1 & ~word3 ) + ( word2 & word3 ) + S[ j+0 ] ) <<< 1 107 word1 = ( word1 + ( word2 & ~word0 ) + ( word3 & word0 ) + S[ j+1 ] ) <<< 2 108 word2 = ( word2 + ( word3 & ~word1 ) + ( word0 & word1 ) + S[ j+2 ] ) <<< 3 109 word3 = ( word3 + ( word0 & ~word2 ) + ( word1 & word2 ) + S[ j+3 ] ) <<< 5 116 word1 = word1 + S[ word0 & 63 ]; 117 word2 = word2 + S[ word1 & 63 ]; 129 word3 = ( word3 >>> 5 ) - ( word0 & ~word2 ) - ( word1 & word2 ) - S[ j+3 ] 130 word2 = ( word2 >>> 3 ) - ( word3 & ~word1 ) - ( word0 & word1 ) - S[ j+2 ] 131 word1 = ( word1 >>> 2 ) - ( word2 & ~word0 ) - ( word3 & word0 ) - S[ j+1 ] 132 word0 = ( word0 >>> 1 ) - ( word1 & ~word3 ) - ( word2 & word3 ) - S[ j+0 ] [all …]
|
/external/chromium/base/third_party/dmg_fp/ |
D | 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) 1613 word1(rvp) = x[1]; [all …]
|
/external/webkit/Source/JavaScriptCore/wtf/ |
D | dtoa.cpp | 104 #define word1(x) (x)->L[1] macro 107 #define word1(x) (x)->L[0] macro 623 word1(&u) = 0; in ulp() 638 #define d1 word1(&d) in b2d() 674 #define d1 word1(d) in d2b() 926 word1(&rv) = 0; in strtod() 942 word1(&rv) = Big1; in strtod() 961 word1(&rv) = 0; in strtod() 967 word1(&rv) &= 0xffffffff << j; in strtod() 1041 if (dsign || word1(&rv) || word0(&rv) & Bndry_mask in strtod() [all …]
|
/external/ipsec-tools/src/racoon/ |
D | eaytest.c | 844 char *word1 = "1234567890", *word2 = "12345678901234567890"; local 851 buf = vmalloc(strlen(word1)); 852 memcpy(buf->v, word1, buf->l); 881 char *word1 = "1234567890", *word2 = "12345678901234567890"; local 888 buf = vmalloc(strlen(word1)); 889 memcpy(buf->v, word1, buf->l);
|
/external/chromium/base/i18n/ |
D | break_iterator_unittest.cc | 68 const string16 word1(str.substr(0, 10)); in TEST() local 74 EXPECT_EQ(word1, iter.GetString()); in TEST() 176 const string16 word1(str.substr(0, 11)); in TEST() local 182 EXPECT_EQ(word1, iter.GetString()); in TEST()
|
/external/pcre/ |
D | pcrecpp_unittest.cc | 417 string word1; in TestMatchNumberPeculiarity() local 422 CHECK(r.PartialMatch("foo", &word1, &word2, &word3)); in TestMatchNumberPeculiarity() 423 CHECK_EQ(word1, "foo"); in TestMatchNumberPeculiarity() 426 CHECK(r.PartialMatch("bar", &word1, &word2, &word3)); in TestMatchNumberPeculiarity() 427 CHECK_EQ(word1, ""); in TestMatchNumberPeculiarity() 430 CHECK(r.PartialMatch("baz", &word1, &word2, &word3)); in TestMatchNumberPeculiarity() 431 CHECK_EQ(word1, ""); in TestMatchNumberPeculiarity() 434 CHECK(!r.PartialMatch("f", &word1, &word2, &word3)); in TestMatchNumberPeculiarity()
|
/external/chromium/sdch/open-vcdiff/src/ |
D | blockhash.cc | 251 inline bool CompareWholeWordValues<1>(const char* word1, in CompareWholeWordValues() argument 254 memcpy(&aligned_word1, word1, sizeof(aligned_word1)); in CompareWholeWordValues()
|
/external/valgrind/main/VEX/pub/ |
D | libvex_guest_x86.h | 258 UInt word1; member
|
/external/icu4c/tools/gennames/ |
D | gennames.c | 301 compareWords(const void *context, const void *word1, const void *word2); 1032 compareWords(const void *context, const void *word1, const void *word2) { in compareWords() argument 1034 return ((Word *)word2)->weight-((Word *)word1)->weight; in compareWords()
|
/external/valgrind/main/coregrind/m_syswrap/ |
D | syswrap-x86-linux.c | 453 out->LdtEnt.Words.word1 = entry_1; in translate_to_hw_format() 669 if (gdt[idx].LdtEnt.Words.word1 == 0 in sys_set_thread_area()
|
/external/valgrind/main/VEX/priv/ |
D | guest_arm_toIR.c | 12063 UInt word1 = 0xE1A0C1EC; in disInstr_ARM_WRK() local 12067 if (getUIntLittleEndianly(code+ 0) == word1 && in disInstr_ARM_WRK() 14223 UInt word1 = 0x0CFCEA4F; in disInstr_THUMB_WRK() local 14227 if (getUIntLittleEndianly(code+ 0) == word1 && in disInstr_THUMB_WRK()
|
D | guest_ppc_toIR.c | 9323 UInt word1 = mode64 ? 0x78001800 : 0x54001800; in disInstr_PPC_WRK() local 9327 if (getUIntBigendianly(code+ 0) == word1 && in disInstr_PPC_WRK()
|