Searched refs:values (Results 1 - 25 of 266) sorted by relevance

1234567891011

/haiku-buildtools/gcc/gcc/testsuite/gfortran.dg/
H A Dcoarray_32.f904 real, allocatable :: values(:)[:] variable
5 allocate(values(1024)[*])
6 call laplacian(values)
H A Dsecnds-1.f10 integer i, j, values(8), k variable
12 call date_and_time (dum1, dum2, dum3, values)
14 dat1 = 0.001 * real(values(8)) + real(values(7)) +
15 & 60.0 * real(values(6)) + 3600.0 * real(values(5))
22 call date_and_time (dum1, dum2, dum3, values)
24 dat2 = 0.001 * real(values(8)) + real(values(7)) +
25 & 60.0 * real(values(
[all...]
H A Dsecnds.f10 integer i, j, values(8), k variable
12 call date_and_time (dum1, dum2, dum3, values)
14 dat1 = 0.001 * real(values(8)) + real(values(7)) +
15 & 60.0 * real(values(6)) + 3600.0 * real(values(5))
26 call date_and_time (dum1, dum2, dum3, values)
28 dat2 = 0.001 * real(values(8)) + real(values(7)) +
29 & 60.0 * real(values(
[all...]
H A Darray_constructor_6.f9016 subroutine test (order, values)
17 integer, dimension (:) :: values local in subroutine:test
20 if (size (values, dim = 1) .ne. order) call abort
22 if (values (i) .ne. i * 2) call abort
H A Dbessel_6.f9013 real,parameter :: values(*) = [0.0, 0.5, 1.0, 0.9, 1.8,2.0,3.0,4.0,4.25,8.0,34.53, 475.78] variable
14 real,parameter :: myeps(size(values)) = epsilon(0.0) &
16 ! The following is sufficient for me - the values above are a bit
19 integer,parameter :: mymax(size(values)) = &
25 do i = 1, ubound(values,dim=1)
26 call compare(mymax(i), values(i), myeps(i))
H A Darray_constructor_10.f9016 subroutine test (order, values)
17 integer, dimension (3:) :: values local in subroutine:test
20 if (size (values, dim = 1) .ne. order * 3) call abort
22 if (values (i * 3) .ne. i) call abort
23 if (values (i * 3 + 1) .ne. i) call abort
24 if (values (i * 3 + 2) .ne. i * 2) call abort
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/parse/
H A Dpr43765.C6 const char *values[]; member in struct:SomeType
12 { values : temp, },
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/cpp0x/
H A Drange-for24.C4 template<int... values>
7 static const int colors[] = { values... };
H A Dvariadic-ex5.C2 template<typename... Types> void f(Types... values);
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/powerpc/
H A Dpr46728-7.c37 double values[NVALS] = { 3.0, 1.95, 2.227, 4.0, 256.0, .0008797 }; local
42 if (convert_it_1 (values[i]) != sqrt (values[i]) * __builtin_powi (values[i], 1))
44 if (convert_it_2 (values[i]) != sqrt (values[i]) * __builtin_powi (values[i], 2))
46 if (convert_it_3 (values[i]) != sqrt (values[i]) * __builtin_powi (values[
[all...]
H A Dpr46728-8.c38 double values[NVALS] = { 3.0, 1.95, 2.227, 4.0, 256.0, .0008797 }; local
43 if (convert_it_1 (values[i]) !=
44 __builtin_powi (values[i], 3) * __builtin_powi (cbrt (values[i]), 1))
46 if (convert_it_2 (values[i]) !=
47 __builtin_powi (values[i], 3) * __builtin_powi (cbrt (values[i]), 2))
49 if (convert_it_3 (values[i]) !=
50 __builtin_powi (values[i], -3) * __builtin_powi (cbrt (values[
[all...]
H A Dpr46728-14.c44 double values[NVALS] = { 3.0, 1.95, 2.227, 4.0, 256.0, .0008797 }; local
52 x = sqrt (values[i]);
53 y = __builtin_powi (values[i], 1);
54 if (fabs (convert_it_1 (values[i]) / (x * y)) < PREC)
57 x = sqrt (values[i]);
58 y = __builtin_powi (values[i], 2);
59 if (fabs (convert_it_2 (values[i]) / (x * y)) < PREC)
62 x = sqrt (values[i]);
63 y = __builtin_powi (values[i], -1);
64 if (fabs (convert_it_3 (values[
[all...]
H A Dpr46728-3.c19 double values[NVALS] = { 3.0, 1.95, 2.227, 4.0, 256.0, .0008797 }; local
23 if (convert_it (values[i]) != sqrt(values[i]) * sqrt (sqrt (values[i])))
H A Dpr48258-1.c23 float values[SIZE] __attribute__((__aligned__(32))); variable
32 sum += values[i];
41 float min = values[0];
44 min = __builtin_fminf (min, values[i]);
53 float max = values[0];
56 max = __builtin_fmaxf (max, values[i]);
H A Dpr48258-2.c16 double values[SIZE] __attribute__((__aligned__(32))); variable
25 sum += values[i];
34 double min = values[0];
37 min = __builtin_fmin (min, values[i]);
46 double max = values[0];
49 max = __builtin_fmax (max, values[i]);
H A Dpr46728-15.c38 double values[NVALS] = { 3.0, 1.95, 2.227, 4.0, 256.0, .0008797 }; local
46 x = __builtin_powi (values[i], 3);
47 y = __builtin_powi (cbrt (values[i]), 1);
48 if (fabs (convert_it_1 (values[i]) / (x * y)) < PREC)
51 x = __builtin_powi (values[i], 3);
52 y = __builtin_powi (cbrt (values[i]), 2);
53 if (fabs (convert_it_2 (values[i]) / (x * y)) < PREC)
56 x = __builtin_powi (values[i], -3);
57 y = __builtin_powi (cbrt (values[i]), 2);
58 if (fabs (convert_it_3 (values[
[all...]
H A Dpr46728-11.c20 double values[NVALS] = { 3.0, 1.95, 2.227, 4.0, 256.0, .0008797 }; local
27 x = sqrt (values[i]);
28 y = sqrt (sqrt (values[i]));
30 if (fabs (convert_it (values[i]) / (x * y)) < PREC)
H A Dpr46728-1.c19 double values[NVALS] = { 3.0, 1.95, 2.227, 4.0, 256.0, .0008797 }; local
23 if (convert_it (values[i]) != sqrt (values[i]))
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/opt/
H A Dcrash1.C6 double values[1]; member in struct:X
7 double & foo (const unsigned int index) { return values[index]; }
/haiku-buildtools/gcc/gcc/testsuite/gfortran.dg/g77/
H A D980520-1.f8 values(i,j) = val((i-1)*n+j)
/haiku-buildtools/gcc/libstdc++-v3/testsuite/25_algorithms/push_heap/
H A Dcomplexity.cc39 std::vector<counter_type> values; local
40 values.reserve(nb_values);
42 values.push_back(dist(dev));
44 std::make_heap(values.begin(), values.end());
45 values.push_back(dist(dev));
49 std::push_heap(values.begin(), values.end());
51 VERIFY( counter_type::less_compare_count <= std::log2(values.size()) );
/haiku-buildtools/gcc/gcc/testsuite/gcc.c-torture/execute/ieee/
H A Dacc1.c14 double values[] = { 0.1e-100, 1.0, -1.0, 0.0 }; local
15 if (func (values) != 0.1e-100)
H A Dacc2.c15 double values[] = { __DBL_MAX__, 2.0, 0.5, 1.0 }; local
16 if (func (values) != __DBL_MAX__)
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/
H A Dpr46728-12.c19 double values[NVALS] = { 3.0, 1.95, 2.227, 729.0, 64.0, .0008797 }; local
24 if (fabs (convert_it (values[i]) / cbrt (values[i])) < PREC)
H A Dpr46728-9.c19 double values[NVALS] = { 3.0, 1.95, 2.227, 4.0, 256.0, .0008797 }; local
24 if (fabs (convert_it (values[i]) / sqrt (values[i])) < PREC)

Completed in 141 milliseconds

1234567891011