Home
last modified time | relevance | path

Searched refs:vcount (Results 1 – 8 of 8) sorted by relevance

/external/opencv/ml/src/
Dmlsvm.cpp231 void CvSVMKernel::calc_non_rbf_base( int vcount, int var_count, const float** vecs, in calc_non_rbf_base() argument
236 for( j = 0; j < vcount; j++ ) in calc_non_rbf_base()
250 void CvSVMKernel::calc_linear( int vcount, int var_count, const float** vecs, in calc_linear() argument
253 calc_non_rbf_base( vcount, var_count, vecs, another, results, 1, 0 ); in calc_linear()
257 void CvSVMKernel::calc_poly( int vcount, int var_count, const float** vecs, in calc_poly() argument
260 CvMat R = cvMat( 1, vcount, QFLOAT_TYPE, results ); in calc_poly()
261 calc_non_rbf_base( vcount, var_count, vecs, another, results, params->gamma, params->coef0 ); in calc_poly()
266 void CvSVMKernel::calc_sigmoid( int vcount, int var_count, const float** vecs, in calc_sigmoid() argument
270 calc_non_rbf_base( vcount, var_count, vecs, another, results, in calc_sigmoid()
273 for( j = 0; j < vcount; j++ ) in calc_sigmoid()
[all …]
Dmlann_mlp.cpp575 int i, j, vcount = layer_sizes->data.i[0]; in calc_input_scale() local
579 for( j = 0; j < vcount; j++ ) in calc_input_scale()
589 for( j = 0; j < vcount; j++ ) in calc_input_scale()
597 for( j = 0; j < vcount; j++ ) in calc_input_scale()
610 int i, j, vcount = layer_sizes->data.i[layer_sizes->cols-1]; in calc_output_scale() local
628 for( j = 0; j < vcount; j++ ) in calc_output_scale()
643 for( j = 0; j < vcount; j++ ) in calc_output_scale()
667 for( j = 0; j < vcount; j++ ) in calc_output_scale()
Dmltree.cpp1008 int vi, vcount = var_count; in write_params() local
1048 for( vi = 0; vi < vcount; vi++ ) in write_params()
/external/kernel-headers/original/uapi/sound/
Demu10k1.h279 unsigned int vcount; /* visible count */ member
292 unsigned int vcount; member
/external/lldb/examples/summaries/cocoa/
DNSSet.py56 vcount = self.valobj.CreateChildAtOffset("count",
59 return vcount.GetValueAsUnsigned(0)
/external/kernel-headers/original/uapi/linux/
Dfb.h331 __u32 vcount; /* current scanline position */ member
/external/skia/src/core/
DSkPath.cpp1315 int i, vcount = path.fPathRef->countVerbs(); in reversePathTo() local
1317 if (vcount < 2) { in reversePathTo()
1321 SkPathRef::Editor(&fPathRef, vcount, path.countPoints()); in reversePathTo()
1328 for (i = 1; i < vcount; ++i) { in reversePathTo()
/external/opencv/ml/include/
Dml.h351 … virtual void calc( int vcount, int n, const float** vecs, const float* another, float* results );