/system/core/liblog/ |
uio.c | 22 int readv( int fd, struct iovec* vecs, int count ) 26 for ( ; count > 0; count--, vecs++ ) { 27 const char* buf = vecs->iov_base; 28 int len = vecs->iov_len; 49 int writev( int fd, const struct iovec* vecs, int count ) 53 for ( ; count > 0; count--, vecs++ ) { 54 const char* buf = (const char*)vecs->iov_base; 55 int len = (int)vecs->iov_len;
|
/system/core/include/log/ |
uio.h | 38 extern int readv( int fd, struct iovec* vecs, int count ); 39 extern int writev( int fd, const struct iovec* vecs, int count );
|
/external/eigen/Eigen/src/Core/arch/SSE/ |
PacketMath.h | 366 EIGEN_STRONG_INLINE void punpackp(Packet4f* vecs) 368 vecs[1] = _mm_castsi128_ps(_mm_shuffle_epi32(_mm_castps_si128(vecs[0]), 0x55)); 369 vecs[2] = _mm_castsi128_ps(_mm_shuffle_epi32(_mm_castps_si128(vecs[0]), 0xAA)); 370 vecs[3] = _mm_castsi128_ps(_mm_shuffle_epi32(_mm_castps_si128(vecs[0]), 0xFF)); 371 vecs[0] = _mm_castsi128_ps(_mm_shuffle_epi32(_mm_castps_si128(vecs[0]), 0x00)); 376 template<> EIGEN_STRONG_INLINE Packet4f preduxp<Packet4f>(const Packet4f* vecs) [all...] |
Complex.h | 128 template<> EIGEN_STRONG_INLINE Packet2cf preduxp<Packet2cf>(const Packet2cf* vecs) 130 return Packet2cf(_mm_add_ps(_mm_movelh_ps(vecs[0].v,vecs[1].v), _mm_movehl_ps(vecs[1].v,vecs[0].v))); 327 template<> EIGEN_STRONG_INLINE Packet1cd preduxp<Packet1cd>(const Packet1cd* vecs) 329 return vecs[0];
|
/external/eigen/Eigen/src/Core/arch/AltiVec/ |
PacketMath.h | 360 template<> EIGEN_STRONG_INLINE Packet4f preduxp<Packet4f>(const Packet4f* vecs) 367 v[0] = vec_mergeh(vecs[0], vecs[2]); 368 v[1] = vec_mergel(vecs[0], vecs[2]); 369 v[2] = vec_mergeh(vecs[1], vecs[3]); 370 v[3] = vec_mergel(vecs[1], vecs[3]); 396 template<> EIGEN_STRONG_INLINE Packet4i preduxp<Packet4i>(const Packet4i* vecs) [all...] |
Complex.h | 133 template<> EIGEN_STRONG_INLINE Packet2cf preduxp<Packet2cf>(const Packet2cf* vecs) 137 b1 = (Packet4f) vec_sld(vecs[0].v, vecs[1].v, 8); 138 b2 = (Packet4f) vec_sld(vecs[1].v, vecs[0].v, 8);
|
/external/eigen/Eigen/src/Core/arch/NEON/ |
PacketMath.h | 251 template<> EIGEN_STRONG_INLINE Packet4f preduxp<Packet4f>(const Packet4f* vecs) 258 vtrn1 = vzipq_f32(vecs[0], vecs[2]); 259 vtrn2 = vzipq_f32(vecs[1], vecs[3]); 285 template<> EIGEN_STRONG_INLINE Packet4i preduxp<Packet4i>(const Packet4i* vecs) 292 vtrn1 = vzipq_s32(vecs[0], vecs[2]); 293 vtrn2 = vzipq_s32(vecs[1], vecs[3]) [all...] |
Complex.h | 155 template<> EIGEN_STRONG_INLINE Packet2cf preduxp<Packet2cf>(const Packet2cf* vecs) 159 // Add the first two 64-bit float32x2_t of vecs[0] 160 sum1 = vcombine_f32(vget_low_f32(vecs[0].v), vget_low_f32(vecs[1].v)); 161 sum2 = vcombine_f32(vget_high_f32(vecs[0].v), vget_high_f32(vecs[1].v));
|
/external/kernel-headers/original/linux/mtd/ |
mtd.h | 184 int (*writev) (struct mtd_info *mtd, const struct kvec *vecs, unsigned long count, loff_t to, size_t *retlen); 233 int default_mtd_writev(struct mtd_info *mtd, const struct kvec *vecs, 236 int default_mtd_readv(struct mtd_info *mtd, struct kvec *vecs,
|
/external/eigen/Eigen/src/Householder/ |
HouseholderSequence.h | 239 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/yaffs2/yaffs2/mtdemul/ |
nandemul2k.c | 294 static int nand_writev (struct mtd_info *mtd, const struct kvec *vecs, 297 static int nand_writev (struct mtd_info *mtd, const struct iovec *vecs, 519 static int nand_writev (struct mtd_info *mtd, const struct kvec *vecs, 522 static int nand_writev (struct mtd_info *mtd, const struct iovec *vecs,
|
/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...] |
/external/chromium_org/third_party/skia/include/core/ |
SkMatrix.h | 459 @param vecs The vectors to be transformed. It must contain at least 461 @param count The number of vectors in vecs. 463 void mapVectors(SkVector vecs[], int count) const { 464 this->mapVectors(vecs, vecs, count);
|
/external/skia/include/core/ |
SkMatrix.h | 459 @param vecs The vectors to be transformed. It must contain at least 461 @param count The number of vectors in vecs. 463 void mapVectors(SkVector vecs[], int count) const { 464 this->mapVectors(vecs, vecs, count);
|
/bionic/libc/kernel/common/linux/mtd/ |
mtd.h | 121 int (*writev) (struct mtd_info *mtd, const struct kvec *vecs, unsigned long count, loff_t to, size_t *retlen);
|
/development/ndk/platforms/android-3/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 | 681 * @param vecs The array [x0, y0, x1, y1, ...] of vectors to transform. 683 public void mapVectors(float[] vecs) { 684 mapVectors(vecs, 0, vecs, 0, vecs.length >> 1);
|
/prebuilts/ndk/4/platforms/android-3/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/4/platforms/android-4/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/4/platforms/android-5/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/4/platforms/android-5/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/4/platforms/android-8/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/4/platforms/android-8/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/5/platforms/android-3/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/6/platforms/android-3/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);
|