Searched defs:vecs (Results 1 - 24 of 24) sorted by relevance

/external/eigen/Eigen/src/Core/arch/SSE/
H A DComplex.h134 template<> EIGEN_STRONG_INLINE Packet2cf preduxp<Packet2cf>(const Packet2cf* vecs) argument
136 return Packet2cf(_mm_add_ps(_mm_movelh_ps(vecs[0].v,vecs[1].v), _mm_movehl_ps(vecs[1].v,vecs[0].v)));
333 template<> EIGEN_STRONG_INLINE Packet1cd preduxp<Packet1cd>(const Packet1cd* vecs) argument
335 return vecs[0];
H A DPacketMath.h446 EIGEN_STRONG_INLINE void punpackp(Packet4f* vecs) argument
448 vecs[1] = _mm_castsi128_ps(_mm_shuffle_epi32(_mm_castps_si128(vecs[0]), 0x55));
449 vecs[2] = _mm_castsi128_ps(_mm_shuffle_epi32(_mm_castps_si128(vecs[0]), 0xAA));
450 vecs[3] = _mm_castsi128_ps(_mm_shuffle_epi32(_mm_castps_si128(vecs[0]), 0xFF));
451 vecs[0] = _mm_castsi128_ps(_mm_shuffle_epi32(_mm_castps_si128(vecs[0]), 0x00));
456 template<> EIGEN_STRONG_INLINE Packet4f preduxp<Packet4f>(const Packet4f* vecs) argument
460 preduxp(const Packet2d* vecs) argument
496 preduxp(const Packet4f* vecs) argument
510 preduxp(const Packet2d* vecs) argument
522 preduxp(const Packet4i* vecs) argument
[all...]
/external/eigen/Eigen/src/Householder/
H A DHouseholderSequence.h239 Index vecs = m_length; local
246 for(Index k = vecs-1; k >= 0; --k)
260 for(Index k = 0; k<cols()-vecs ; ++k)
266 for(Index k = vecs-1; k >= 0; --k)
/external/libevent/
H A Dbuffer_iocp.c254 struct evbuffer_iovec vecs[MAX_WSABUFS]; local
272 vecs, MAX_WSABUFS, &chainp, 1);
276 &vecs[i]);
H A Dbuffer.c708 /* pass 1: make sure that the pointers and lengths of vecs[] are in
2024 @param vecs An array of two or more iovecs or WSABUFs.
2025 @param n_vecs_avail The length of vecs
2034 struct evbuffer_iovec *vecs, int n_vecs_avail,
2058 vecs[i].iov_base = CHAIN_SPACE_PTR(chain);
2059 vecs[i].iov_len = avail;
2123 IOV_TYPE vecs[NUM_READ_IOVEC]; local
2125 nvecs = _evbuffer_read_setup_vecs(buf, howmuch, vecs,
2135 WSABUF_FROM_EVBUFFER_IOV(&vecs[i], &ev_vecs[i]);
2142 if (WSARecv(fd, vecs, nvec
2033 _evbuffer_read_setup_vecs(struct evbuffer *buf, ev_ssize_t howmuch, struct evbuffer_iovec *vecs, int n_vecs_avail, struct evbuffer_chain ***chainp, int exact) argument
[all...]
/external/eigen/Eigen/src/Core/arch/AltiVec/
H A DComplex.h133 template<> EIGEN_STRONG_INLINE Packet2cf preduxp<Packet2cf>(const Packet2cf* vecs) argument
137 b1 = (Packet4f) vec_sld(vecs[0].v, vecs[1].v, 8);
138 b2 = (Packet4f) vec_sld(vecs[1].v, vecs[0].v, 8);
H A DPacketMath.h363 template<> EIGEN_STRONG_INLINE Packet4f preduxp<Packet4f>(const Packet4f* vecs) argument
370 v[0] = vec_mergeh(vecs[0], vecs[2]);
371 v[1] = vec_mergel(vecs[0], vecs[2]);
372 v[2] = vec_mergeh(vecs[1], vecs[3]);
373 v[3] = vec_mergel(vecs[1], vecs[3]);
399 template<> EIGEN_STRONG_INLINE Packet4i preduxp<Packet4i>(const Packet4i* vecs) argument
[all...]
/external/eigen/Eigen/src/Core/arch/NEON/
H A DComplex.h152 template<> EIGEN_STRONG_INLINE Packet2cf preduxp<Packet2cf>(const Packet2cf* vecs) argument
156 // Add the first two 64-bit float32x2_t of vecs[0]
157 sum1 = vcombine_f32(vget_low_f32(vecs[0].v), vget_low_f32(vecs[1].v));
158 sum2 = vcombine_f32(vget_high_f32(vecs[0].v), vget_high_f32(vecs[1].v));
H A DPacketMath.h260 template<> EIGEN_STRONG_INLINE Packet4f preduxp<Packet4f>(const Packet4f* vecs) argument
267 vtrn1 = vzipq_f32(vecs[0], vecs[2]);
268 vtrn2 = vzipq_f32(vecs[1], vecs[3]);
291 template<> EIGEN_STRONG_INLINE Packet4i preduxp<Packet4i>(const Packet4i* vecs) argument
298 vtrn1 = vzipq_s32(vecs[0], vecs[2]);
299 vtrn2 = vzipq_s32(vecs[1], vecs[
[all...]
/external/eigen/unsupported/Eigen/src/Eigenvalues/
H A DArpackSelfAdjointEigenSolver.h750 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) argument
779 Matrix<Scalar, Dynamic, Dynamic>::Map(vecs, n, k) = OP.matrixU().solve(Matrix<Scalar, Dynamic, Dynamic>::Map(vecs, n, k));
780 Matrix<Scalar, Dynamic, Dynamic>::Map(vecs, n, k) = OP.permutationPinv() * Matrix<Scalar, Dynamic, Dynamic>::Map(vecs, n, k);
793 static inline void project(MatrixSolver &OP, int n, int k, Scalar *vecs) argument
/external/eigen/Eigen/src/Core/
H A DGenericPacketMath.h197 preduxp(const Packet* vecs) { return vecs[0]; } argument
/external/skia/src/ports/
H A DSkScalerContext_win_dw.cpp379 SkVector vecs[1] = { { advanceX, 0 } }; local
385 vecs[0].fX = SkScalarRoundToScalar(advanceX);
386 fG_inv.mapVectors(vecs, SK_ARRAY_COUNT(vecs));
388 fSkXform.mapVectors(vecs, SK_ARRAY_COUNT(vecs));
391 glyph->fAdvanceX = SkScalarToFixed(vecs[0].fX);
392 glyph->fAdvanceY = SkScalarToFixed(vecs[0].fY);
/external/skia/include/core/
H A DSkMatrix.h514 @param vecs The vectors to be transformed. It must contain at least
516 @param count The number of vectors in vecs.
518 void mapVectors(SkVector vecs[], int count) const { argument
519 this->mapVectors(vecs, vecs, count);
/external/opencv/ml/src/
H A Dmlann_mlp.cpp566 void CvANN_MLP::calc_input_scale( const CvVectors* vecs, int flags ) argument
571 int count = vecs->count;
576 int type = vecs->type;
587 const float* f = vecs->data.fl[i];
588 const double* d = vecs->data.db[i];
608 void CvANN_MLP::calc_output_scale( const CvVectors* vecs, int flags )
611 int type = vecs->type;
618 int count = vecs->count;
640 const float* f = vecs->data.fl[i];
641 const double* d = vecs
[all...]
H A Dmlsvm.cpp231 void CvSVMKernel::calc_non_rbf_base( int vcount, int var_count, const float** vecs, argument
238 const float* sample = vecs[j];
250 void CvSVMKernel::calc_linear( int vcount, int var_count, const float** vecs, argument
253 calc_non_rbf_base( vcount, var_count, vecs, another, results, 1, 0 );
257 void CvSVMKernel::calc_poly( int vcount, int var_count, const float** vecs, argument
261 calc_non_rbf_base( vcount, var_count, vecs, another, results, params->gamma, params->coef0 );
266 void CvSVMKernel::calc_sigmoid( int vcount, int var_count, const float** vecs, argument
270 calc_non_rbf_base( vcount, var_count, vecs, another, results,
285 void CvSVMKernel::calc_rbf( int vcount, int var_count, const float** vecs, argument
294 const float* sample = vecs[
322 calc( int vcount, int var_count, const float** vecs, const float* another, Qfloat* results ) argument
[all...]
/external/opencv3/modules/core/src/
H A Dmatrix.cpp5346 Vec2f vecs[2]; local
5347 vecs[0] = Vec2f(_point1 - _point2);
5348 vecs[1] = Vec2f(_point2 - _point3);
5350 CV_Assert( abs(vecs[0].dot(vecs[1])) / (norm(vecs[0]) * norm(vecs[1])) <= FLT_EPSILON );
5355 if( abs(vecs[1][1]) < abs(vecs[1][0]) ) wd_i = 1;
5358 float _angle = atan(vecs[wd_
[all...]
/external/opencv3/modules/ml/src/
H A Dsvm.cpp165 void calc_non_rbf_base( int vcount, int var_count, const float* vecs, argument
172 const float* sample = &vecs[j*var_count];
183 void calc_linear( int vcount, int var_count, const float* vecs, argument
186 calc_non_rbf_base( vcount, var_count, vecs, another, results, 1, 0 );
189 void calc_poly( int vcount, int var_count, const float* vecs, argument
193 calc_non_rbf_base( vcount, var_count, vecs, another, results, params.gamma, params.coef0 );
198 void calc_sigmoid( int vcount, int var_count, const float* vecs, argument
202 calc_non_rbf_base( vcount, var_count, vecs, another, results,
217 void calc_rbf( int vcount, int var_count, const float* vecs, argument
225 const float* sample = &vecs[
257 calc_intersec( int vcount, int var_count, const float* vecs, const float* another, Qfloat* results ) argument
275 calc_chi2( int vcount, int var_count, const float* vecs, const float* another, Qfloat* results ) argument
302 calc( int vcount, int var_count, const float* vecs, const float* another, Qfloat* results ) argument
[all...]
/external/robolectric/v1/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/robolectric/v3/runtime/
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 372 milliseconds