Searched refs:i1 (Results 1 - 25 of 626) sorted by relevance

1234567891011>>

/haiku-buildtools/cloog/test/
H A Dequality2.c3 for (i1=1000;i1<=1016;i1++) {
4 for (i2=1;i2<=min(-2*i1+2033,2*i1-1999);i2++) {
5 if (2*i1 == i2+1999) {
6 S2(i0,i1,i2,1,i0,2*i1-1000,1,2,i0,i1-499,2*i1
[all...]
H A Dequality.c3 for (i1=ceild(4*i0,5);i1<=floord(6*i0+20,5);i1++) {
4 if (2*i0 == i1) {
5 S1(i0,i1) ;
7 if (i1 == 4) {
8 S2(i0,i1) ;
/haiku-buildtools/gcc/gcc/testsuite/gfortran.dg/
H A Dintrinsic_size.f907 integer array(5), i1, i2 variable
8 print *, size(array,(/i1,i2/)) ! { dg-error "must be a scalar" }
9 print *, size(array,i1,(/i1,i2/)) ! { dg-error "must be a scalar" }
H A Dlist_read_10.f904 integer, dimension(10) :: i1, i2 variable in program:main
6 i1 = 0
11 read (10,*) i1
12 if (any(i1 /= i2)) call abort
H A Dminmaxloc_integer_kinds_1.f905 integer(kind=1) :: i1(4) = 1 variable in program:gfcbug55
7 print *, minloc(i1), maxloc(i1)
H A Deor_handling_3.f904 integer i1, i2 variable in program:main
8 read(77,'(2I2)',advance='no',eor=100) i1,i2
11 if (i1 /= 12 .or. i2 /= 3) call abort
H A Dcomma_format_extension_3.f4 ! Note the missing , before i1 in the format.
15 100 format ('i = 'i1,:,', j = ',i1)
H A Dinit_flag_7.f9015 integer :: i1 = -100 local in subroutine:save_test1
20 if (i1 .ne. -100) call abort
24 if (i1 .ne. 1001) call abort
28 i1 = 1001
35 integer :: i1 = -100 local in subroutine:save_test2
39 if (i1 .ne. -100) call abort
42 if (i1 .ne. 1001) call abort
45 i1 = 1001
H A Dpr15332.f13 100 format ('i = ',i1,:,', j = ',i1)
H A Dread_comma.f11 integer :: i1, i2, i3 variable in program:pr25039
16 read(10,'(3i2)') i1,i2,i3
17 if(i1.ne.1) call abort()
H A Dparameter_array_element_2.f907 integer, parameter :: i1 = kind(0) variable in program:p1
8 integer, parameter :: i2(1) = [i1]
11 i3 = int(0, i1)
H A Dchar_transpose_1.f907 integer :: i1, i2 variable in program:main
10 do i1 = 1, n1
11 a (i1, i2) = 'abc'(i1:i1) // 'defg'(i2:i2) // 'cantrip'
24 do i1 = 1, n1
25 if (b (i2, i1) .ne. a (i1, i2)) call abort
H A Dfloat_1.f904 integer(1) :: i1 = 1 variable in program:test_float
8 if (float(i1) /= 1.) call abort ! { dg-warning "non-default INTEGER" }
H A Dunlimited_polymorphic_5.f9011 class(*), allocatable :: i1(:), i3(:)
14 allocate(real :: i1(n1))
17 call move_alloc(i2, i1)
18 if (size(i1) /= n2 .or. allocated(i2)) then
25 select type (i1)
27 if (any (i1 /= 2)) call abort
31 call move_alloc (i1, i3)
32 if (size(i3) /= n2 .or. allocated(i1)) then
/haiku-buildtools/gcc/gcc/testsuite/gcc.c-torture/compile/
H A D930411-1.c7 f(int i1, int i2) argument
9 i1 = *(int*)(i1 + 4);
10 if (i1 == 0)
17 *(int*)(i2 + 4) = i1;
21 i1 = g(i2);
24 i1 = *(int*)(i1 + 4);
25 if (i1 == 0)
30 i1
[all...]
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/tree-ssa/
H A Dpr23744.c9 int i1; local
13 for (i1 = 0; i1 < 10000; i1++) h();
H A Dssa-ccp-31.c9 int i1; local
13 for (i1 = 0; i1 < 10000; i1++) h();
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/warn/
H A Dctor-init-1.C6 int i1, i2; // { dg-warning "" } member in struct:Y
9 Y::Y () : i2(0), i1(0) {} // { dg-warning "" }
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/torture/
H A Dpr26898-1.c9 int i0, i1; local
10 if (!(i0 + 1 < i1 + 1 == i0 < i1))
12 if (!(i0 + INT_MIN < i1 - INT_MAX == i0 < i1 - -1))
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/
H A Dpr28888.c10 register int i0, i1, i2, i3, i4, i5; local
11 l0:i1 = (int) (i5 << 2);
14 l1:i2 += i1;
15 if (i1)
17 l3:i0 = i1 == 255;
18 i1++;
20 i0 = i4 >= i1;
/haiku-buildtools/gcc/libstdc++-v3/testsuite/20_util/function_objects/
H A Ddr660.cc28 for (int i1 = 0; i1 < 1000; ++i1)
31 VERIFY( std::bit_and<int>()(i1, i2) == (i1 & i2) );
32 VERIFY( std::bit_or<int>()(i1, i2) == (i1 | i2) );
33 VERIFY( std::bit_xor<int>()(i1, i2) == (i1 ^ i2) );
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/init/
H A Dref21.C3 const int &i1; member in struct:A
/haiku-buildtools/gcc/gcc/testsuite/c-c++-common/
H A DWshift-count-negative-1.c6 unsigned i1 = 1U << -1; /* { dg-warning "left shift count is negative" } */ local
H A DWshift-count-negative-2.c6 unsigned i1 = 1U << -1; local
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/mips/
H A Dmips16-attributes-6.c5 i1 (float f) function
10 float f1 (float f) { return i1 (f); }

Completed in 102 milliseconds

1234567891011>>