Home
last modified time | relevance | path

Searched refs:conj (Results 1 – 25 of 71) sorted by relevance

123

/external/libcxx/test/std/numerics/complex.number/cmplx.over/
Dconj.pass.cpp28 static_assert((std::is_same<decltype(std::conj(x)), std::complex<double> >::value), ""); in test()
29 assert(std::conj(x) == conj(std::complex<double>(x, 0))); in test()
36 static_assert((std::is_same<decltype(std::conj(x)), std::complex<T> >::value), ""); in test()
37 assert(std::conj(x) == conj(std::complex<T>(x, 0))); in test()
45 static_assert((std::is_same<decltype(std::conj(x)), std::complex<T> >::value), ""); in test()
46 assert(std::conj(x) == conj(std::complex<T>(x, 0))); in test()
/external/eigen/Eigen/src/Geometry/
DOrthoMethods.h36 numext::conj(lhs.coeff(1) * rhs.coeff(2) - lhs.coeff(2) * rhs.coeff(1)), in cross()
37 numext::conj(lhs.coeff(2) * rhs.coeff(0) - lhs.coeff(0) * rhs.coeff(2)), in cross()
38 numext::conj(lhs.coeff(0) * rhs.coeff(1) - lhs.coeff(1) * rhs.coeff(0)) in cross()
52 numext::conj(lhs.coeff(1) * rhs.coeff(2) - lhs.coeff(2) * rhs.coeff(1)), in run()
53 numext::conj(lhs.coeff(2) * rhs.coeff(0) - lhs.coeff(0) * rhs.coeff(2)), in run()
54 numext::conj(lhs.coeff(0) * rhs.coeff(1) - lhs.coeff(1) * rhs.coeff(0)), in run()
144 perp.coeffRef(maxi) = -numext::conj(src.coeff(sndi)) * invnm; in run()
145 perp.coeffRef(sndi) = numext::conj(src.coeff(maxi)) * invnm; in run()
171 perp.coeffRef(0) = -numext::conj(src.y())*invnm;
172 perp.coeffRef(1) = numext::conj(src.x())*invnm;
[all …]
/external/eigen/Eigen/src/Jacobi/
DJacobi.h53 using numext::conj;
54 return JacobiRotation(m_c * other.m_c - conj(m_s) * other.m_s,
55 conj(m_c * conj(other.m_s) + conj(m_s) * conj(other.m_c)));
59 JacobiRotation transpose() const { using numext::conj; return JacobiRotation(m_c, -conj(m_s)); } in transpose()
62 JacobiRotation adjoint() const { using numext::conj; return JacobiRotation(conj(m_c), -m_s); } in adjoint()
109 m_s = - sign_t * (numext::conj(y) / abs(y)) * abs(t) * n; in makeJacobi()
160 using numext::conj; in makeGivens()
190 m_s = -qs*conj(ps)*(m_c/p2); in makeGivens()
207 m_s = -conj(ps) * (q/u); in makeGivens()
340 x[i] = c * xi + numext::conj(s) * yi; in apply_rotation_in_the_plane()
[all …]
/external/eigen/Eigen/src/Core/products/
DSelfadjointRank2Update.h33 (numext::conj(alpha) * numext::conj(u.coeff(i))) * v.tail(size-i)
34 + (alpha * numext::conj(v.coeff(i))) * u.tail(size-i);
47 (numext::conj(alpha) * numext::conj(u.coeff(i))) * v.head(i+1)
48 + (alpha * numext::conj(v.coeff(i))) * u.head(i+1);
78 * numext::conj(VBlasTraits::extractScalarFactor(v.derived()));
80 actualAlpha = numext::conj(actualAlpha);
DSelfadjointMatrixMatrix.h33 blockA[count++] = numext::conj(lhs(k, i+w)); // transposed in pack()
44 blockA[count++] = numext::conj(lhs(k, i+w)); // transposed in pack()
71 blockA[count++] = numext::conj(lhs(k, i)); // transposed in operator()
110 blockB[count+0] = numext::conj(rhs(j2+0,k)); in operator()
111 blockB[count+1] = numext::conj(rhs(j2+1,k)); in operator()
114 blockB[count+2] = numext::conj(rhs(j2+2,k)); in operator()
115 blockB[count+3] = numext::conj(rhs(j2+3,k)); in operator()
131 blockB[count+w] = numext::conj(rhs(j2+w,k)); in operator()
154 blockB[count+0] = numext::conj(rhs(j2+0,k)); in operator()
155 blockB[count+1] = numext::conj(rhs(j2+1,k)); in operator()
[all …]
DTriangularSolverMatrix.h75 conj_if<Conjugate> conj;
121 Scalar a = (Mode & UnitDiag) ? Scalar(1) : Scalar(1)/conj(tri(i,i));
130 b += conj(l[i3]) * r[i3];
141 r[i3] -= b * conj(l[i3]);
224 conj_if<Conjugate> conj;
300 Scalar b = conj(rhs(IsLower ? j+1+k3 : absolute_j2+k3,j));
305 Scalar b = (Mode & UnitDiag) ? Scalar(1) : Scalar(1)/conj(rhs(j,j));
DSelfadjointMatrixVector.h62 Scalar cjAlpha = ConjugateRhs ? numext::conj(alpha) : alpha; in run()
117 t2 += numext::conj(A0[i]) * rhs[i]; in run()
118 t3 += numext::conj(A1[i]) * rhs[i]; in run()
/external/eigen/blas/
DRank2Update.h27 …numext::conj(alpha) * numext::conj(u[i]) * OtherMap(v+(UpLo==Lower ? i : 0), UpLo==Lower ? size-i … in run()
28 … + alpha * numext::conj(v[i]) * OtherMap(u+(UpLo==Lower ? i : 0), UpLo==Lower ? size-i : (i+1)); in run()
46 …numext::conj(alpha) * numext::conj(u[i]) * OtherMap(v+(UpLo==Lower ? i : 0), UpLo==Lower ? size-i … in run()
47 … + alpha * numext::conj(v[i]) * OtherMap(u+(UpLo==Lower ? i : 0), UpLo==Lower ? size-i : (i+1)); in run()
/external/eigen/test/
Dadjoint.cpp19 …_isApproxWithRef((s1 * v1 + s2 * v2).dot(v3), numext::conj(s1) * v1.dot(v3) + numext::conj(s2)… in run()
34 …_isApproxWithRef((s1 * v1 + s2 * v2).dot(v3), numext::conj(s1) * v1.dot(v3) + numext::conj(s2)… in run()
89 VERIFY_IS_APPROX((s1 * m1).adjoint(), numext::conj(s1) * m1.adjoint()); in adjoint()
92 VERIFY_IS_APPROX(numext::conj(v1.dot(v2)), v2.dot(v1)); in adjoint()
102 VERIFY_IS_APPROX(m1.conjugate()(r,c), numext::conj(m1(r,c))); in adjoint()
103 VERIFY_IS_APPROX(m1.adjoint()(c,r), numext::conj(m1(r,c))); in adjoint()
Djacobi.cpp43 VERIFY_IS_APPROX(b.row(p), c * a.row(p) + numext::conj(s) * a.row(q)); in jacobi()
44 VERIFY_IS_APPROX(b.row(q), -s * a.row(p) + numext::conj(c) * a.row(q)); in jacobi()
57 VERIFY_IS_APPROX(b.col(q), numext::conj(s) * a.col(p) + numext::conj(c) * a.col(q)); in jacobi()
Dproduct_selfadjoint.cpp47 …VERIFY_IS_APPROX(m2, (m1 + (s3*(-v1)*(s2*v2).adjoint()+numext::conj(s3)*(s2*v2)*(-v1).adjoint())).… in product_selfadjoint()
51 …VERIFY_IS_APPROX(m2, (m1 + s1*(-s2*r1.adjoint())*(r2.adjoint()*s3).adjoint() + numext::conj(s1)*(r… in product_selfadjoint()
/external/webrtc/webrtc/modules/audio_processing/intelligibility/
Dintelligibility_utils.cc121 (old_sum + std::conj(sample - old_mean) * (sample - running_mean_[i])) in InfiniteStep()
141 running_mean_sq_[i] = sample * std::conj(sample); in DecayStep()
148 decay_ * prev2 + (1.0f - decay_) * sample * std::conj(sample); in DecayStep()
150 running_mean_[i] * std::conj(running_mean_[i])).real(); in DecayStep()
179 (old_sum + std::conj(sample - old_mean) * (sample - mean)).real(); in WindowedStep()
197 AddToMean(data[i] * std::conj(data[i]), count_ + 1, in BlockedStep()
205 std::conj(NewMean(running_mean_[i], sub_running_mean_[i], blocks))) in BlockedStep()
233 sub_running_mean_sq_[i] += data[i] * std::conj(data[i]); in BlockBasedMovingAverage()
259 std::conj(running_mean_[i]) * scale); in BlockBasedMovingAverage()
/external/opencv3/modules/cudaarithm/src/cuda/
Dmul_spectrums.cu80 __device__ __forceinline__ float2 conj(const float2& a) in conj() function
97 return cmul(a, conj(b)); in operator ()()
117 return scale * cmul(a, conj(b)); in operator ()()
/external/eigen/Eigen/src/SparseCholesky/
DSimplicialCholesky_impl.h134 y[i] += numext::conj(it.value()); /* scatter A(i,k) into Y (sum duplicates) */ in factorize_preordered()
166 y[Li[p]] -= numext::conj(Lx[p]) * yi; in factorize_preordered()
167 d -= numext::real(l_ki * numext::conj(yi)); in factorize_preordered()
/external/eigen/unsupported/Eigen/src/FFT/
Dei_kissfft_impl.h324 Complex fpnk = conj(dst[ncfft-k]); in fwd()
329 dst[ncfft-k] = conj(f1k -tw)*Scalar(.5); in fwd()
352 m_tmpBuf1[nfft-k] = conj(m_tmpBuf1[k]); in inv()
365 Complex fnkc = conj(src[ncfft-k]); in inv()
368 Complex fok = tmp * conj(rtw[k-1]); in inv()
370 m_tmpBuf1[ncfft-k] = conj(fek - fok); in inv()
/external/opencv3/modules/core/perf/opencl/
Dperf_dxt.cpp106 const bool conj = get<1>(params); in OCL_PERF_TEST_P() local
111 OCL_TEST_CYCLE() cv::mulSpectrums(src1, src2, dst, 0, conj); in OCL_PERF_TEST_P()
/external/webrtc/webrtc/modules/audio_processing/beamformer/
Dcomplex_matrix.h41 data[i] = conj(data[i]); in PointwiseConjugate()
87 elements[i][j] = conj(src[j][i]); in ConjugateTranspose()
/external/eigen/Eigen/src/Core/
DSelfAdjointView.h219 dst.coeffRef(col, row) = numext::conj(dst.coeffRef(row, col) = src.coeff(row, col));
244 dst.coeffRef(col, row) = numext::conj(dst.coeffRef(row, col) = src.coeff(row, col));
265 dst.coeffRef(j,i) = numext::conj(dst.coeff(i,j));
283 dst.coeffRef(j,i) = numext::conj(dst.coeff(i,j));
DMathFunctions.h206 using std::conj;
207 return conj(x);
593 inline EIGEN_MATHFUNC_RETVAL(conj, Scalar) conj(const Scalar& x)
595 return EIGEN_MATHFUNC_IMPL(conj, Scalar)::run(x);
/external/eigen/Eigen/src/SparseCore/
DSparseDot.h33 res += numext::conj(i.value()) * other.coeff(i.index()); in dot()
67 res += numext::conj(i.value()) * j.value(); in dot()
/external/eigen/Eigen/src/Householder/
DHouseholder.h71 using numext::conj; in makeHouseholder()
91 tau = conj((beta - c0) / beta); in makeHouseholder()
/external/libcxx/test/std/numerics/complex.number/complex.value.ops/
Dconj.pass.cpp23 assert(conj(z) == x); in test()
/external/eigen/Eigen/src/Eigenvalues/
DTridiagonalization.h348 using numext::conj;
368 * (conj(h) * matA.col(i).tail(remainingSize)));
370 …hCoeffs.tail(n-i-1) += (conj(h)*Scalar(-0.5)*(hCoeffs.tail(remainingSize).dot(matA.col(i).tail(rem…
/external/clang/test/CodeGen/
Dcomplex-builtints.c8 extern double _Complex conj (double _Complex);
/external/eigen/Eigen/src/Cholesky/
DLDLT.h301 mat.coeffRef(i,k) = numext::conj(mat.coeffRef(index_of_biggest_in_corner,i));
302 mat.coeffRef(index_of_biggest_in_corner,i) = numext::conj(tmp);
305 …mat.coeffRef(index_of_biggest_in_corner,k) = numext::conj(mat.coeff(index_of_biggest_in_corner,k));
387 mat.col(j).tail(rs) += (sigma*numext::conj(wj)/gamma)*w.tail(rs);

123