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

1234567891011>>

/haiku-buildtools/gcc/gcc/testsuite/g++.old-deja/g++.benjamin/
H A D17930.C5 char const one[] = "test"; variable
6 char const two[] = one; // { dg-error "" } // ERROR -
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/sparc/
H A Dsibcall-dslot.c4 extern int one ();
8 return one ();
/haiku-buildtools/gcc/gcc/testsuite/gfortran.dg/
H A Dexponent_1.f908 real, parameter :: one = 1.0 variable in program:gfcbug36
9 real :: a = one
12 if (fraction(one) /= 0.5) call abort
16 if (exponent(one) /= 1.0) call abort
20 if (scale(fraction(one), exponent(one)) / one /= 1.) call abort
H A Dgeneric_20.f906 ! ("one" instead of "two")
10 interface one
11 module procedure one, two
12 end interface one
14 function one() function in module:m
15 real :: one(1) local in function:one
16 one = 0.0
17 end function one
27 res = matmul (one(2.0), (/ 2.0/))
H A Dline_length_1.f4 program one program
7 end program one
H A Dproc_decl_12.f9010 subroutine one(a) subroutine in module:m
13 end subroutine one
19 call foo(one)
22 procedure(one) :: f
H A Duse_only_4.f903 ! of confusion between the two 'one's in the creation of module
10 interface one ! GENERIC "one"
20 use m1, only : one ! USE generic "one"
23 call one() ! Call internal "one"
25 subroutine one() ! Internal "one" subroutine in subroutine:two
27 end subroutine one
[all...]
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/torture/
H A Dpr47364-1.c3 char one[50] = "ijk"; variable
7 return __builtin_strlen (one) != 3;
/haiku-buildtools/gcc/gcc/testsuite/c-c++-common/asan/
H A Dmemcmp-1.c7 volatile int one = 1; variable
12 char a1[] = {one, 2, 3, 4};
13 char a2[] = {1, 2*one, 3, 4};
14 int res = memcmp (a1, a2, 5 + one);
H A Dno-asan-stack.c5 volatile int one = 1; variable
10 volatile char a1[] = {one, 2, 3, 4};
11 volatile char a2[] = {1, 2*one, 3, 4};
12 volatile int res = memcmp ((void *)a1,(void *)a2, 5 + one);
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/cpp0x/
H A Dconstexpr-47570.C4 unsigned int constexpr one() function
13 static bool constexpr SC_huh1 = ((unsigned int)one()) >= ((unsigned int)0);
14 static bool constexpr SC_huh2 = one() >= ((unsigned int)0);
15 static bool constexpr SC_huh3 = one() >= 0;
18 static bool constexpr SC_huh4 = ((one() == 0) || (one() > 0));
19 static bool constexpr SC_huh5 = one() == 0;
20 static bool constexpr SC_huh6 = one() > 0;
22 static bool constexpr SC_huh8 = one() >= 1;
/haiku-buildtools/binutils/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...]
/haiku-buildtools/legacy/binutils/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...]
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/
H A Dpr41574.c6 static const double one=1.0; variable
11 return x*(one+x);
/haiku-buildtools/gcc/gcc/testsuite/gcc.c-torture/execute/
H A D20030216-1.c7 const double one=1.0; variable
11 if ((int) one != 1)
H A D20060102-1.c8 volatile int one = 1; variable
13 if (f(one) == f(-one))
/haiku-buildtools/gcc/libstdc++-v3/testsuite/21_strings/basic_string/modifiers/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...]
/haiku-buildtools/gcc/libstdc++-v3/testsuite/21_strings/basic_string/modifiers/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...]
/haiku-buildtools/gcc/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);
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/cpp/
H A Dsubframework1.c12 #include <one/one-includeSubs.h>
/haiku-buildtools/gcc/gcc/testsuite/gfortran.fortran-torture/compile/
H A Dcontained_3.f901 ! Program to check using parent variables in more than one contained function
6 subroutine one subroutine in program:contained_3

Completed in 256 milliseconds

1234567891011>>