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

1 2

  /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;
  /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:__anon6583
  /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...]
bspfile.h 174 float vecs[2][4]; // [s/t][xyz offset] member in struct:texinfo_s
  /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/skia/include/core/
SkMatrix.h 338 @param vecs The vectors to be transformed. It must contain at least
340 @param count The number of vectors in vecs.
342 void mapVectors(SkVector vecs[], int count) const {
343 this->mapVectors(vecs, vecs, count);
  /bionic/linker/
linker.c 2110 unsigned *vecs = (unsigned*) (argv + argc + 1); local
    [all...]
  /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,
  /frameworks/base/graphics/java/android/graphics/
Matrix.java 478 * @param vecs The array [x0, y0, x1, y1, ...] of vectors to transform.
480 public void mapVectors(float[] vecs) {
481 mapVectors(vecs, 0, vecs, 0, vecs.length >> 1);
  /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 1111 milliseconds

1 2