Searched defs:ovcount (Results 1 - 2 of 2) sorted by relevance
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/LinearMath/ |
H A D | btConvexHull.cpp | 707 unsigned int ovcount; local 709 bool ok = CleanupVertices(desc.mVcount,desc.mVertices, desc.mVertexStride, ovcount, &vertexSource[0], desc.mNormalEpsilon, scale ); // normalize point cloud, remove duplicates! 717 for (unsigned int i=0; i<ovcount; i++) 726 ok = ComputeHull(ovcount,&vertexSource[0],hr,desc.mMaxVertices); 735 BringOutYourDead(hr.mVertices,hr.mVcount, &vertexScratch[0], ovcount, &hr.m_Indices[0], hr.mIndexCount ); 742 result.mNumOutputVertices = ovcount; 743 result.m_OutputVertices.resize(static_cast<int>(ovcount)); 749 memcpy(&result.m_OutputVertices[0], &vertexScratch[0], sizeof(btVector3)*ovcount ); 775 result.mNumOutputVertices = ovcount; 776 result.m_OutputVertices.resize(static_cast<int>(ovcount)); [all...] |
/external/opencv/ml/src/ |
H A D | mlann_mlp.cpp | 888 int i, j, k, ivcount, ovcount, l_count, total = 0, max_iter; local 897 ovcount = layer_sizes->data.i[l_count-1]; 985 cvInitMatHeader( grad1, 1, ovcount, CV_64F, buf_ptr ); 995 for( k = 0; k < ovcount; k++ ) 1005 for( k = 0; k < ovcount; k++ ) 1063 int i, ivcount, ovcount, l_count, total = 0, max_iter, buf_sz, dcount0, dcount=0; local 1078 ovcount = layer_sizes->data.i[l_count-1]; 1175 cvInitMatHeader( grad1, dcount, ovcount, CV_64F, buf_ptr ); 1184 const double* xdata = x[l_count-1] + i*ovcount; 1185 double* gdata = grad1->data.db + i*ovcount; [all...] |
Completed in 90 milliseconds