Home | History | Annotate | Download | only in src

Lines Matching refs:memstorage

124     CvMemStorage* memstorage;
262 sizeof(CvFileMapNode), fs->memstorage, 16 ));
267 CV_CALL( seq = cvCreateSeq( 0, sizeof(CvSeq), sizeof(CvFileNode), fs->memstorage ));
409 cvReleaseMemStorage( &fs->memstorage );
1098 CV_CALL( node->data.str = cvMemStorageAllocString( fs->memstorage, buf, len ));
1183 CV_CALL( node->data.str = cvMemStorageAllocString( fs->memstorage, ptr, (int)(str_end - ptr) ));
1993 CV_CALL( elem->data.str = cvMemStorageAllocString( fs->memstorage, buf, i ));
2094 CV_CALL( chunk = (CvAttrList*)cvMemStorageAlloc( fs->memstorage, attr_buf_size ));
2691 CV_CALL( fs->memstorage = cvCreateMemStorage( default_block_size ));
2692 fs->dststorage = dststorage ? dststorage : fs->memstorage;
2694 CV_CALL( fs->filename = (char*)cvMemStorageAlloc( fs->memstorage, strlen(filename)+1 ));
2722 sizeof(CvXMLStackRecord) : sizeof(int), fs->memstorage );
2731 CV_CALL( fs->strstorage = cvCreateChildMemStorage( fs->memstorage ));
2811 sizeof(CvStringHashNode), fs->memstorage, 256 ));
2814 sizeof(CvFileNode), fs->memstorage ));
3739 CvMemStorage* memstorage = 0;
3756 CV_CALL( memstorage = cvCreateMemStorage());
3767 elements = cvCreateSeq( CV_SEQ_ELTYPE_PTR, sizeof(CvSeq), sizeof(int*), memstorage );
3809 cvReleaseMemStorage( &memstorage );
5171 cvLoad( const char* filename, CvMemStorage* memstorage,
5183 CV_CALL( fs = cvOpenFileStorage( filename, memstorage, CV_STORAGE_READ ));
5231 if( !memstorage && (CV_IS_SEQ( ptr ) || CV_IS_SET( ptr )) )