Searched refs:ms1 (Results 1 - 25 of 50) sorted by relevance

12

/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/23_containers/multiset/modifiers/insert/
H A D2.cc31 multiset<int> ms0, ms1;
35 ms1.insert(ms1.end(), 1);
36 VERIFY( ms0 == ms1 );
39 ms1.insert(ms1.begin(), 3);
40 VERIFY( ms0 == ms1 );
43 iter1 = ms1.insert(ms1.end(), 4);
44 VERIFY( ms0 == ms1 );
[all...]
H A D22102.cc33 Mset ms1; local
35 const iterator it1 = ms1.insert(value_type(0));
36 const iterator it2 = ms1.insert(value_type(1));
37 const iterator it3 = ms1.insert(value_type(2));
40 const iterator it4 = ms1.insert(it1, vt1);
43 VERIFY( ms1.size() == 4 );
51 const iterator it7 = ms1.insert(ms1.begin(), vt2);
54 VERIFY( ms1.size() == 5 );
62 const iterator it10 = ms1
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/testsuite/23_containers/multiset/insert/
H A D2.cc40 multiset<int> ms0, ms1;
44 ms1.insert(ms1.end(), 1);
45 VERIFY( ms0 == ms1 );
48 ms1.insert(ms1.begin(), 3);
49 VERIFY( ms0 == ms1 );
52 iter1 = ms1.insert(ms1.end(), 4);
53 VERIFY( ms0 == ms1 );
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/23_containers/unordered_multiset/erase/
H A D1.cc34 Mset ms1; local
36 ms1.insert("because to why");
37 ms1.insert("the stockholm syndrome");
38 ms1.insert("a cereous night");
39 ms1.insert("eeilo");
40 ms1.insert("protean");
41 ms1.insert("the way you are when");
42 ms1.insert("tillsammans");
43 ms1.insert("umbra/penumbra");
44 ms1
[all...]
H A D24061-multiset.cc35 Mset ms1; local
37 ms1.insert("all the love in the world");
38 ms1.insert("you know what you are?");
39 ms1.insert("the collector");
40 ms1.insert("the hand that feeds");
41 ms1.insert("love is not enough");
42 ms1.insert("every day is exactly the same");
43 ms1.insert("with teeth");
44 ms1.insert("only");
45 ms1
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/tr1/6_containers/unordered_multiset/erase/
H A D1.cc35 Mset ms1; local
37 ms1.insert("because to why");
38 ms1.insert("the stockholm syndrome");
39 ms1.insert("a cereous night");
40 ms1.insert("eeilo");
41 ms1.insert("protean");
42 ms1.insert("the way you are when");
43 ms1.insert("tillsammans");
44 ms1.insert("umbra/penumbra");
45 ms1
[all...]
H A D24061-multiset.cc35 Mset ms1; local
37 ms1.insert("all the love in the world");
38 ms1.insert("you know what you are?");
39 ms1.insert("the collector");
40 ms1.insert("the hand that feeds");
41 ms1.insert("love is not enough");
42 ms1.insert("every day is exactly the same");
43 ms1.insert("with teeth");
44 ms1.insert("only");
45 ms1
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/testsuite/tr1/6_containers/unordered/erase/
H A D24061-multiset.cc36 Mset ms1; local
38 ms1.insert("all the love in the world");
39 ms1.insert("you know what you are?");
40 ms1.insert("the collector");
41 ms1.insert("the hand that feeds");
42 ms1.insert("love is not enough");
43 ms1.insert("every day is exactly the same");
44 ms1.insert("with teeth");
45 ms1.insert("only");
46 ms1
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/23_containers/unordered_multiset/
H A Ddr1189.cc30 std::unordered_multiset<int> ms1; local
31 ms1.reserve(10);
32 VERIFY( ms1.bucket_count() >= 10 );
34 ms1.reserve(100);
35 VERIFY( ms1.bucket_count() >= 100 );
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/23_containers/unordered_multiset/insert/
H A D24061-multiset.cc35 Mset ms1; local
37 iterator it1 = ms1.insert(ms1.begin(), "all the love in the world");
38 VERIFY( ms1.size() == 1 );
42 const_iterator cit2 = ms1.insert(cit1, "you know what you are?");
43 VERIFY( ms1.size() == 2 );
47 iterator it2 = ms1.insert(it1, "all the love in the world");
48 VERIFY( ms1.size() == 3 );
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/tr1/6_containers/unordered_multiset/insert/
H A D24061-multiset.cc35 Mset ms1; local
37 iterator it1 = ms1.insert(ms1.begin(), "all the love in the world");
38 VERIFY( ms1.size() == 1 );
42 const_iterator cit2 = ms1.insert(cit1, "you know what you are?");
43 VERIFY( ms1.size() == 2 );
47 iterator it2 = ms1.insert(it1, "all the love in the world");
48 VERIFY( ms1.size() == 3 );
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/testsuite/tr1/6_containers/unordered/insert/
H A D24061-multiset.cc36 Mset ms1; local
38 iterator it1 = ms1.insert(ms1.begin(), "all the love in the world");
39 VERIFY( ms1.size() == 1 );
43 const_iterator cit2 = ms1.insert(cit1, "you know what you are?");
44 VERIFY( ms1.size() == 2 );
48 iterator it2 = ms1.insert(it1, "all the love in the world");
49 VERIFY( ms1.size() == 3 );
/netbsd-6-1-5-RELEASE/external/bsd/ntp/dist/kernel/sys/
H A Dtpro.h20 u_short ms1; /* milliseconds * 1 */ member in struct:tproval
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/gas/testsuite/gas/mt/
H A Dms1-16-003.d1 #as: -march=ms1-16-003
3 #name: ms1-16-003
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/gdb/testsuite/gdb.reverse/
H A Dmachinestate-precsave.exp45 set srcfile1 ms1.c
47 if { [prepare_for_testing $testfile.exp $testfile {machinestate.c ms1.c} ] } {
H A Dmachinestate.exp44 set srcfile1 ms1.c
46 if { [prepare_for_testing $testfile.exp $testfile {machinestate.c ms1.c} ] } {
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.target/x86_64/abi/avx/
H A Dtest_passing_structs.c20 check_struct_passing1 (struct m256_struct ms1 ATTRIBUTE_UNUSED,
/netbsd-6-1-5-RELEASE/sbin/routed/
H A Dmain.c906 struct msg_sub *ms1, *ms; local
912 ms = ms1 = lim->subs;
913 for (i = MSG_SUBJECT_N; ; i--, ms1++) {
920 ms = ms1;
933 if (ms->until < ms1->until)
934 ms = ms1;
/netbsd-6-1-5-RELEASE/external/bsd/ntp/dist/ntpd/
H A Drefclock_tpro.c177 tp->ms10, tp->ms1, tp->usec100, tp->usec10, tp->usec1,
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.target/x86_64/abi/
H A Dtest_passing_structs.c74 check_struct_passing5 (struct m128_struct ms1 ATTRIBUTE_UNUSED,
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/binutils/testsuite/binutils-all/
H A Dobjdump.exp42 lappend cpus_expected mips mn10200 mn10300 ms1 msp ns32k pj powerpc pyramid
/netbsd-6-1-5-RELEASE/crypto/external/bsd/netpgp/dist/buildaux/
H A Dconfig.sub301 ms1)
747 ms1-*)
748 basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'`
/netbsd-6-1-5-RELEASE/crypto/external/cpl/trousers/dist/
H A Dconfig.sub304 ms1)
755 ms1-*)
756 basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'`
/netbsd-6-1-5-RELEASE/dist/nvi/dist/
H A Dconfig.sub299 ms1)
715 ms1-*)
716 basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'`
/netbsd-6-1-5-RELEASE/external/bsd/am-utils/dist/
H A Dconfig.sub299 ms1)
711 ms1-*)
712 basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'`

Completed in 427 milliseconds

12