Searched refs:one (Results 1 - 25 of 1036) sorted by relevance

1234567891011>>

/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.old-deja/g++.benjamin/
H A D17930.C5 char const one[] = "test"; variable
6 char const two[] = one; // { dg-error "" } // ERROR -
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.old-deja/g++.benjamin/
H A D17930.C5 char const one[] = "test"; variable
6 char const two[] = one; // { dg-error "" } // ERROR -
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/gas/testsuite/gas/all/
H A Deval.s2 .equ one, 1
8 .if two > one
9 .byte one
14 .if one == one
15 .byte one
20 .if one < two
21 .byte one
26 .if one <> two
27 .byte one
[all...]
H A Dforward.s1 .equiv two, 2*one
2 .equiv minus_one, -one
3 .equ one, 1
4 .equiv three, 3*one
5 .eqv four, 4*one
9 .if two > one
10 .byte one
14 .if four > one
19 .equ one, -1
20 .byte one
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/execute/
H A D20030216-1.c2 const double one=1.0; variable
6 if ((int) one != 1)
H A D20060102-1.c8 volatile int one = 1; variable
13 if (f(one) == f(-one))
H A D20000801-1.c27 int one = 1; local
32 foo((char *)&one, sizeof(one));
33 foo((char *)&one, sizeof(one));
35 if (one != 1)
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/
H A Dpr41574.c6 static const double one=1.0; variable
11 return x*(one+x);
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.c-torture/execute/
H A D20030216-1.c2 const double one=1.0; variable
6 if ((int) one != 1)
/netbsd-6-1-5-RELEASE/lib/libm/noieee_src/
H A Dn_atan.c85 double one=1.0; local
86 return(atan2(x,one));
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/21_strings/basic_string/assign/char/
H A D2.cc34 string one = "Selling England by the pound";
35 string two = one;
38 one.assign(one, 8, 100);
39 VERIFY( one == "England by the pound" );
41 one.assign(one, 8, 0);
42 VERIFY( one == "" );
44 one.assign(two, 8, 7);
45 VERIFY( one
[all...]
H A D3.cc34 string one;
38 one.assign(source);
39 VERIFY( one == "Selling England by the pound" );
41 one.assign(source, 28);
42 VERIFY( one == "Selling England by the pound" );
47 one.assign(one.c_str() + 8, 20);
48 VERIFY( one == "England by the pound" );
50 one.assign(one
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/21_strings/basic_string/assign/wchar_t/
H A D2.cc34 wstring one = L"Selling England by the pound";
35 wstring two = one;
38 one.assign(one, 8, 100);
39 VERIFY( one == L"England by the pound" );
41 one.assign(one, 8, 0);
42 VERIFY( one == L"" );
44 one.assign(two, 8, 7);
45 VERIFY( one
[all...]
H A D3.cc34 wstring one;
38 one.assign(source);
39 VERIFY( one == L"Selling England by the pound" );
41 one.assign(source, 28);
42 VERIFY( one == L"Selling England by the pound" );
47 one.assign(one.c_str() + 8, 20);
48 VERIFY( one == L"England by the pound" );
50 one.assign(one
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/testsuite/21_strings/basic_string/assign/char/
H A D2.cc35 string one = "Selling England by the pound";
36 string two = one;
39 one.assign(one, 8, 100);
40 VERIFY( one == "England by the pound" );
42 one.assign(one, 8, 0);
43 VERIFY( one == "" );
45 one.assign(two, 8, 7);
46 VERIFY( one
[all...]
H A D3.cc35 string one;
39 one.assign(source);
40 VERIFY( one == "Selling England by the pound" );
42 one.assign(source, 28);
43 VERIFY( one == "Selling England by the pound" );
48 one.assign(one.c_str() + 8, 20);
49 VERIFY( one == "England by the pound" );
51 one.assign(one
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/testsuite/21_strings/basic_string/assign/wchar_t/
H A D2.cc35 wstring one = L"Selling England by the pound";
36 wstring two = one;
39 one.assign(one, 8, 100);
40 VERIFY( one == L"England by the pound" );
42 one.assign(one, 8, 0);
43 VERIFY( one == L"" );
45 one.assign(two, 8, 7);
46 VERIFY( one
[all...]
H A D3.cc35 wstring one;
39 one.assign(source);
40 VERIFY( one == L"Selling England by the pound" );
42 one.assign(source, 28);
43 VERIFY( one == L"Selling England by the pound" );
48 one.assign(one.c_str() + 8, 20);
49 VERIFY( one == L"England by the pound" );
51 one.assign(one
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.old-deja/g++.jason/
H A Denum8.C4 enum foo { one=1, thirty=30 }; enumerator in enum:foo
10 case one:
20 return f (one);
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.old-deja/g++.jason/
H A Denum8.C4 enum foo { one=1, thirty=30 }; enumerator in enum:foo
10 case one:
20 return f (one);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/cpp/
H A Dsubframework1.c12 #include <one/one-includeSubs.h>
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.dg/cpp/
H A Dsubframework1.c12 #include <one/one-includeSubs.h>
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/unsorted/
H A DBUG5.c3 one, enumerator in enum:bar
13 case one:
15 printf ("one to two\n");
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.c-torture/unsorted/
H A DBUG5.c3 one, enumerator in enum:bar
13 case one:
15 printf ("one to two\n");
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/gas/testsuite/gas/ia64/
H A Dforward.s1 two == 2*one
2 one = 1 define
3 three == 3*one
4 four = 4*one
14 alloc r31 = one + 1, two + 2, three + 3, four + 4
15 dep.z RA = one, two + 3, three + 4
19 one = -1 define
24 alloc r31 = one + 1, two + 2, three + 3, four - 4
25 dep.z RA = one, two + 3, three + 4

Completed in 283 milliseconds

1234567891011>>