Home
last modified time | relevance | path

Searched refs:z_re (Results 1 – 25 of 31) sorted by relevance

12

/dports/devel/xsimd/xsimd-7.6.0/examples/
H A Dmandelbrot.cpp61 batch<float, N> z_re = c_re; in mandel() local
67 auto active = _active & ((z_re * z_re + z_im * z_im) <= batch<float, N>(4.f)); in mandel()
73 batch<float, N> new_re = z_re * z_re - z_im * z_im; in mandel()
76 z_re = c_re + new_re; in mandel()
134 T z_re = c_re, z_im = c_im; in mandel() local
138 if (z_re * z_re + z_im * z_im > 4.f) in mandel()
143 T new_re = z_re * z_re - z_im * z_im; in mandel()
145 z_re = c_re + new_re; in mandel()
181 float z_re = c_re, z_im = c_im; in mandel() local
185 if (z_re * z_re + z_im * z_im > 4.f) in mandel()
[all …]
/dports/devel/ispc/ispc-1.16.1/examples/cpu/mandelbrot_tasks/
H A Dmandelbrot_tasks_serial.cpp35 float z_re = c_re, z_im = c_im; in mandel() local
38 if (z_re * z_re + z_im * z_im > 4.f) in mandel()
41 float new_re = z_re * z_re - z_im * z_im; in mandel()
42 float new_im = 2.f * z_re * z_im; in mandel()
43 z_re = c_re + new_re; in mandel()
H A Dmandelbrot_tasks.ispc38 float z_re = c_re, z_im = c_im;
41 if (z_re * z_re + z_im * z_im > 4.)
44 float new_re = z_re*z_re - z_im*z_im;
45 float new_im = 2.f * z_re * z_im;
47 z_re = c_re + new_re;
/dports/devel/ispc/ispc-1.16.1/examples/cpu/mandelbrot/
H A Dmandelbrot_serial.cpp35 float z_re = c_re, z_im = c_im; in mandel() local
38 if (z_re * z_re + z_im * z_im > 4.f) in mandel()
41 float new_re = z_re * z_re - z_im * z_im; in mandel()
42 float new_im = 2.f * z_re * z_im; in mandel()
43 z_re = c_re + new_re; in mandel()
H A Dmandelbrot.ispc35 float z_re = c_re, z_im = c_im;
38 if (z_re * z_re + z_im * z_im > 4.)
41 float new_re = z_re*z_re - z_im*z_im;
42 float new_im = 2.f * z_re * z_im;
44 z_re = c_re + new_re;
/dports/devel/ispc/ispc-1.16.1/examples/xpu/mandelbrot/
H A Dmandelbrot_serial.cpp35 float z_re = c_re, z_im = c_im; in mandel() local
38 if (z_re * z_re + z_im * z_im > 4.f) in mandel()
41 float new_re = z_re * z_re - z_im * z_im; in mandel()
42 float new_im = 2.f * z_re * z_im; in mandel()
43 z_re = c_re + new_re; in mandel()
H A Dmandelbrot.ispc34 float z_re = c_re, z_im = c_im;
37 bool done = (z_re * z_re + z_im * z_im > 4.f);
41 float new_re = z_re * z_re - z_im * z_im;
42 float new_im = 2.f * z_re * z_im;
45 z_re = c_re + new_re;
/dports/security/liboqs/liboqs-0.7.0/src/sig/falcon/pqclean_falcon-512_avx2/
H A Dfft.c237 __m256d z_re, z_im; in PQCLEAN_FALCON512_AVX2_FFT() local
241 z_re = _mm256_loadu_pd(&f[j + ht].v); in PQCLEAN_FALCON512_AVX2_FFT()
243 y_re = FMSUB(z_re, s_re, in PQCLEAN_FALCON512_AVX2_FFT()
245 y_im = FMADD(z_re, s_im, in PQCLEAN_FALCON512_AVX2_FFT()
350 __m256d z_re, z_im; in PQCLEAN_FALCON512_AVX2_iFFT() local
362 z_re = FMSUB(x_im, s_im, in PQCLEAN_FALCON512_AVX2_iFFT()
366 _mm256_storeu_pd(&f[j + t].v, z_re); in PQCLEAN_FALCON512_AVX2_iFFT()
/dports/security/liboqs/liboqs-0.7.0/src/sig/falcon/pqclean_falcon-1024_avx2/
H A Dfft.c237 __m256d z_re, z_im; in PQCLEAN_FALCON1024_AVX2_FFT() local
241 z_re = _mm256_loadu_pd(&f[j + ht].v); in PQCLEAN_FALCON1024_AVX2_FFT()
243 y_re = FMSUB(z_re, s_re, in PQCLEAN_FALCON1024_AVX2_FFT()
245 y_im = FMADD(z_re, s_im, in PQCLEAN_FALCON1024_AVX2_FFT()
350 __m256d z_re, z_im; in PQCLEAN_FALCON1024_AVX2_iFFT() local
362 z_re = FMSUB(x_im, s_im, in PQCLEAN_FALCON1024_AVX2_iFFT()
366 _mm256_storeu_pd(&f[j + t].v, z_re); in PQCLEAN_FALCON1024_AVX2_iFFT()
/dports/lang/gcc11/gcc-11.2.0/libphobos/src/std/
H A Dcomplex.d916 real z_re = z.re; variable
919 x = std.math.fabs(z_re);
934 if (z_re >= 0)
H A Dmath.d1711 const real z_re = z.re; in sqrt() local
1714 x = fabs(z_re); in sqrt()
1727 if (z_re >= 0) in sqrt()
/dports/lang/gcc10/gcc-10.3.0/libphobos/src/std/
H A Dcomplex.d908 real z_re = z.re; variable
911 x = std.math.fabs(z_re);
926 if (z_re >= 0)
H A Dmath.d1712 const real z_re = z.re; in sqrt() local
1715 x = fabs(z_re); in sqrt()
1728 if (z_re >= 0) in sqrt()
/dports/lang/gcc11-devel/gcc-11-20211009/libphobos/src/std/
H A Dcomplex.d916 real z_re = z.re; variable
919 x = std.math.fabs(z_re);
934 if (z_re >= 0)
H A Dmath.d1711 const real z_re = z.re; in sqrt() local
1714 x = fabs(z_re); in sqrt()
1727 if (z_re >= 0) in sqrt()
/dports/devel/avr-gcc/gcc-10.2.0/libphobos/src/std/
H A Dcomplex.d908 real z_re = z.re; variable
911 x = std.math.fabs(z_re);
926 if (z_re >= 0)
H A Dmath.d1712 const real z_re = z.re; in sqrt() local
1715 x = fabs(z_re); in sqrt()
1728 if (z_re >= 0) in sqrt()
/dports/lang/gcc9-devel/gcc-9-20211007/libphobos/src/std/
H A Dcomplex.d908 real z_re = z.re; variable
911 x = std.math.fabs(z_re);
926 if (z_re >= 0)
H A Dmath.d1674 const real z_re = z.re; in sqrt() local
1677 x = fabs(z_re); in sqrt()
1690 if (z_re >= 0) in sqrt()
/dports/lang/gcc9/gcc-9.4.0/libphobos/src/std/
H A Dcomplex.d908 real z_re = z.re; variable
911 x = std.math.fabs(z_re);
926 if (z_re >= 0)
/dports/lang/gcc10-devel/gcc-10-20211008/libphobos/src/std/
H A Dcomplex.d908 real z_re = z.re; variable
911 x = std.math.fabs(z_re);
926 if (z_re >= 0)
H A Dmath.d1712 const real z_re = z.re; in sqrt() local
1715 x = fabs(z_re); in sqrt()
1728 if (z_re >= 0) in sqrt()
/dports/misc/cxx_atomics_pic/gcc-11.2.0/libphobos/src/std/
H A Dcomplex.d916 real z_re = z.re; variable
919 x = std.math.fabs(z_re);
934 if (z_re >= 0)
/dports/lang/gcc9-aux/gcc-9.1.0/libphobos/src/std/
H A Dcomplex.d908 real z_re = z.re; variable
911 x = std.math.fabs(z_re);
926 if (z_re >= 0)
/dports/lang/gcc12-devel/gcc-12-20211205/libphobos/src/std/
H A Dcomplex.d1290 real z_re = z.re; variable
1293 x = core.math.fabs(z_re);
1308 if (z_re >= 0)

12