Searched refs:stride (Results 1 - 25 of 104) sorted by relevance

12345

/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/vect/
H A Dpr66251.c12 test1(_Complex double *a, _Complex int *b, int stride, int n) argument
17 a[i*stride] = b[i*stride];
22 test2(_Complex int *a, _Complex double *b, int stride, int n) argument
27 a[i*stride] = b[i*stride];
39 int stride; local
43 for (stride = 1; stride < 15; stride
[all...]
H A Dpr43430-2.c5 vsad16_c (void *c, uint8_t * s1, uint8_t * s2, int stride, int h) argument
10 score += ((s1[x] - s1[x + stride] + s2[x + stride]) >= 0 ?
11 s1[x] + s2[x + stride] :
12 s2[x + stride]);
H A Dpr43430-1.c16 foo (myint * s1, myint * s2, int stride) argument
21 score += ((s1[x] - s1[x + stride] + s2[x + stride]) >= 0 ?
22 s1[x] + s2[x + stride] :
23 s2[x + stride]);
H A Dbb-slp-25.c12 void foo (short * __restrict__ dst, short * __restrict__ src, int h, int stride, int dummy) argument
18 dst[0] += A*src[0] + src[stride];
19 dst[1] += A*src[1] + src[1+stride];
20 dst[2] += A*src[2] + src[2+stride];
21 dst[3] += A*src[3] + src[3+stride];
22 dst[4] += A*src[4] + src[4+stride];
23 dst[5] += A*src[5] + src[5+stride];
24 dst[6] += A*src[6] + src[6+stride];
25 dst[7] += A*src[7] + src[7+stride];
H A Dbb-slp-26.c14 int stride, int dummy)
20 dst[0] += A*src[0] + src[stride];
21 dst[1] += A*src[1] + src[1+stride];
22 dst[2] += A*src[2] + src[2+stride];
23 dst[3] += A*src[3] + src[3+stride];
24 dst[4] += A*src[4] + src[4+stride];
25 dst[5] += A*src[5] + src[5+stride];
26 dst[6] += A*src[6] + src[6+stride];
27 dst[7] += A*src[7] + src[7+stride];
13 foo(char * __restrict__ dst, char * __restrict__ src, int h, int stride, int dummy) argument
H A Dbb-slp-cond-1.c8 foo (int *a, int stride) argument
12 for (i = 0; i < N/stride; i++, a += stride)
H A Dbb-slp-pattern-2.c8 foo (short * __restrict__ a, int * __restrict__ b, int stride) argument
12 for (i = 0; i < N/stride; i++, a += stride, b += stride)
/haiku-buildtools/cloog/source/
H A Dstride.c15 cloog_int_init(s->stride);
23 CloogStride *cloog_stride_alloc(cloog_int_t stride, cloog_int_t offset) argument
27 cloog_int_set(s->stride, stride);
34 CloogStride *cloog_stride_alloc_from_constraint(cloog_int_t stride, argument
39 cloog_int_set(s->stride, stride);
47 CloogStride *cloog_stride_copy(CloogStride *stride) argument
49 if (!stride)
50 return stride;
56 cloog_stride_free(CloogStride *stride) argument
[all...]
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/tree-ssa/
H A Dslsr-21.c2 with variable stride and control flow. */
8 f (int n, int x, int stride) argument
12 a = x * stride;
17 a += x1 * stride;
19 a += x2 * stride;
24 a += x3 * stride;
30 /* { dg-final { scan-tree-dump-times " \\* stride" 1 "optimized" } } */
H A Dslsr-22.c2 with variable stride and control flow. */
8 f (int n, int x, int stride) argument
12 a = x * stride;
17 a += x1 * stride;
19 a += x2 * stride;
21 a += x3 * stride;
27 /* { dg-final { scan-tree-dump-times " \\* stride" 1 "optimized" } } */
H A Dslsr-23.c2 with variable stride and control flow. */
8 f (int n, int x, int stride) argument
12 a = x * stride;
14 a += x1 * stride;
19 a += x2 * stride;
21 a += x3 * stride;
27 /* { dg-final { scan-tree-dump-times " \\* stride" 1 "optimized" } } */
H A Dslsr-24.c2 with variable stride and control flow, increment = 1. */
8 f (int n, int x, int stride) argument
12 a = x * stride;
17 a += x1 * stride;
19 a += x2 * stride;
24 a += x3 * stride;
H A Dslsr-25.c2 with variable stride and control flow, increment = -1. */
8 f (int n, int x, int stride) argument
12 a = x * stride;
17 a += x1 * stride;
19 a += x2 * stride;
24 a += x3 * stride;
H A Dslsr-26.c2 with variable stride and control flow, increment = -3. */
8 f (int n, int x, int stride) argument
12 a = x * stride;
17 a += x1 * stride;
19 a += x2 * stride;
24 a += x3 * stride;
30 /* { dg-final { scan-tree-dump-times " \\* stride" 1 "optimized" } } */
H A Dpr38250.c10 size_t stride; member in struct:__anon2456
18 const size_t stride = v->stride; local
22 *(gsl_complex_long_double *) (data + 2 * i * stride) = zero;
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/tree-ssa/
H A Divopts-2.C4 void test (int *b, int *e, int stride) argument
6 for (int *p = b; p != e; p += stride)
/haiku-buildtools/cloog/include/cloog/
H A Dstride.h13 cloog_int_t stride; /**< The actual stride. */ member in struct:cloogstride
20 CloogStride *cloog_stride_alloc(cloog_int_t stride, cloog_int_t offset);
21 CloogStride *cloog_stride_alloc_from_constraint(cloog_int_t stride,
23 CloogStride *cloog_stride_copy(CloogStride *stride);
24 void cloog_stride_free(CloogStride *stride);
27 int level, CloogStride *stride);
/haiku-buildtools/gcc/gcc/testsuite/gcc.c-torture/compile/
H A Dpr35043.c7 size_t stride; member in struct:__anon1567
14 const size_t stride = v->stride; local
18 *(gsl_complex_long_double *) (data + 2 * i * stride) = zero;
H A D20070520-1.c4 void ff_pred8x8_plane_c(uint8_t *src, int stride){ argument
8 const uint8_t * const src0 = src+3-stride;
9 const uint8_t *src1 = src+4*stride-1;
10 const uint8_t *src2 = src1-2*stride;
14 src1 += stride; src2 -= stride;
33 src += stride;
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/graphite/
H A Dpr38409.c14 int first, i, k , stride ; local
20 k += stride ;
21 stride -= 2 ;
/haiku-buildtools/gcc/libstdc++-v3/testsuite/26_numerics/slice/
H A D1.cc27 construction(std::size_t start, std::size_t size, std::size_t stride) argument
29 std::slice s(start, size, stride);
30 return s.start() == start && s.size() == size && s.stride() == stride;
34 copy(std::size_t start, std::size_t size, std::size_t stride) argument
36 std::slice s(start, size, stride);
38 return t.start() == start && t.size() == size && t.stride() == stride;
42 assignment(std::size_t start, std::size_t size, std::size_t stride) argument
44 std::slice s(start, size, stride);
[all...]
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/i386/
H A Dpr37191.c26 static inline void h264_loop_filter_chroma_intra_mmx2(uint8_t *pix, int stride, int alpha1, int beta1) argument
30 :: "r"(pix-2*stride), "r"(pix), "r"((long)stride),
35 void h264_h_loop_filter_chroma_intra_mmx2(uint8_t *pix, int stride, int alpha, int beta) argument
39 transpose4x4(trans, pix-2, 8, stride);
40 transpose4x4(trans+4, pix-2+4*stride, 8, stride);
42 transpose4x4(pix-2, trans, stride, 8);
43 transpose4x4(pix-2+4*stride, trans+4, stride,
[all...]
/haiku-buildtools/gcc/libgomp/testsuite/libgomp.c/appendix-a/
H A Da.21.1.c12 a21 (int lb, int ub, int stride) argument
16 for (i = lb; i < ub; i += stride)
/haiku-buildtools/gcc/gcc/
H A Dgraphite-blocking.c126 pbb_strip_mine_time_depth (poly_bb_p pbb, int time_depth, int stride) argument
131 /* STRIP is the dimension that iterates with stride STRIDE. */
143 c = isl_constraint_set_coefficient_si (c, isl_dim_out, strip, -stride);
150 c = isl_constraint_set_coefficient_si (c, isl_dim_out, strip, stride);
152 c = isl_constraint_set_constant_si (c, stride - 1);
167 lst_strip_mine_profitable_p (lst_p lst, int stride) argument
176 mpz_set_si (strip_stride, stride);
189 lst_do_strip_mine_loop (lst_p lst, int depth, int stride) argument
203 res += lst_do_strip_mine_loop (l, depth, stride);
209 pbb_strip_mine_time_depth (pbb, psct_dynamic_dim (pbb, depth), stride);
230 lst_do_strip_mine(lst_p lst, int stride) argument
262 scop_do_strip_mine(scop_p scop, int stride) argument
[all...]
/haiku-buildtools/gcc/libgomp/config/posix/
H A Daffinity.c59 unsigned long len, long stride, bool quiet)
64 (void) stride;
78 gomp_affinity_copy_place (void *p, void *q, long stride) argument
82 (void) stride;
58 gomp_affinity_add_cpus(void *p, unsigned long num, unsigned long len, long stride, bool quiet) argument

Completed in 98 milliseconds

12345