HomeSort by relevance Sort by last modified time
    Searched refs:vecs (Results 1 - 25 of 107) sorted by null

1 2 3 4 5

  /system/core/liblog/
uio.c 25 LIBLOG_ABI_PUBLIC int readv(int fd, struct iovec* vecs, int count) {
28 for (; count > 0; count--, vecs++) {
29 char* buf = vecs->iov_base;
30 int len = vecs->iov_len;
49 LIBLOG_ABI_PUBLIC int writev(int fd, const struct iovec* vecs, int count) {
52 for (; count > 0; count--, vecs++) {
53 const char* buf = vecs->iov_base;
54 int len = vecs->iov_len;
  /system/core/liblog/include/log/
uio.h 41 extern int readv(int fd, struct iovec* vecs, int count);
42 extern int writev(int fd, const struct iovec* vecs, int count);
  /external/eigen/Eigen/src/Core/arch/SSE/
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)
    [all...]
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/AltiVec/
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)
    [all...]
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 template<> EIGEN_STRONG_INLINE Packet1cd preduxp<Packet1cd>(const Packet1cd* vecs) { return vecs[0];
    [all...]
  /external/eigen/Eigen/src/Core/arch/AVX512/
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/ZVector/
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)
    [all...]
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/
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])
    [all...]
Complex.h 184 template<> EIGEN_STRONG_INLINE Packet2cf preduxp<Packet2cf>(const Packet2cf* vecs)
188 // Add the first two 64-bit float32x2_t of vecs[0]
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/Eigen/src/Core/arch/AVX/
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)
    [all...]
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)
    [all...]
  /external/libevent/
buffer_iocp.c 254 struct evbuffer_iovec vecs[MAX_WSABUFS]; local
272 vecs, MAX_WSABUFS, &chainp, 1);
276 &vecs[i]);
evbuffer-internal.h 268 * Sets up the one or two iovecs in 'vecs' to point to the free memory and its
270 * Returns the number of vecs used.
273 struct evbuffer_iovec *vecs, int n_vecs, struct evbuffer_chain ***chainp,
  /external/eigen/unsupported/Eigen/src/Eigenvalues/
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, 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)
  /external/eigen/Eigen/src/Householder/
HouseholderSequence.h 245 Index vecs = m_length; local
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/skia/src/ports/
SkScalerContext_win_dw.cpp 425 SkVector vecs[1] = { { advanceX, 0 } }; local
431 vecs[0].fX = SkScalarRoundToScalar(advanceX);
432 fG_inv.mapVectors(vecs, SK_ARRAY_COUNT(vecs));
434 fSkXform.mapVectors(vecs, SK_ARRAY_COUNT(vecs));
437 glyph->fAdvanceX = SkScalarToFloat(vecs[0].fX);
438 glyph->fAdvanceY = SkScalarToFloat(vecs[0].fY);
    [all...]
  /external/opencv/ml/include/
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,
    [all...]
  /development/ndk/platforms/android-9/include/linux/mtd/
mtd.h 119 int (*writev) (struct mtd_info *mtd, const struct kvec *vecs, unsigned long count, loff_t to, size_t *retlen);
  /frameworks/base/graphics/java/android/graphics/
Matrix.java 704 * @param vecs The array [x0, y0, x1, y1, ...] of vectors to transform.
706 public void mapVectors(float[] vecs) {
707 mapVectors(vecs, 0, vecs, 0, vecs.length >> 1);
  /prebuilts/ndk/r10/platforms/android-12/arch-arm/usr/include/linux/mtd/
mtd.h 119 int (*writev) (struct mtd_info *mtd, const struct kvec *vecs, unsigned long count, loff_t to, size_t *retlen);
  /prebuilts/ndk/r10/platforms/android-12/arch-mips/usr/include/linux/mtd/
mtd.h 119 int (*writev) (struct mtd_info *mtd, const struct kvec *vecs, unsigned long count, loff_t to, size_t *retlen);
  /prebuilts/ndk/r10/platforms/android-12/arch-x86/usr/include/linux/mtd/
mtd.h 119 int (*writev) (struct mtd_info *mtd, const struct kvec *vecs, unsigned long count, loff_t to, size_t *retlen);
  /prebuilts/ndk/r10/platforms/android-13/arch-arm/usr/include/linux/mtd/
mtd.h 119 int (*writev) (struct mtd_info *mtd, const struct kvec *vecs, unsigned long count, loff_t to, size_t *retlen);

Completed in 934 milliseconds

1 2 3 4 5