/external/toybox/toys/pending/ |
D | syslogd.c | 380 struct unsocks *fnode = TT.lsocks; in cleanup() local 382 if (fnode->sd >= 0) { in cleanup() 383 close(fnode->sd); in cleanup() 384 unlink(fnode->path); in cleanup() 386 TT.lsocks = fnode->next; in cleanup() 387 free(fnode); in cleanup() 391 struct logfile *fnode = TT.lfiles; in cleanup() local 393 free(fnode->filename); in cleanup() 394 if (fnode->logfd >= 0) close(fnode->logfd); in cleanup() 395 TT.lfiles = fnode->next; in cleanup() [all …]
|
/external/opencv/ml/src/ |
D | mlrtrees.cpp | 161 void CvForestTree::read( CvFileStorage* fs, CvFileNode* fnode, CvRTrees* _forest, CvDTreeTrainData*… in read() argument 163 CvDTree::read( fs, fnode, _data ); in read() 619 void CvRTrees::read( CvFileStorage* fs, CvFileNode* fnode ) in read() argument 631 nclasses = cvReadIntByName( fs, fnode, "nclasses", -1 ); in read() 632 nsamples = cvReadIntByName( fs, fnode, "nsamples" ); in read() 633 nactive_vars = cvReadIntByName( fs, fnode, "nactive_vars", -1 ); in read() 634 oob_error = cvReadRealByName(fs, fnode, "oob_error", -1 ); in read() 635 ntrees = cvReadIntByName( fs, fnode, "ntrees", -1 ); in read() 637 var_importance = (CvMat*)cvReadByName( fs, fnode, "var_importance" ); in read() 649 data->read_params( fs, fnode ); in read() [all …]
|
D | mltree.cpp | 3192 CvDTreeSplit* CvDTree::read_split( CvFileStorage* fs, CvFileNode* fnode ) in read_split() argument 3202 if( !fnode || CV_NODE_TYPE(fnode->tag) != CV_NODE_MAP ) in read_split() 3205 vi = cvReadIntByName( fs, fnode, "var", -1 ); in read_split() 3216 inseq = cvGetFileNodeByName( fs, fnode, "in" ); in read_split() 3219 inseq = cvGetFileNodeByName( fs, fnode, "not_in" ); in read_split() 3262 cmp_node = cvGetFileNodeByName( fs, fnode, "le" ); in read_split() 3265 cmp_node = cvGetFileNodeByName( fs, fnode, "gt" ); in read_split() 3272 split->quality = (float)cvReadRealByName( fs, fnode, "quality" ); in read_split() 3280 CvDTreeNode* CvDTree::read_node( CvFileStorage* fs, CvFileNode* fnode, CvDTreeNode* parent ) in read_node() argument 3291 if( !fnode || CV_NODE_TYPE(fnode->tag) != CV_NODE_MAP ) in read_node() [all …]
|
D | mlboost.cpp | 773 void CvBoostTree::read( CvFileStorage* fs, CvFileNode* fnode, CvBoost* _ensemble, CvDTreeTrainData*… in read() argument 775 CvDTree::read( fs, fnode, _data ); in read() 1480 void CvBoost::read_params( CvFileStorage* fs, CvFileNode* fnode ) in read_params() argument 1488 if( !fnode || !CV_NODE_IS_MAP(fnode->tag) ) in read_params() 1492 CV_CALL( data->read_params(fs, fnode)); in read_params() 1502 temp = cvGetFileNodeByName( fs, fnode, "boosting_type" ); in read_params() 1520 temp = cvGetFileNodeByName( fs, fnode, "splitting_criteria" ); in read_params() 1535 params.weak_count = cvReadIntByName( fs, fnode, "ntrees" ); in read_params() 1536 params.weight_trim_rate = cvReadRealByName( fs, fnode, "weight_trimming_rate", 0. ); in read_params()
|
/external/opencv3/modules/objdetect/src/ |
D | cascadedetect_convert.cpp | 153 FileNode fnode = nnode[ICV_HAAR_FEATURE_NAME]; in convert() local 157 f.tilted = (int)fnode[ICV_HAAR_TILTED_NAME] != 0; in convert() 158 FileNode rects_seq = fnode[ICV_HAAR_RECTS_NAME]; in convert()
|
/external/opencv3/apps/traincascade/ |
D | old_ml_tree.cpp | 3926 CvDTreeSplit* CvDTree::read_split( CvFileStorage* fs, CvFileNode* fnode ) in read_split() argument 3936 if( !fnode || CV_NODE_TYPE(fnode->tag) != CV_NODE_MAP ) in read_split() 3939 vi = cvReadIntByName( fs, fnode, "var", -1 ); in read_split() 3950 inseq = cvGetFileNodeByName( fs, fnode, "in" ); in read_split() 3953 inseq = cvGetFileNodeByName( fs, fnode, "not_in" ); in read_split() 3996 cmp_node = cvGetFileNodeByName( fs, fnode, "le" ); in read_split() 3999 cmp_node = cvGetFileNodeByName( fs, fnode, "gt" ); in read_split() 4006 split->quality = (float)cvReadRealByName( fs, fnode, "quality" ); in read_split() 4014 CvDTreeNode* CvDTree::read_node( CvFileStorage* fs, CvFileNode* fnode, CvDTreeNode* parent ) in read_node() argument 4025 if( !fnode || CV_NODE_TYPE(fnode->tag) != CV_NODE_MAP ) in read_node() [all …]
|
D | old_ml_boost.cpp | 879 void CvBoostTree::read( CvFileStorage* fs, CvFileNode* fnode, CvBoost* _ensemble, CvDTreeTrainData*… in read() argument 881 CvDTree::read( fs, fnode, _data ); in read() 1918 void CvBoost::read_params( CvFileStorage* fs, CvFileNode* fnode ) in read_params() argument 1926 if( !fnode || !CV_NODE_IS_MAP(fnode->tag) ) in read_params() 1930 CV_CALL( data->read_params(fs, fnode)); in read_params() 1940 temp = cvGetFileNodeByName( fs, fnode, "boosting_type" ); in read_params() 1958 temp = cvGetFileNodeByName( fs, fnode, "splitting_criteria" ); in read_params() 1973 params.weak_count = cvReadIntByName( fs, fnode, "ntrees" ); in read_params() 1974 params.weight_trim_rate = cvReadRealByName( fs, fnode, "weight_trimming_rate", 0. ); in read_params()
|
D | old_ml.hpp | 1753 virtual void read_params( CvFileStorage* fs, CvFileNode* fnode );
|
/external/opencv3/modules/ml/src/ |
D | gbt.cpp | 1036 void CvGBTrees::read_params( CvFileStorage* fs, CvFileNode* fnode ) 1044 if( !fnode || !CV_NODE_IS_MAP(fnode->tag) ) 1048 CV_CALL( data->read_params(fs, fnode)); 1058 temp = cvGetFileNodeByName( fs, fnode, "loss_function" ); 1077 params.weak_count = cvReadIntByName( fs, fnode, "ensemble_length" ); 1078 params.shrinkage = (float)cvReadRealByName( fs, fnode, "shrinkage", 0.1 ); 1079 params.subsample_portion = (float)cvReadRealByName( fs, fnode, "subsample_portion", 1.0 ); 1083 class_labels = (CvMat*)cvReadByName( fs, fnode, "class_labels" );
|
/external/wpa_supplicant_8/hs20/client/ |
D | spp_client.c | 79 xml_node_t *fnode, *tnds; in add_mo_container() local 83 fnode = node_from_file(ctx, fname); in add_mo_container() 84 if (!fnode) { in add_mo_container() 90 tnds = mo_to_tnds(ctx, fnode, 0, urn, "syncml:dmddf1.2"); in add_mo_container() 91 xml_node_free(ctx, fnode); in add_mo_container()
|
D | oma_dm_client.c | 199 xml_node_t *fnode, *tnds; in mo_str() local 202 fnode = node_from_file(ctx->xml, fname); in mo_str() 203 if (!fnode) in mo_str() 205 tnds = mo_to_tnds(ctx->xml, fnode, 0, urn, "syncml:dmddf1.2"); in mo_str() 206 xml_node_free(ctx->xml, fnode); in mo_str()
|
/external/v8/src/wasm/ |
D | ast-decoder.cc | 1181 TFNode* fnode = from->locals[i]; in Goto() local 1183 builder_->AppendToPhi(merge, tnode, fnode); in Goto() 1184 } else if (tnode != fnode) { in Goto() 1190 vals[count - 1] = fnode; in Goto() 1204 TFNode* fnode) { in CreateOrMergeIntoPhi() argument 1206 builder_->AppendToPhi(merge, tnode, fnode); in CreateOrMergeIntoPhi() 1207 } else if (tnode != fnode) { in CreateOrMergeIntoPhi() 1211 vals[count - 1] = fnode; in CreateOrMergeIntoPhi()
|