Searched refs:vect (Results 1 - 19 of 19) sorted by last modified time

/external/stlport/test/unit/
H A Dmvctor_test.cpp624 vector<vector<string> > vect(10, vector<string>(10, long_str));
628 vector<vector<string> >::iterator it(vect.begin());
629 advance(it, index % vect.size());
633 vect.erase(it);
634 if (vect.empty())
649 vector<deque<string> > vect(10, deque<string>(10, long_str));
652 vector<deque<string> > vect(10, deq_str);
657 vector<deque<string> >::iterator it(vect.begin());
658 advance(it, index % vect.size());
662 vect
[all...]
H A Dmvctor_traits_test.cpp90 vector<MovableStruct> vect; local
91 vect.push_back(MovableStruct());
92 vect.push_back(MovableStruct());
93 vect.push_back(MovableStruct());
94 vect.push_back(MovableStruct());
96 // vect contains 4 elements
117 vect.insert(vect.begin() + 2, vect.begin(), vect
189 vector<CompleteMovableStruct> vect; local
[all...]
H A Duninitialized_test.cpp231 vector<TrivialInitStruct> vect(10);
H A Dvector_test.cpp85 vector<vector<int> > vect(10);
86 vector<vector<int> >::iterator it(vect.begin()), end(vect.end());
/external/qemu-pc-bios/vgabios/
H A Dvgabios.c246 ;; set int10 vect
/external/opencv/cv/src/
H A Dcvrotcalipers.cpp99 CvPoint2D32f* vect = (CvPoint2D32f*)cvAlloc( n * sizeof(vect[0]) ); local
139 vect[i].x = (float)dx;
140 vect[i].y = (float)dy;
150 double ax = vect[n-1].x;
151 double ay = vect[n-1].y;
155 double bx = vect[i].x;
156 double by = vect[i].y;
189 float dp0 = base_a * vect[seq[0]].x + base_b * vect[se
[all...]
/external/opencv/cvaux/src/
H A Dcvepilines.cpp507 double vect[3]; local
508 vect[0] = point.x;
509 vect[1] = point.y;
510 vect[2] = 1;
515 vect,
H A Dcvhmm.cpp517 /*static float icvComputeUniModeGauss(CvVect32f vect, CvVect32f mu,
528 tmp = (vect[n] - mu[n]) * inv_var[n];
557 icvComputeGaussMixture( CvVect32f vect, float* mu,
567 return icvComputeUniModeGauss( vect, mu, inv_var, log_var_val[0], vect_size);
576 l_prob = icvComputeUniModeGauss(vect, mu + m*vect_size,
771 float* vect = obs; local
774 for( n = 0; n < obs_x; n++, vect += vect_size, log_mp += n_states )
786 double t = (vect[k] - mu[k])*inv_var[k];
856 CvVect32f vect = (obs_info->obs) + (obs_index + k) * vect_size; local
862 matr_line[m] = icvComputeGaussMixture( vect, stat
[all...]
H A Dcvhmm1d.cpp450 /*float icvComputeUniModeGauss(CvVect32f vect, CvVect32f mu,
461 tmp = (vect[n] - mu[n]) * inv_var[n];
489 /*float icvComputeGaussMixture( CvVect32f vect, float* mu,
499 return icvComputeUniModeGauss( vect, mu, inv_var, log_var_val[0], vect_size);
508 l_prob = icvComputeUniModeGauss(vect, mu + m*vect_size,
706 float* vect = obs;
709 for( n = 0; n < obs_x; n++, vect += vect_size, log_mp += n_states )
721 double t = (vect[k] - mu[k])*inv_var[k];
798 CvVect32f vect = (obs_info->obs) + (obs_index + k) * vect_size;
804 matr_line[m] = icvComputeGaussMixture( vect, stat
[all...]
/external/opencv/ml/src/
H A D_ml.h69 #define CV_MAT_ELEM_FLAG( mat, type, comp, vect, tflag ) \
71 ? (CV_MAT_ELEM( mat, type, comp, vect )) \
72 : (CV_MAT_ELEM( mat, type, vect, comp )))
H A Dml_inner_functions.cpp167 CvMat* vect = cvCreateMatHeader(1, dim, sample->type); local
174 cvGetRow(sample, vect, i);
175 cvMatMulAdd(vect, utmat, mean, vect);
178 cvReleaseMat(&vect);
227 CvMat* vect = cvCreateMatHeader(1, dim, CV_32FC1); local
249 cvGetRow(sample, vect, i);
251 cvMatMulAdd(vect, utmats[clss], means[clss], vect);
260 cvReleaseMat(&vect);
[all...]
/external/openssh/
H A Dscp.c849 char *last, *vect[1], path[1100]; local
889 vect[0] = path;
890 source(1, vect);
912 char ch, *cp, *np, *targ, *why, *vect[1], buf[2048]; local
1052 vect[0] = xstrdup(np);
1053 sink(1, vect);
1056 if (utimes(vect[0], tv) < 0)
1058 vect[0], strerror(errno));
1061 (void) chmod(vect[0], mode);
1062 if (vect[
[all...]
/external/jmonkeyengine/engine/src/bullet-native/
H A Dcom_jme3_bullet_collision_shapes_HullCollisionShape.cpp57 btVector3 vect = btVector3(data[i], local
61 shape->addPoint(vect);
/external/jmonkeyengine/engine/src/core/com/jme3/math/
H A DEigen3f.java182 * @param vect
187 private void computeVectors(Matrix3f mat, Vector3f vect, int index1, argument
190 Vector3f.generateComplementBasis(vectorU, vectorV, vect);
231 Vector3f vectorS = vect.cross(eigenVectors[index3]);
232 mat.mult(vect, tempVect);
233 p00 = eigenValues[index1] - vect.dot(tempVect);
253 eigenVectors[index1] = vect.mult(p01).add(vectorS.mult(p00));
258 eigenVectors[index1] = vect.mult(p11).add(vectorS.mult(p01));
264 eigenVectors[index1].set(vect);
H A DVector3f.java147 * @param vect
151 public Vector3f set(Vector3f vect) { argument
152 this.x = vect.x;
153 this.y = vect.y;
154 this.z = vect.z;
H A DVector4f.java155 * @param vect
159 public Vector4f set(Vector4f vect) { argument
160 this.x = vect.x;
161 this.y = vect.y;
162 this.z = vect.z;
163 this.w = vect.w;
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/
H A DTerrainGrid.java455 for (Vector2f vect : xz) {
456 vect.x -= currentGridLocation.x;
457 vect.y -= currentGridLocation.z;
/external/dropbear/
H A Dscp.c717 char *last, *vect[1], path[1100]; local
757 vect[0] = path;
758 source(1, vect);
835 char ch, *cp, *np, *targ, *why, *vect[1], buf[2048]; local
975 vect[0] = xstrdup(np);
976 sink(1, vect);
979 if (utimes(vect[0], tv) < 0)
981 vect[0], strerror(errno));
984 (void) chmod(vect[0], mode);
985 if (vect[
[all...]
/external/chromium/base/
H A Dstack_container_unittest.cc34 StackVector<int, stack_size> vect; local
35 const int* stack_buffer = &vect.stack_data().stack_buffer()[0];
38 EXPECT_EQ(static_cast<size_t>(stack_size), vect.container().capacity());
40 vect.container().push_back(i);
41 EXPECT_EQ(stack_buffer, &vect.container()[0]);
42 EXPECT_TRUE(vect.stack_data().used_stack_buffer_);
47 vect.container().push_back(i + stack_size);
48 EXPECT_NE(stack_buffer, &vect.container()[0]);
49 EXPECT_FALSE(vect.stack_data().used_stack_buffer_);
54 EXPECT_EQ(i, vect
78 Vector vect; local
[all...]

Completed in 373 milliseconds