Searched refs:compare (Results 1 - 25 of 441) sorted by relevance

1234567891011>>

/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/execute/
H A D20000717-2.c2 compare (long long foo) function
9 compare (8589934591LL);
H A D980526-3.c1 int compare(x, y) function
15 if (compare(5%(~(unsigned) 2), i%~j)
16 || compare(0, k%~l))
H A Dpr34456.c6 struct s { int elt; int (*compare) (int); }; member in struct:s
9 compare (const void *x, const void *y) function
15 compare1 = s1->compare;
28 qsort (array, 2, sizeof (struct s), compare);
H A Dnestfunc-6.c14 int compare (const void *a, const void *b) function
20 qsort (array, 3, 1, compare);
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.c-torture/execute/
H A D20000717-2.c2 compare (long long foo) function
9 compare (8589934591LL);
H A D980526-3.c1 int compare(x, y) function
15 if (compare(5%(~(unsigned) 2), i%~j)
16 || compare(0, k%~l))
H A Dpr34456.c6 struct s { int elt; int (*compare) (int); }; member in struct:s
9 compare (const void *x, const void *y) function
15 compare1 = s1->compare;
28 qsort (array, 2, sizeof (struct s), compare);
H A Dnestfunc-6.c14 int compare (const void *a, const void *b) function
20 qsort (array, 3, 1, compare);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.dg/template/
H A Dmem-partial2.C4 template <bool compare>
8 struct inner // unspecialized compare != compare_with
15 template <bool second> // specialization compare == compare_with
16 struct inner<compare,second>
H A Dqual1.C7 void sort (int (*compare) (T *const&,T *const&));
13 Link_array<T>::sort (int (*compare) (T *const&,T *const&))
/netbsd-6-1-5-RELEASE/gnu/dist/gettext/gettext-tools/man/
H A Dmsgcmp.x2 msgcmp \- compare message catalog and template
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/21_strings/basic_string/compare/char/
H A D1.cc22 // 21.3.6.8 basic_string::compare
23 // int compare(const basic_string& str) const;
24 // int compare(size_type pos1, size_type n1, const basic_string& str) const;
25 // int compare(size_type pos1, size_type n1, const basic_string& str,
27 // int compare(const charT* s) const;
28 // int compare(size_type pos1, size_type n1,
31 // NB compare should be thought of as a lexographical compare, ie how
90 // int compare(const basic_string& str) const;
91 test_value(str_0.compare(str_
[all...]
H A D13650.cc20 // 21.3.6.8 basic_string::compare [lib.string::compare]
36 VERIFY( str_a.compare(0, 5, lit_01, 5) < 0 );
40 VERIFY( str_b.compare(0, 3, lit_02, 5) < 0 );
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/21_strings/basic_string/compare/wchar_t/
H A D1.cc20 // 21.3.6.8 basic_string::compare
21 // int compare(const basic_string& str) const;
22 // int compare(size_type pos1, size_type n1, const basic_string& str) const;
23 // int compare(size_type pos1, size_type n1, const basic_string& str,
25 // int compare(const charT* s) const;
26 // int compare(size_type pos1, size_type n1,
29 // NB compare should be thought of as a lexographical compare, ie how
88 // int compare(const basic_string& str) const;
89 test_value(str_0.compare(str_
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/testsuite/21_strings/basic_string/compare/char/
H A D1.cc21 // 21.3.6.8 basic_string::compare
22 // int compare(const basic_string& str) const;
23 // int compare(size_type pos1, size_type n1, const basic_string& str) const;
24 // int compare(size_type pos1, size_type n1, const basic_string& str,
26 // int compare(const charT* s) const;
27 // int compare(size_type pos1, size_type n1,
30 // NB compare should be thought of as a lexographical compare, ie how
88 // int compare(const basic_string& str) const;
89 test_value(str_0.compare(str_
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/testsuite/21_strings/basic_string/compare/wchar_t/
H A D1.cc21 // 21.3.6.8 basic_string::compare
22 // int compare(const basic_string& str) const;
23 // int compare(size_type pos1, size_type n1, const basic_string& str) const;
24 // int compare(size_type pos1, size_type n1, const basic_string& str,
26 // int compare(const charT* s) const;
27 // int compare(size_type pos1, size_type n1,
30 // NB compare should be thought of as a lexographical compare, ie how
89 // int compare(const basic_string& str) const;
90 test_value(str_0.compare(str_
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.old-deja/g++.robertl/
H A Deb43.C21 inline bool compare(const Expr<T> a, const Expr<T> b){ return true; } function
27 static_cast<bool (*)(const Expr<int>,const Expr<int>)>(compare) );
28 sort( a.begin(), a.end(), compare<int> );
31 ( a.begin(), a.end(), compare ); // { dg-error "" } constructor is explicit
33 ptr_fun<const Expr<int>, const Expr<int>, bool> (compare) );
35 ptr_fun(compare<int>) );
37 pointer_to_binary_function<const Expr<int>, const Expr<int>, bool>(compare) );
39 pointer_to_binary_function<const Expr<int>, const Expr<int>, bool>(compare<int>) );
41 pointer_to_binary_function<const Expr<int>, const Expr<int>, bool>(compare<>) );
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.old-deja/g++.robertl/
H A Deb43.C21 inline bool compare(const Expr<T> a, const Expr<T> b){ return true; } function
27 static_cast<bool (*)(const Expr<int>,const Expr<int>)>(compare) );
28 sort( a.begin(), a.end(), compare<int> );
31 ( a.begin(), a.end(), compare ); // { dg-error "" } constructor is explicit
33 ptr_fun<const Expr<int>, const Expr<int>, bool> (compare) );
35 ptr_fun(compare<int>) );
37 pointer_to_binary_function<const Expr<int>, const Expr<int>, bool>(compare) );
39 pointer_to_binary_function<const Expr<int>, const Expr<int>, bool>(compare<int>) );
41 pointer_to_binary_function<const Expr<int>, const Expr<int>, bool>(compare<>) );
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/22_locale/collate/compare/char/
H A D3.cc44 // int compare(const charT*, const charT*, const charT*, const charT*) const
53 i = coll_c.compare(strlit1, strlit1 + 3, strlit2, strlit2 + 3);
56 i = coll_de.compare(strlit1, strlit1 + 3, strlit2, strlit2 + 3);
59 i = coll_c.compare(strlit3, strlit3 + 3, strlit4, strlit4 + 3);
62 i = coll_de.compare(strlit3, strlit3 + 3, strlit4, strlit4 + 3);
65 i = coll_c.compare(strlit1, strlit1 + 3, strlit1, strlit1 + 4);
68 i = coll_de.compare(strlit3, strlit3 + 4, strlit3, strlit3 + 3);
71 i = coll_c.compare(strlit1, strlit1 + 4, strlit4, strlit4 + 1);
74 i = coll_de.compare(strlit3, strlit3 + 3, strlit3, strlit3 + 3);
77 i = coll_c.compare(strlit
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/22_locale/collate/compare/wchar_t/
H A D3.cc44 // int compare(const charT*, const charT*, const charT*, const charT*) const
53 i = coll_c.compare(strlit1, strlit1 + 3, strlit2, strlit2 + 3);
56 i = coll_de.compare(strlit1, strlit1 + 3, strlit2, strlit2 + 3);
59 i = coll_c.compare(strlit3, strlit3 + 3, strlit4, strlit4 + 3);
62 i = coll_de.compare(strlit3, strlit3 + 3, strlit4, strlit4 + 3);
65 i = coll_c.compare(strlit1, strlit1 + 3, strlit1, strlit1 + 4);
68 i = coll_de.compare(strlit3, strlit3 + 4, strlit3, strlit3 + 3);
71 i = coll_c.compare(strlit1, strlit1 + 4, strlit4, strlit4 + 1);
74 i = coll_de.compare(strlit3, strlit3 + 3, strlit3, strlit3 + 3);
77 i = coll_c.compare(strlit
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/testsuite/22_locale/collate/compare/char/
H A D3.cc45 // int compare(const charT*, const charT*, const charT*, const charT*) const
54 i = coll_c.compare(strlit1, strlit1 + 3, strlit2, strlit2 + 3);
57 i = coll_de.compare(strlit1, strlit1 + 3, strlit2, strlit2 + 3);
60 i = coll_c.compare(strlit3, strlit3 + 3, strlit4, strlit4 + 3);
63 i = coll_de.compare(strlit3, strlit3 + 3, strlit4, strlit4 + 3);
66 i = coll_c.compare(strlit1, strlit1 + 3, strlit1, strlit1 + 4);
69 i = coll_de.compare(strlit3, strlit3 + 4, strlit3, strlit3 + 3);
72 i = coll_c.compare(strlit1, strlit1 + 4, strlit4, strlit4 + 1);
75 i = coll_de.compare(strlit3, strlit3 + 3, strlit3, strlit3 + 3);
78 i = coll_c.compare(strlit
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/testsuite/22_locale/collate/compare/wchar_t/
H A D3.cc45 // int compare(const charT*, const charT*, const charT*, const charT*) const
54 i = coll_c.compare(strlit1, strlit1 + 3, strlit2, strlit2 + 3);
57 i = coll_de.compare(strlit1, strlit1 + 3, strlit2, strlit2 + 3);
60 i = coll_c.compare(strlit3, strlit3 + 3, strlit4, strlit4 + 3);
63 i = coll_de.compare(strlit3, strlit3 + 3, strlit4, strlit4 + 3);
66 i = coll_c.compare(strlit1, strlit1 + 3, strlit1, strlit1 + 4);
69 i = coll_de.compare(strlit3, strlit3 + 4, strlit3, strlit3 + 3);
72 i = coll_c.compare(strlit1, strlit1 + 4, strlit4, strlit4 + 1);
75 i = coll_de.compare(strlit3, strlit3 + 3, strlit3, strlit3 + 3);
78 i = coll_c.compare(strlit
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/torture/stackalign/
H A Dnested-6.c13 int compare (const void *a, const void *b) function
19 qsort (array, 3, 1, compare);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/25_algorithms/unique/
H A D11480.cc25 bool compare(int a, int b) function
36 std::unique(a, a+10, compare);
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.dg/template/
H A Dqual1.C7 void sort (int (*compare) (T *const&,T *const&));
13 Link_array<T>::sort (int (*compare) (T *const&,T *const&))

Completed in 361 milliseconds

1234567891011>>