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

1 2 3

  /system/core/libcutils/
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;
  /bionic/linker/
linker_environ.h 31 /* Call this function before anything else. 'vecs' must be the pointer
35 extern unsigned* linker_env_init(unsigned* vecs);
linker_environ.c 71 linker_env_init(unsigned* vecs)
74 _envp = (char**) vecs;
77 while (vecs[0] != 0)
78 vecs++;
80 vecs++;
98 return vecs;
  /system/core/include/cutils/
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/quake/quake/src/QW/client/
gl_warp.c 130 s = DotProduct (verts, warpface->texinfo->vecs[0]);
131 t = DotProduct (verts, warpface->texinfo->vecs[1]);
720 void DrawSkyPolygon (int nump, vec3_t vecs)
731 for (i=0 ; i<nump ; i++, vecs+=3)
733 VectorAdd(vecs, r_origin, v);
741 for (i=0, vp=vecs ; i<nump ; i++, vp+=3)
771 for (i=0 ; i<nump ; i++, vecs+=3)
775 dv = vecs[j - 1];
777 dv = -vecs[-j - 1];
781 s = -vecs[-j -1] / dv
    [all...]
d_edge.c 135 TransformVector (pface->texinfo->vecs[0], p_saxis);
136 TransformVector (pface->texinfo->vecs[1], p_taxis);
156 + pface->texinfo->vecs[0][3]*t;
159 + pface->texinfo->vecs[1][3]*t;
r_light.c 193 s = DotProduct (mid, tex->vecs[0]) + tex->vecs[0][3];
194 t = DotProduct (mid, tex->vecs[1]) + tex->vecs[1][3];;
gl_rlight.c 321 s = DotProduct (mid, tex->vecs[0]) + tex->vecs[0][3];
322 t = DotProduct (mid, tex->vecs[1]) + tex->vecs[1][3];;
gl_rsurf.c 103 local[0] = DotProduct (impact, tex->vecs[0]) + tex->vecs[0][3];
104 local[1] = DotProduct (impact, tex->vecs[1]) + tex->vecs[1][3];
1521 s = DotProduct (vec, fa->texinfo->vecs[0]) + fa->texinfo->vecs[0][3];
1524 t = DotProduct (vec, fa->texinfo->vecs[1]) + fa->texinfo->vecs[1][3];
1534 s = DotProduct (vec, fa->texinfo->vecs[0]) + fa->texinfo->vecs[0][3]
    [all...]
bspfile.h 161 float vecs[2][4]; // [s/t][xyz offset] member in struct:texinfo_s
r_surf.c 98 local[0] = DotProduct (impact, tex->vecs[0]) + tex->vecs[0][3];
99 local[1] = DotProduct (impact, tex->vecs[1]) + tex->vecs[1][3];
model.h 107 float vecs[2][4]; member in struct:__anon10232
  /external/quake/quake/src/WinQuake/
gl_warp.cpp 130 s = DotProduct (verts, warpface->texinfo->vecs[0]);
131 t = DotProduct (verts, warpface->texinfo->vecs[1]);
769 void DrawSkyPolygon (int nump, vec3_t vecs)
780 for (i=0 ; i<nump ; i++, vecs+=3)
782 VectorAdd(vecs, r_origin, v);
790 for (i=0, vp=vecs ; i<nump ; i++, vp+=3)
820 for (i=0 ; i<nump ; i++, vecs+=3)
824 dv = vecs[j - 1];
826 dv = -vecs[-j - 1];
830 s = -vecs[-j -1] / dv
    [all...]
d_edge.cpp 135 TransformVector (pface->texinfo->vecs[0], p_saxis);
136 TransformVector (pface->texinfo->vecs[1], p_taxis);
156 + pface->texinfo->vecs[0][3]*t;
159 + pface->texinfo->vecs[1][3]*t;
r_light.cpp 193 s = DotProduct (mid, tex->vecs[0]) + tex->vecs[0][3];
194 t = DotProduct (mid, tex->vecs[1]) + tex->vecs[1][3];;
gl_rlight.cpp 324 s = (int) (DotProduct (mid, tex->vecs[0]) + tex->vecs[0][3]);
325 t = (int) (DotProduct (mid, tex->vecs[1]) + tex->vecs[1][3]);
r_surf.cpp 98 local[0] = DotProduct (impact, tex->vecs[0]) + tex->vecs[0][3];
99 local[1] = DotProduct (impact, tex->vecs[1]) + tex->vecs[1][3];
gl_rsurf.cpp 103 local[0] = DotProduct (impact, tex->vecs[0]) + tex->vecs[0][3];
104 local[1] = DotProduct (impact, tex->vecs[1]) + tex->vecs[1][3];
    [all...]
  /external/quake/quake/src/QW/server/
model.c 588 out->vecs[0][j] = LittleFloat (in->vecs[0][j]);
589 len1 = Length (in->vecs[0]);
590 len2 = Length (in->vecs[1]);
593 out->vecs[0][j] = LittleFloat (in->vecs[0][j]);
594 out->vecs[1][j] = LittleFloat (in->vecs[1][j]);
596 len1 = Length (out->vecs[0]);
597 len2 = Length (out->vecs[1])
    [all...]
  /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/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/skia/include/core/
SkMatrix.h 371 @param vecs The vectors to be transformed. It must contain at least
373 @param count The number of vectors in vecs.
375 void mapVectors(SkVector vecs[], int count) const {
376 this->mapVectors(vecs, vecs, count);
  /bionic/libc/kernel/common/linux/mtd/
mtd.h 119 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);

Completed in 6485 milliseconds

1 2 3