/external/chromium/chrome/browser/chromeos/login/ |
H A D | signed_settings_temp_storage.cc | 44 const DictionaryValue* temp_storage = local 46 if (temp_storage && temp_storage->HasKey(name)) { 47 temp_storage->GetStringWithoutPathExpansion(name, value); 58 const DictionaryValue* temp_storage = local 60 if (temp_storage) { 65 for (DictionaryValue::key_iterator it = temp_storage->begin_keys(); 66 it != temp_storage->end_keys(); 69 temp_storage->GetStringWithoutPathExpansion(*it, &value);
|
/external/opencv/cv/src/ |
H A D | cvapprox.cpp | 530 CvMemStorage* temp_storage = 0; local 542 temp_storage = cvCreateChildMemStorage( storage ); 545 stack = cvCreateSeq( 0, sizeof(CvSeq), sizeof(CvSlice), temp_storage ); 714 cvReleaseMemStorage( &temp_storage ); 734 CvMemStorage* temp_storage = 0; local 746 temp_storage = cvCreateChildMemStorage( storage ); 749 stack = cvCreateSeq( 0, sizeof(CvSeq), sizeof(CvSlice), temp_storage ); 919 cvReleaseMemStorage( &temp_storage );
|
H A D | cvrotcalipers.cpp | 350 CvMemStorage* temp_storage = 0; local 385 CV_CALL( temp_storage = cvCreateChildMemStorage( storage )); 389 CV_CALL( temp_storage = cvCreateMemStorage(1 << 10)); 394 CV_CALL( ptseq = cvConvexHull2( ptseq, temp_storage, CV_CLOCKWISE, 1 )); 406 temp_storage, &writer ); 469 cvReleaseMemStorage( &temp_storage );
|
H A D | cvpyrsegmentation.cpp | 203 CvMemStorage *temp_storage = 0; local 232 temp_storage = cvCreateChildMemStorage( storage ); 235 cmp_seq = cvCreateSeq( 0, sizeof( CvSeq ), sizeof( _CvListNode ), temp_storage ); 580 cvReleaseMemStorage( &temp_storage ); 617 CvMemStorage *temp_storage = 0; local 649 temp_storage = cvCreateChildMemStorage( storage ); 652 cmp_seq = cvCreateSeq( 0, sizeof( CvSeq ), sizeof( _CvListNode ), temp_storage ); 1015 cvReleaseMemStorage( &temp_storage );
|
H A D | cvcalibinit.cpp | 543 CvMemStorage* temp_storage = cvCreateChildMemStorage( storage ); local 544 CvSeq* stack = cvCreateSeq( 0, sizeof(*stack), sizeof(void*), temp_storage ); 560 cvReleaseMemStorage( &temp_storage ); 623 cvReleaseMemStorage( &temp_storage ); 1021 CvMemStorage *temp_storage = 0; local 1040 CV_CALL( temp_storage = cvCreateMemStorage(0)); 1084 CvSeq *hull = cvConvexHull2( &pointMat, temp_storage, CV_CLOCKWISE, 1 ); 1094 cvClearMemStorage( temp_storage ); 1129 cvReleaseMemStorage( &temp_storage ); 1141 CvMemStorage* temp_storage local 1598 CvMemStorage *temp_storage = 0; local 1776 CvMemStorage *temp_storage = 0; local [all...] |
H A D | mycvHaarDetectObjects.cpp | 882 CvMemStorage* temp_storage = 0; local 930 CV_CALL( temp_storage = cvCreateChildMemStorage( storage )); 938 seq = cvCreateSeq( 0, sizeof(CvSeq), sizeof(CvRect), temp_storage ); 939 seq2 = cvCreateSeq( 0, sizeof(CvSeq), sizeof(CvAvgComp), temp_storage ); 1152 big_seq = cvCreateSeq( 0, sizeof(CvSeq), sizeof(CvRect), temp_storage ); 1561 cvReleaseMemStorage( &temp_storage );
|
H A D | cvhaar.cpp | 866 CvMemStorage* temp_storage = 0; local 902 CV_CALL( temp_storage = cvCreateChildMemStorage( storage )); 910 seq = cvCreateSeq( 0, sizeof(CvSeq), sizeof(CvRect), temp_storage ); 911 seq2 = cvCreateSeq( 0, sizeof(CvSeq), sizeof(CvAvgComp), temp_storage ); 1120 big_seq = cvCreateSeq( 0, sizeof(CvSeq), sizeof(CvRect), temp_storage ); 1521 cvReleaseMemStorage( &temp_storage );
|
/external/opencv/cxcore/src/ |
H A D | cxdatastructs.cpp | 2603 CvMemStorage* temp_storage = 0; local 2630 temp_storage = cvCreateChildMemStorage( storage ); 2632 nodes = cvCreateSeq( 0, sizeof(CvSeq), sizeof(CvPTreeNode), temp_storage ); 2748 cvReleaseMemStorage( &temp_storage );
|
/external/opencv/ml/src/ |
H A D | mlsvm.cpp | 1317 const CvMat* responses, CvMemStorage* temp_storage, double* alpha ) 1338 responses->data.i, 0, 0, temp_storage, alpha, df->rho )) 1385 CV_CALL( sv_tab = (int*)cvMemStorageAlloc( temp_storage, sample_count*sizeof(sv_tab[0]) )); 1387 CV_CALL( class_ranges = (int*)cvMemStorageAlloc( temp_storage, 1389 CV_CALL( temp_samples = (const float**)cvMemStorageAlloc( temp_storage, 1391 CV_CALL( temp_y = (schar*)cvMemStorageAlloc( temp_storage, sample_count)); 1447 Cp, Cn, temp_storage, alpha, df->rho )) 1455 CV_CALL( df->alpha = (double*)cvMemStorageAlloc( temp_storage, 1457 CV_CALL( df->sv_index = (int*)cvMemStorageAlloc( temp_storage, 1530 CvMemStorage* temp_storage local 1316 do_train( int svm_type, int sample_count, int var_count, const float** samples, const CvMat* responses, CvMemStorage* temp_storage, double* alpha ) argument 1598 CvMemStorage* temp_storage = 0; local [all...] |
/external/opencv/ml/include/ |
H A D | ml.h | 818 CvMemStorage* temp_storage; member in struct:CvDTreeTrainData
|