Searched refs:us1 (Results 1 - 22 of 22) sorted by relevance

/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/23_containers/unordered_set/operators/
H A D1.cc29 std::unordered_set<int> us1, us2; local
30 VERIFY( us1 == us2 );
31 VERIFY( !(us1 != us2) );
33 us1.insert(1);
35 VERIFY( us1 == us2 );
36 VERIFY( !(us1 != us2) );
38 us1.insert(2);
40 VERIFY( us1 == us2 );
41 VERIFY( !(us1 != us2) );
43 us1
[all...]
/netbsd-6-1-5-RELEASE/external/ibm-public/postfix/dist/src/util/
H A Dstrcasecmp.c45 const unsigned char *us1 = (const unsigned char *) s1; local
48 while (tolower(*us1) == tolower(*us2++))
49 if (*us1++ == '\0')
51 return (tolower(*us1) - tolower(*--us2));
57 const unsigned char *us1 = (const unsigned char *) s1; local
61 if (tolower(*us1) != tolower(*us2++))
62 return (tolower(*us1) - tolower(*--us2));
63 if (*us1++ == '\0')
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/tr1/6_containers/unordered_set/
H A D26132.cc33 std::tr1::unordered_set<int> us1; local
36 us1.max_load_factor(10.0);
39 us1.insert(i);
41 us1.max_load_factor(lf);
46 us1.rehash(n);
47 VERIFY( us1.bucket_count() > us1.size() / us1.max_load_factor() );
48 VERIFY( us1.bucket_count() >= n );
H A D23465.cc31 std::tr1::unordered_set<int> us1, us2; local
35 us1.max_load_factor(lf);
38 us1.insert(i);
40 us2 = us1;
42 VERIFY( us2.size() == us1.size() );
43 VERIFY( us2.bucket_count() == us1.bucket_count() );
45 for (size_type b = 0; b < us1.bucket_count(); ++b)
48 for (local_iterator it1 = us1.begin(b), it2 = us2.begin(b);
49 it1 != us1.end(b) && it2 != us2.end(b); ++it1, ++it2)
54 VERIFY( cnt == us1
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/testsuite/tr1/6_containers/unordered/hashtable/
H A D26132.cc34 std::tr1::unordered_set<int> us1; local
37 us1.max_load_factor(10.0);
40 us1.insert(i);
42 us1.max_load_factor(lf);
47 us1.rehash(n);
48 VERIFY( us1.bucket_count() > us1.size() / us1.max_load_factor() );
49 VERIFY( us1.bucket_count() >= n );
H A D23465.cc32 std::tr1::unordered_set<int> us1, us2; local
36 us1.max_load_factor(lf);
39 us1.insert(i);
41 us2 = us1;
43 VERIFY( us2.size() == us1.size() );
44 VERIFY( us2.bucket_count() == us1.bucket_count() );
46 for (size_type b = 0; b < us1.bucket_count(); ++b)
49 for (local_iterator it1 = us1.begin(b), it2 = us2.begin(b);
50 it1 != us1.end(b) && it2 != us2.end(b); ++it1, ++it2)
55 VERIFY( cnt == us1
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/libbind/dist/bsd/
H A Dstrcasecmp.c98 *us1 = (const u_char *)s1, local
101 while (cm[*us1] == cm[*us2++])
102 if (*us1++ == '\0')
104 return (cm[*us1] - cm[*--us2]);
111 *us1 = (const u_char *)s1, local
115 if (cm[*us1] != cm[*us2++])
116 return (cm[*us1] - cm[*--us2]);
117 if (*us1++ == '\0')
/netbsd-6-1-5-RELEASE/external/bsd/tcpdump/dist/
H A Dstrcasecmp.c76 *us1 = (u_char *)s1, local
79 while (cm[*us1] == cm[*us2++])
80 if (*us1++ == '\0')
82 return(cm[*us1] - cm[*--us2]);
91 *us1 = (u_char *)s1, local
94 while (--n >= 0 && cm[*us1] == cm[*us2++])
95 if (*us1++ == '\0')
97 return(n < 0 ? 0 : cm[*us1] - cm[*--us2]);
/netbsd-6-1-5-RELEASE/common/lib/libc/string/
H A Dstrcasecmp.c58 const unsigned char *us1 = (const unsigned char *)s1, local
64 while (tolower(*us1) == tolower(*us2++))
65 if (*us1++ == '\0')
67 return (tolower(*us1) - tolower(*--us2));
H A Dstrncasecmp.c63 const unsigned char *us1 = (const unsigned char *)s1, local
67 if (tolower(*us1) != tolower(*us2++))
68 return (tolower(*us1) - tolower(*--us2));
69 if (*us1++ == '\0')
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/27_io/basic_istream/extractors_arithmetic/char/
H A D01.cc54 unsigned short us1 = 0; local
94 is_03 >> us1; local
95 VERIFY( us1 == 33 );
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/27_io/basic_istream/extractors_arithmetic/wchar_t/
H A D01.cc52 unsigned short us1 = 0; local
92 is_03 >> us1; local
93 VERIFY( us1 == 33 );
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/testsuite/27_io/basic_istream/extractors_arithmetic/char/
H A D01.cc55 unsigned short us1 = 0; local
95 is_03 >> us1; local
96 VERIFY( us1 == 33 );
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/testsuite/27_io/basic_istream/extractors_arithmetic/wchar_t/
H A D01.cc53 unsigned short us1 = 0; local
93 is_03 >> us1; local
94 VERIFY( us1 == 33 );
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/22_locale/num_get/get/char/
H A D16.cc39 unsigned short us0, us1 = numeric_limits<unsigned short>::max(); local
53 ss << us1; local
57 VERIFY( us0 == us1 );
62 ss << us1 << '0'; local
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/testsuite/22_locale/num_get/get/char/
H A D16.cc40 unsigned short us0, us1 = numeric_limits<unsigned short>::max(); local
54 ss << us1; local
58 VERIFY( us0 == us1 );
63 ss << us1 << '0'; local
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/22_locale/num_get/get/wchar_t/
H A D16.cc39 unsigned short us0, us1 = numeric_limits<unsigned short>::max(); local
53 ss << us1; local
57 VERIFY( us0 == us1 );
62 ss << us1 << L'0';
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/testsuite/22_locale/num_get/get/wchar_t/
H A D16.cc40 unsigned short us0, us1 = numeric_limits<unsigned short>::max(); local
54 ss << us1; local
58 VERIFY( us0 == us1 );
63 ss << us1 << L'0';
/netbsd-6-1-5-RELEASE/usr.bin/systat/
H A Dvmstat.c435 } us, us1; local
438 us1.uvmexp = uvm1;
450 PUTRATE(us, us1, uvmexp->swtch, GENSTATROW + 1, GENSTATCOL - 1, 7);
451 PUTRATE(us, us1, uvmexp->traps, GENSTATROW + 1, GENSTATCOL + 7, 6);
452 PUTRATE(us, us1, uvmexp->syscalls, GENSTATROW + 1, GENSTATCOL + 14, 6);
453 PUTRATE(us, us1, uvmexp->intrs, GENSTATROW + 1, GENSTATCOL + 21, 5);
454 PUTRATE(us, us1, uvmexp->softs, GENSTATROW + 1, GENSTATCOL + 27, 6);
455 PUTRATE(us, us1, uvmexp->faults, GENSTATROW + 1, GENSTATCOL + 34, 6);
471 PUTRATE(us, us1, uvmexp->pageins, PAGEROW + 2, PAGECOL + 5, 5);
472 PUTRATE(us, us1, uvmex
[all...]
/netbsd-6-1-5-RELEASE/crypto/external/bsd/heimdal/dist/lib/asn1/
H A Dcheck-der.c1013 heim_universal_string us1 = { 1, NULL } , us2 = { 0, NULL }; local
1014 us1.data = &data;
1015 ret = der_heim_universal_string_cmp(&us1, &us2);
1022 heim_universal_string us1 = { 1, NULL } , us2 = { 1, NULL }; local
1023 us1.data = &data;
1025 ret = der_heim_universal_string_cmp(&us1, &us2);
/netbsd-6-1-5-RELEASE/external/bsd/libpcap/dist/
H A Dpcap.c756 *us1 = (const u_char *)s1, local
759 while (cm[*us1] == cm[*us2++])
760 if (*us1++ == '\0')
762 return (cm[*us1] - cm[*--us2]);
/netbsd-6-1-5-RELEASE/usr.bin/telnet/
H A Dcommands.c1567 env_help(const unsigned char *us1, unsigned char *us2)
1559 env_help(const unsigned char *us1, unsigned char *us2) argument

Completed in 377 milliseconds