Searched defs:word1 (Results 1 - 9 of 9) sorted by relevance

/ndk/tests/device/test-gnustl-full/unit/
H A Dsetinter_test.cpp68 const char* word1 = "ABCDEFGHIJKLMNO"; local
72 set_intersection(word1, word1 + ::strlen(word1), word2, word2 + ::strlen(word2),
H A Dsetunion_test.cpp71 const char* word1 = "ABCDEFGHIJKLMNO"; local
75 set_union(word1, word1 + ::strlen(word1), word2, word2 + ::strlen(word2),
H A Dsetdiff_test.cpp74 const char* word1 = "ABCDEFGHIJKLMNO"; local
78 set_symmetric_difference(word1, word1 + ::strlen(word1), word2, word2 + ::strlen(word2),
125 const char* word1 = "ABCDEFGHIJKLMNO"; local
129 set_difference(word1, word1 + ::strlen(word1), word2, word2 + ::strlen(word2), back_inserter(diff), less<char>());
H A Dswap_test.cpp57 char word1[] = "World"; local
59 swap_ranges((char*)word1, (char*)word1 + ::strlen(word1), (char*)word2);
60 CPPUNIT_ASSERT(!strcmp(word1, "Hello"));
/ndk/tests/device/test-stlport/unit/
H A Dsetinter_test.cpp68 const char* word1 = "ABCDEFGHIJKLMNO"; local
72 set_intersection(word1, word1 + ::strlen(word1), word2, word2 + ::strlen(word2),
H A Dsetunion_test.cpp71 const char* word1 = "ABCDEFGHIJKLMNO"; local
75 set_union(word1, word1 + ::strlen(word1), word2, word2 + ::strlen(word2),
H A Dsetdiff_test.cpp74 const char* word1 = "ABCDEFGHIJKLMNO"; local
78 set_symmetric_difference(word1, word1 + ::strlen(word1), word2, word2 + ::strlen(word2),
125 const char* word1 = "ABCDEFGHIJKLMNO"; local
129 set_difference(word1, word1 + ::strlen(word1), word2, word2 + ::strlen(word2), back_inserter(diff), less<char>());
H A Dswap_test.cpp57 char word1[] = "World"; local
59 swap_ranges((char*)word1, (char*)word1 + ::strlen(word1), (char*)word2);
60 CPPUNIT_ASSERT(!strcmp(word1, "Hello"));
/ndk/sources/android/support/src/stdio/
H A Dstrtod.c223 #define word1(x) ((x).ul[0]) macro
226 #define word1(x) ((x).ul[1]) macro
1286 word1(a) = 0;
1293 word1(a) = 0;
1298 word1(a) = L >= 31 ? 1 : 1 << (31 - L);
1320 #define d1 word1(d)
1370 word1(d) = d1 >> 16 | d1 << 16;
1397 d1 = word1(d) >> 16 | word1(d) << 16;
1400 #define d1 word1(
[all...]

Completed in 55 milliseconds