/external/eigen/Eigen/src/Core/arch/SSE/ |
D | PacketMath.h | 494 EIGEN_STRONG_INLINE void punpackp(Packet4f* vecs) 496 vecs[1] = _mm_castsi128_ps(_mm_shuffle_epi32(_mm_castps_si128(vecs[0]), 0x55)); 497 vecs[2] = _mm_castsi128_ps(_mm_shuffle_epi32(_mm_castps_si128(vecs[0]), 0xAA)); 498 vecs[3] = _mm_castsi128_ps(_mm_shuffle_epi32(_mm_castps_si128(vecs[0]), 0xFF)); 499 vecs[0] = _mm_castsi128_ps(_mm_shuffle_epi32(_mm_castps_si128(vecs[0]), 0x00)); 503 template<> EIGEN_STRONG_INLINE Packet4f preduxp<Packet4f>(const Packet4f* vecs) 505 return _mm_hadd_ps(_mm_hadd_ps(vecs[0], vecs[1]),_mm_hadd_ps(vecs[2], vecs[3])); 508 template<> EIGEN_STRONG_INLINE Packet2d preduxp<Packet2d>(const Packet2d* vecs) 510 return _mm_hadd_pd(vecs[0], vecs[1]); 514 template<> EIGEN_STRONG_INLINE Packet4f preduxp<Packet4f>(const Packet4f* vecs) [all …]
|
D | Complex.h | 155 template<> EIGEN_STRONG_INLINE Packet2cf preduxp<Packet2cf>(const Packet2cf* vecs) 157 …return Packet2cf(_mm_add_ps(_mm_movelh_ps(vecs[0].v,vecs[1].v), _mm_movehl_ps(vecs[1].v,vecs[0].v)… 359 template<> EIGEN_STRONG_INLINE Packet1cd preduxp<Packet1cd>(const Packet1cd* vecs) 361 return vecs[0];
|
/external/eigen/Eigen/src/Core/arch/AVX512/ |
D | PacketMath.h | 687 vecs) 689 EIGEN_EXTRACT_8f_FROM_16f(vecs[0], vecs0); 690 EIGEN_EXTRACT_8f_FROM_16f(vecs[1], vecs1); 691 EIGEN_EXTRACT_8f_FROM_16f(vecs[2], vecs2); 692 EIGEN_EXTRACT_8f_FROM_16f(vecs[3], vecs3); 693 EIGEN_EXTRACT_8f_FROM_16f(vecs[4], vecs4); 694 EIGEN_EXTRACT_8f_FROM_16f(vecs[5], vecs5); 695 EIGEN_EXTRACT_8f_FROM_16f(vecs[6], vecs6); 696 EIGEN_EXTRACT_8f_FROM_16f(vecs[7], vecs7); 697 EIGEN_EXTRACT_8f_FROM_16f(vecs[8], vecs8); [all …]
|
/external/eigen/Eigen/src/Core/arch/AltiVec/ |
D | PacketMath.h | 543 template<> EIGEN_STRONG_INLINE Packet4f preduxp<Packet4f>(const Packet4f* vecs) 550 v[0] = vec_mergeh(vecs[0], vecs[2]); 551 v[1] = vec_mergel(vecs[0], vecs[2]); 552 v[2] = vec_mergeh(vecs[1], vecs[3]); 553 v[3] = vec_mergel(vecs[1], vecs[3]); 583 template<> EIGEN_STRONG_INLINE Packet4i preduxp<Packet4i>(const Packet4i* vecs) 590 v[0] = vec_mergeh(vecs[0], vecs[2]); 591 v[1] = vec_mergel(vecs[0], vecs[2]); 592 v[2] = vec_mergeh(vecs[1], vecs[3]); 593 v[3] = vec_mergel(vecs[1], vecs[3]); [all …]
|
D | Complex.h | 152 template<> EIGEN_STRONG_INLINE Packet2cf preduxp<Packet2cf>(const Packet2cf* vecs) 156 b1 = vec_sld(vecs[0].v, vecs[1].v, 8); 157 b2 = vec_sld(vecs[1].v, vecs[0].v, 8); 159 b1 = vec_sld(vecs[1].v, vecs[0].v, 8); 160 b2 = vec_sld(vecs[0].v, vecs[1].v, 8); 373 … EIGEN_STRONG_INLINE Packet1cd preduxp<Packet1cd>(const Packet1cd* vecs) { return vecs[0]; }
|
/external/eigen/Eigen/src/Core/arch/AVX/ |
D | Complex.h | 143 template<> EIGEN_STRONG_INLINE Packet4cf preduxp<Packet4cf>(const Packet4cf* vecs) 145 Packet8f t0 = _mm256_shuffle_ps(vecs[0].v, vecs[0].v, _MM_SHUFFLE(3, 1, 2 ,0)); 146 Packet8f t1 = _mm256_shuffle_ps(vecs[1].v, vecs[1].v, _MM_SHUFFLE(3, 1, 2 ,0)); 148 Packet8f t2 = _mm256_shuffle_ps(vecs[2].v, vecs[2].v, _MM_SHUFFLE(3, 1, 2 ,0)); 149 Packet8f t3 = _mm256_shuffle_ps(vecs[3].v, vecs[3].v, _MM_SHUFFLE(3, 1, 2 ,0)); 346 template<> EIGEN_STRONG_INLINE Packet2cd preduxp<Packet2cd>(const Packet2cd* vecs) 348 Packet4d t0 = _mm256_permute2f128_pd(vecs[0].v,vecs[1].v, 0 + (2<<4)); 349 Packet4d t1 = _mm256_permute2f128_pd(vecs[0].v,vecs[1].v, 1 + (3<<4));
|
D | PacketMath.h | 355 template<> EIGEN_STRONG_INLINE Packet8f preduxp<Packet8f>(const Packet8f* vecs) 357 __m256 hsum1 = _mm256_hadd_ps(vecs[0], vecs[1]); 358 __m256 hsum2 = _mm256_hadd_ps(vecs[2], vecs[3]); 359 __m256 hsum3 = _mm256_hadd_ps(vecs[4], vecs[5]); 360 __m256 hsum4 = _mm256_hadd_ps(vecs[6], vecs[7]); 383 template<> EIGEN_STRONG_INLINE Packet4d preduxp<Packet4d>(const Packet4d* vecs) 387 tmp0 = _mm256_hadd_pd(vecs[0], vecs[1]); 390 tmp1 = _mm256_hadd_pd(vecs[2], vecs[3]);
|
/external/eigen/Eigen/src/Core/arch/ZVector/ |
D | PacketMath.h | 741 template<> EIGEN_STRONG_INLINE Packet4i preduxp<Packet4i>(const Packet4i* vecs) 748 v[0] = vec_mergeh(vecs[0], vecs[2]); 749 v[1] = vec_mergel(vecs[0], vecs[2]); 750 v[2] = vec_mergeh(vecs[1], vecs[3]); 751 v[3] = vec_mergel(vecs[1], vecs[3]); 769 template<> EIGEN_STRONG_INLINE Packet2d preduxp<Packet2d>(const Packet2d* vecs) 772 …] = padd<Packet2d>(vecs[0], reinterpret_cast<Packet2d>(vec_sld(reinterpret_cast<Packet4ui>(vecs[0]… 773 …] = padd<Packet2d>(vecs[1], reinterpret_cast<Packet2d>(vec_sld(reinterpret_cast<Packet4ui>(vecs[1]… 780 template<> EIGEN_STRONG_INLINE Packet4f preduxp<Packet4f>(const Packet4f* vecs) 783 transpose.packet[0] = vecs[0]; [all …]
|
D | Complex.h | 225 template<> EIGEN_STRONG_INLINE Packet1cd preduxp<Packet1cd>(const Packet1cd* vecs) 227 return vecs[0]; 229 template<> EIGEN_STRONG_INLINE Packet2cf preduxp<Packet2cf>(const Packet2cf* vecs) 232 transpose.packet[0] = vecs[0]; 233 transpose.packet[1] = vecs[1];
|
/external/eigen/Eigen/src/Core/arch/NEON/ |
D | PacketMath.h | 344 template<> EIGEN_STRONG_INLINE Packet4f preduxp<Packet4f>(const Packet4f* vecs) 351 vtrn1 = vzipq_f32(vecs[0], vecs[2]); 352 vtrn2 = vzipq_f32(vecs[1], vecs[3]); 375 template<> EIGEN_STRONG_INLINE Packet4i preduxp<Packet4i>(const Packet4i* vecs) 382 vtrn1 = vzipq_s32(vecs[0], vecs[2]); 383 vtrn2 = vzipq_s32(vecs[1], vecs[3]); 669 template<> EIGEN_STRONG_INLINE Packet2d preduxp<Packet2d>(const Packet2d* vecs) 675 trn1 = vzip1q_f64(vecs[0], vecs[1]); 676 trn2 = vzip2q_f64(vecs[0], vecs[1]);
|
D | Complex.h | 184 template<> EIGEN_STRONG_INLINE Packet2cf preduxp<Packet2cf>(const Packet2cf* vecs) 189 sum1 = vcombine_f32(vget_low_f32(vecs[0].v), vget_low_f32(vecs[1].v)); 190 sum2 = vcombine_f32(vget_high_f32(vecs[0].v), vget_high_f32(vecs[1].v)); 412 template<> EIGEN_STRONG_INLINE Packet1cd preduxp<Packet1cd>(const Packet1cd* vecs) { return vecs[0]…
|
/external/eigen/unsupported/Eigen/src/Eigenvalues/ |
D | ArpackSelfAdjointEigenSolver.h | 750 static inline void project(MatrixSolver &OP, int n, int k, Scalar *vecs); 775 static inline void project(MatrixSolver &OP, int n, int k, Scalar *vecs) 779 …Matrix<Scalar, Dynamic, Dynamic>::Map(vecs, n, k) = OP.matrixU().solve(Matrix<Scalar, Dynamic, Dyn… 780 …atrix<Scalar, Dynamic, Dynamic>::Map(vecs, n, k) = OP.permutationPinv() * Matrix<Scalar, Dynamic, … 793 static inline void project(MatrixSolver &OP, int n, int k, Scalar *vecs)
|
/external/libevent/ |
D | buffer_iocp.c | 254 struct evbuffer_iovec vecs[MAX_WSABUFS]; in evbuffer_launch_read() local 272 vecs, MAX_WSABUFS, &chainp, 1); in evbuffer_launch_read() 276 &vecs[i]); in evbuffer_launch_read()
|
D | evbuffer-internal.h | 273 struct evbuffer_iovec *vecs, int n_vecs, struct evbuffer_chain ***chainp,
|
D | buffer.c | 2034 struct evbuffer_iovec *vecs, int n_vecs_avail, in _evbuffer_read_setup_vecs() argument 2058 vecs[i].iov_base = CHAIN_SPACE_PTR(chain); in _evbuffer_read_setup_vecs() 2059 vecs[i].iov_len = avail; in _evbuffer_read_setup_vecs() 2123 IOV_TYPE vecs[NUM_READ_IOVEC]; in evbuffer_read() local 2125 nvecs = _evbuffer_read_setup_vecs(buf, howmuch, vecs, in evbuffer_read() 2135 WSABUF_FROM_EVBUFFER_IOV(&vecs[i], &ev_vecs[i]); in evbuffer_read() 2142 if (WSARecv(fd, vecs, nvecs, &bytesRead, &flags, NULL, NULL)) { in evbuffer_read() 2153 n = readv(fd, vecs, nvecs); in evbuffer_read()
|
/external/skia/src/ports/ |
D | SkScalerContext_win_dw.cpp | 425 SkVector vecs[1] = { { advanceX, 0 } }; in generateAdvance() local 431 vecs[0].fX = SkScalarRoundToScalar(advanceX); in generateAdvance() 432 fG_inv.mapVectors(vecs, SK_ARRAY_COUNT(vecs)); in generateAdvance() 434 fSkXform.mapVectors(vecs, SK_ARRAY_COUNT(vecs)); in generateAdvance() 437 glyph->fAdvanceX = SkScalarToFloat(vecs[0].fX); in generateAdvance() 438 glyph->fAdvanceY = SkScalarToFloat(vecs[0].fY); in generateAdvance()
|
/external/eigen/Eigen/src/Householder/ |
D | HouseholderSequence.h | 245 Index vecs = m_length; 251 for(Index k = vecs-1; k >= 0; --k) 265 for(Index k = 0; k<cols()-vecs ; ++k) 271 for(Index k = vecs-1; k >= 0; --k)
|
/external/opencv/ml/include/ |
D | ml.h | 343 typedef void (CvSVMKernel::*Calc)( int vec_count, int vec_size, const float** vecs, 351 … virtual void calc( int vcount, int n, const float** vecs, const float* another, float* results ); 356 virtual void calc_non_rbf_base( int vec_count, int vec_size, const float** vecs, 360 virtual void calc_linear( int vec_count, int vec_size, const float** vecs, 362 virtual void calc_rbf( int vec_count, int vec_size, const float** vecs, 364 virtual void calc_poly( int vec_count, int vec_size, const float** vecs, 366 virtual void calc_sigmoid( int vec_count, int vec_size, const float** vecs, 1226 virtual void calc_input_scale( const CvVectors* vecs, int flags ); 1227 virtual void calc_output_scale( const CvVectors* vecs, int flags );
|
/external/opencv/ml/src/ |
D | mlann_mlp.cpp | 566 void CvANN_MLP::calc_input_scale( const CvVectors* vecs, int flags ) in calc_input_scale() argument 571 int count = vecs->count; in calc_input_scale() 576 int type = vecs->type; in calc_input_scale() 587 const float* f = vecs->data.fl[i]; in calc_input_scale() 588 const double* d = vecs->data.db[i]; in calc_input_scale() 608 void CvANN_MLP::calc_output_scale( const CvVectors* vecs, int flags ) in calc_output_scale() argument 611 int type = vecs->type; in calc_output_scale() 618 int count = vecs->count; in calc_output_scale() 640 const float* f = vecs->data.fl[i]; in calc_output_scale() 641 const double* d = vecs->data.db[i]; in calc_output_scale()
|
D | mlsvm.cpp | 231 void CvSVMKernel::calc_non_rbf_base( int vcount, int var_count, const float** vecs, in calc_non_rbf_base() argument 238 const float* sample = vecs[j]; in calc_non_rbf_base() 250 void CvSVMKernel::calc_linear( int vcount, int var_count, const float** vecs, in calc_linear() argument 253 calc_non_rbf_base( vcount, var_count, vecs, another, results, 1, 0 ); in calc_linear() 257 void CvSVMKernel::calc_poly( int vcount, int var_count, const float** vecs, in calc_poly() argument 261 calc_non_rbf_base( vcount, var_count, vecs, another, results, params->gamma, params->coef0 ); in calc_poly() 266 void CvSVMKernel::calc_sigmoid( int vcount, int var_count, const float** vecs, in calc_sigmoid() argument 270 calc_non_rbf_base( vcount, var_count, vecs, another, results, in calc_sigmoid() 285 void CvSVMKernel::calc_rbf( int vcount, int var_count, const float** vecs, in calc_rbf() argument 294 const float* sample = vecs[j]; in calc_rbf() [all …]
|
/external/skia/include/core/ |
D | SkMatrix.h | 519 void mapVectors(SkVector vecs[], int count) const { in mapVectors() argument 520 this->mapVectors(vecs, vecs, count); in mapVectors()
|
/external/eigen/Eigen/src/Core/ |
D | GenericPacketMath.h | 320 preduxp(const Packet* vecs) { return vecs[0]; }
|
/external/robolectric/v1/lib/main/ |
D | android.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/android/
com/ ... |
/external/robolectric/v3/runtime/ |
D | android-all-4.1.2_r1-robolectric-0.jar | META-INF/
META-INF/MANIFEST.MF
android/
android/accessibilityservice/
android/ ... |
D | android-all-4.2.2_r1.2-robolectric-0.jar | META-INF/
META-INF/MANIFEST.MF
android/
android/accessibilityservice/
android/ ... |