Searched refs:three (Results 1 - 25 of 166) sorted by relevance

1234567

/haiku-buildtools/gcc/gcc/testsuite/gfortran.dg/
H A Dinitialization_5.f905 real, parameter :: three = 27.0**(1.0/3.0) variable
6 if(abs(three-3.0)>epsilon(three)) call abort()
H A Dwhole_file_21.f9018 SUBROUTINE three ( ) subroutine in module:mod
20 END SUBROUTINE three
H A Dwhole_file_22.f9012 call three()
15 call three()
17 subroutine three() subroutine
18 end subroutine three
H A Dinterface_abstract_1.f9011 subroutine three() bind(C,name="three") ! { dg-error "NAME not allowed on BIND.C. for ABSTRACT INTERFACE" }
12 end subroutine three ! { dg-error "Expecting END INTERFACE statement" }
H A Dclass_35.f9013 type three type in module:one_two
20 class(three), allocatable :: a2
H A Dfunction_kinds_4.f9018 integer(i1) function three() function
21 three = i1
22 if(three /= kind(three)) call abort()
23 end function three
34 integer(8) function three()
35 end function three
42 if(three() /= 8) call abort()
H A Dproc_ptr_comp_19.f9010 PROCEDURE(three), POINTER, nopass :: f
15 o%f => three
21 REAL FUNCTION three() function in program:test
22 three = 3.
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/parse/
H A Dparse3.C7 enum numbers { zero, one, two, three } __attribute__ ((packed)) ; enumerator in enum:numbers
/haiku-buildtools/gcc/gcc/testsuite/g++.old-deja/g++.law/
H A Dinit10.C18 a three[3]; member in class:b
23 b::b() : three(this) // { dg-error "array" }
/haiku-buildtools/binutils/gas/testsuite/gas/mri/
H A Dempty.s6 SBT arg3 - one two three
7 SBT arg4 - one two three four
8 SBT arg5 - one two three four five
9 SBT arg6 - one two (three)
/haiku-buildtools/legacy/binutils/gas/testsuite/gas/mri/
H A Dempty.s6 SBT arg3 - one two three
7 SBT arg4 - one two three four
8 SBT arg5 - one two three four five
9 SBT arg6 - one two (three)
/haiku-buildtools/binutils/gas/testsuite/gas/ia64/
H A Dforward.s3 three == 3*one label
14 alloc r31 = one + 1, two + 2, three + 3, four + 4
15 dep.z RA = one, two + 3, three + 4
24 alloc r31 = one + 1, two + 2, three + 3, four - 4
25 dep.z RA = one, two + 3, three + 4
/haiku-buildtools/legacy/binutils/gas/testsuite/gas/ia64/
H A Dforward.s3 three == 3*one label
14 alloc r31 = one + 1, two + 2, three + 3, four + 4
15 dep.z RA = one, two + 3, three + 4
24 alloc r31 = one + 1, two + 2, three + 3, four - 4
25 dep.z RA = one, two + 3, three + 4
/haiku-buildtools/gcc/libstdc++-v3/testsuite/21_strings/basic_string/modifiers/append/char/
H A D2.cc36 string three; local
45 three.append(source, 7);
46 VERIFY( three == "Written" );
48 three.clear();
49 three.append(source + 8, 2);
50 VERIFY( three == "in" );
/haiku-buildtools/gcc/libstdc++-v3/testsuite/21_strings/basic_string/modifiers/append/wchar_t/
H A D2.cc36 wstring three; local
45 three.append(source, 7);
46 VERIFY( three == L"Written" );
48 three.clear();
49 three.append(source + 8, 2);
50 VERIFY( three == L"in" );
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/ext/
H A Ddllimport7.C17 static const int three; variable
21 const int Bar::three = 3; // { dg-warning "redeclared without dllimport" } member in class:Bar
31 int b = foobar.three;
H A Ddllimport6.C14 static const int three; member in class:Bar
23 int b = foobar.three;
/haiku-buildtools/gcc/libstdc++-v3/testsuite/21_strings/basic_string/modifiers/assign/char/
H A D2.cc36 string three = "Brilliant trees"; local
47 one.assign(three, 10, 100);
50 three.assign(one, 0, 3);
51 VERIFY( three == "tre" );
/haiku-buildtools/gcc/libstdc++-v3/testsuite/21_strings/basic_string/modifiers/assign/wchar_t/
H A D2.cc36 wstring three = L"Brilliant trees"; local
47 one.assign(three, 10, 100);
50 three.assign(one, 0, 3);
51 VERIFY( three == L"tre" );
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/opt/
H A Dstatic3.C24 int three(int x) function
35 three (i);
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/tree-ssa/
H A Dpr20701.c12 static inline int three () function
23 if (insn->code == three ())
/haiku-buildtools/binutils/gas/testsuite/gas/all/
H A Dforward.s4 .equiv three, 3*one
15 .byte three
24 .byte three
33 .byte three
42 .byte three
/haiku-buildtools/legacy/binutils/gas/testsuite/gas/all/
H A Dforward.s4 .equiv three, 3*one
15 .byte three
24 .byte three
33 .byte three
42 .byte three
/haiku-buildtools/gcc/gcc/testsuite/gcc.c-torture/execute/
H A Dnestfunc-7.c5 int three; member in struct:A
21 a.three = base + 3;
34 && a.three == 13
/haiku-buildtools/gcc/gcc/testsuite/go.test/test/
H A Dfunc5.go49 func three(x int) { func
64 three(call(add, 1, 2))
65 three(call1(add, 1, 2))
67 three(call(f, 1, 2))
68 three(call1(f, 1, 2))
69 three(call(fn(), 1, 2))
70 three(call1(fn(), 1, 2))
71 three(call(func(a, b int) int { return a + b }, 1, 2))
72 three(call1(func(a, b int) int { return a + b }, 1, 2))
77 three(<
[all...]

Completed in 286 milliseconds

1234567