Searched refs:scale (Results 1 - 25 of 185) sorted by relevance

12345678

/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/cpp/
H A Dcharconst-3.c18 int scale = (int) (unsigned char) -1 + 1; local
20 if ('ab' != (int) ((unsigned char) 'a' * scale + (unsigned char) 'b'))
23 if ('\234b' != (int) ((unsigned char) '\234' * scale + (unsigned char) 'b'))
26 if ('b\234' != (int) ((unsigned char) 'b' * scale + (unsigned char) '\234'))
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/sh/
H A Dpr54680.c42 float scale = 2*pi / 65536; local
43 return sinf (x * scale);
57 float scale = 2*pi / 65536; local
58 return sinf (x * scale) * cosf (x * scale);
/haiku-buildtools/gcc/gcc/testsuite/gcc.c-torture/compile/
H A D20040317-2.c13 ScalePart scale; member in struct:_ScaleRec
19 if (sw->scale.table.x[(int) *img_x] +
20 (short) sw->scale.table.width[(int) *img_x] < x)
H A D20020715-1.c8 void scale(void) function
/haiku-buildtools/gcc/libquadmath/math/
H A Dclog10q.c46 int scale = 0; local
57 scale = -1;
58 absx = scalbnq (absx, scale);
59 absy = (absy >= FLT128_MIN * 2.0Q ? scalbnq (absy, scale) : 0.0Q);
63 scale = FLT128_MANT_DIG;
64 absx = scalbnq (absx, scale);
65 absy = scalbnq (absy, scale);
68 if (absx == 1.0Q && scale == 0)
77 else if (absx > 1.0Q && absx < 2.0Q && absy < 1.0Q && scale == 0)
87 && scale
[all...]
H A Dclogq.c42 int scale = 0; local
53 scale = -1;
54 absx = scalbnq (absx, scale);
55 absy = (absy >= FLT128_MIN * 2.0Q ? scalbnq (absy, scale) : 0.0Q);
59 scale = FLT128_MANT_DIG;
60 absx = scalbnq (absx, scale);
61 absy = scalbnq (absy, scale);
64 if (absx == 1.0Q && scale == 0)
72 else if (absx > 1.0Q && absx < 2.0Q && absy < 1.0Q && scale == 0)
82 && scale
[all...]
H A Dcsqrtq.c92 int scale = 0; local
96 scale = 1;
97 __real__ x = scalbnq (__real__ x, -2 * scale);
98 __imag__ x = scalbnq (__imag__ x, -2 * scale);
102 scale = 1;
104 __real__ x = scalbnq (__real__ x, -2 * scale);
107 __imag__ x = scalbnq (__imag__ x, -2 * scale);
112 scale = -(FLT128_MANT_DIG / 2);
113 __real__ x = scalbnq (__real__ x, -2 * scale);
114 __imag__ x = scalbnq (__imag__ x, -2 * scale);
[all...]
/haiku-buildtools/gcc/gcc/config/i386/
H A Davx512pfintrin.h52 void *addr, int scale, int hint)
55 scale, hint);
61 void *addr, int scale, int hint)
64 scale, hint);
70 void *addr, int scale, int hint)
73 scale, hint);
79 void *addr, int scale, int hint)
82 scale, hint);
87 _mm512_prefetch_i32scatter_pd (void *addr, __m256i index, int scale, argument
91 (long long const *)addr, scale, hin
51 _mm512_mask_prefetch_i32gather_pd(__m256i index, __mmask8 mask, void *addr, int scale, int hint) argument
60 _mm512_mask_prefetch_i32gather_ps(__m512i index, __mmask16 mask, void *addr, int scale, int hint) argument
69 _mm512_mask_prefetch_i64gather_pd(__m512i index, __mmask8 mask, void *addr, int scale, int hint) argument
78 _mm512_mask_prefetch_i64gather_ps(__m512i index, __mmask8 mask, void *addr, int scale, int hint) argument
96 _mm512_prefetch_i32scatter_ps(void *addr, __m512i index, int scale, int hint) argument
105 _mm512_mask_prefetch_i32scatter_pd(void *addr, __mmask8 mask, __m256i index, int scale, int hint) argument
114 _mm512_mask_prefetch_i32scatter_ps(void *addr, __mmask16 mask, __m512i index, int scale, int hint) argument
123 _mm512_prefetch_i64scatter_pd(void *addr, __m512i index, int scale, int hint) argument
132 _mm512_prefetch_i64scatter_ps(void *addr, __m512i index, int scale, int hint) argument
141 _mm512_mask_prefetch_i64scatter_pd(void *addr, __mmask16 mask, __m512i index, int scale, int hint) argument
150 _mm512_mask_prefetch_i64scatter_ps(void *addr, __mmask16 mask, __m512i index, int scale, int hint) argument
[all...]
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/vect/
H A Dfast-math-bb-slp-call-3.c24 double scale; local
49 scale = sqrt((iWidth - 1) * (iHeight - 1) / area);
50 uf->rotatedWidth = MIN(ceil(2 * maxX + 1.0) * scale, 2 * iWidth);
51 uf->rotatedHeight = MIN(ceil(2 * maxY + 1.0) * scale, 2 * iHeight);
52 uf->autoCropWidth = MIN(floor(2 * minX) * scale, 2 * iWidth);
53 uf->autoCropHeight = MIN(floor(2 * minY) * scale, 2 * iHeight);
H A Dvect-debug-pr41926.c8 double *__restrict prim, double scale, double pp, double pq)
17 double tmp = scale * prim[p_index++];
7 foo(double (*__restrict p)[4], double (*__restrict q)[4], double *__restrict prim, double scale, double pp, double pq) argument
H A Dvect-widen-mult-sum.c11 main1 (short *in, int off, short scale, int n) argument
17 sum += ((int) in[i] * (int) in[i+off]) >> scale;
/haiku-buildtools/gcc/gcc/testsuite/gcc.c-torture/execute/
H A Dloop-13.c5 scale (TYPE *alpha, TYPE *x, int n) function
30 scale (&alpha, x, 5);
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/i386/
H A Davx2-i32gatherd-2.c9 compute_i32gatherd (int *s1, int *s2, int scale, int *r) argument
14 r[i] = *(int *) (((unsigned char *) s1) + s2[i] * scale);
31 divide by 2 to demonstrate scale */
H A Davx2-i32gatherd256-2.c9 compute_i32gatherd256 (int *s1, int *s2, int scale, int *r) argument
14 r[i] = *(int *) (((unsigned char *) s1) + s2[i] * scale);
31 divide by 2 to demonstrate scale */
H A Davx2-i32gatherpd-2.c9 compute_i32gatherpd (double *s1, int *s2, int scale, double *r) argument
14 r[i] = *(double *) (((unsigned char *) s1) + s2[i] * scale);
31 divide by 2 to demonstrate scale */
H A Davx2-i32gatherpd256-2.c9 compute_i32gatherpd256 (double *s1, int *s2, int scale, double *r) argument
14 r[i] = *(double *) (((unsigned char *) s1) + s2[i] * scale);
31 divide by 2 to demonstrate scale */
H A Davx2-i32gatherps-2.c9 compute_i32gatherps (float *s1, int *s2, int scale, float *r) argument
14 r[i] = *(float *) (((unsigned char *) s1) + s2[i] * scale);
31 divide by 2 to demonstrate scale */
H A Davx2-i32gatherps256-2.c9 compute_i32gatherps256 (float *s1, int *s2, int scale, float *r) argument
14 r[i] = *(float *) (((unsigned char *) s1) + s2[i] * scale);
31 divide by 2 to demonstrate scale */
H A Davx2-i32gatherq-2.c9 compute_i32gatherpd (long long *s1, int *s2, int scale, long long *r) argument
14 r[i] = *(long long *) (((unsigned char *) s1) + s2[i] * scale);
31 divide by 2 to demonstrate scale */
H A Davx2-i32gatherq256-2.c9 compute_i32gatherpd256 (long long *s1, int *s2, int scale, long long *r) argument
14 r[i] = *(long long *) (((unsigned char *) s1) + s2[i] * scale);
31 divide by 2 to demonstrate scale */
H A Davx2-i64gatherd-2.c9 compute_i64gatherps (int *s1, long long *s2, int scale, int *r) argument
14 r[i] = *(int *) (((unsigned char *) s1) + s2[i] * scale);
31 divide by 2 to demonstrate scale */
H A Davx2-i64gatherd256-2.c9 compute_i64gatherps256 (int *s1, long long *s2, int scale, int *r) argument
14 r[i] = *(int *) (((unsigned char *) s1) + s2[i] * scale);
31 divide by 2 to demonstrate scale */
H A Davx2-i64gatherpd-2.c9 compute_i64gatherpd (double *s1, long long *s2, int scale, double *r) argument
14 r[i] = *(double *) (((unsigned char *) s1) + s2[i] * scale);
30 /* About to gather in reverse order, divide by 2 to demonstrate scale */
H A Davx2-i64gatherpd256-2.c9 compute_i64gatherpd256 (double *s1, long long int *s2, int scale, double *r) argument
14 r[i] = *(double *) (((unsigned char *) s1) + s2[i] * scale);
31 divide by 2 to demonstrate scale */
H A Davx2-i64gatherps-2.c9 compute_i64gatherps (float *s1, long long *s2, int scale, float *r) argument
14 r[i] = *(float *) (((unsigned char *) s1) + s2[i] * scale);
31 divide by 2 to demonstrate scale */

Completed in 129 milliseconds

12345678