Home | History | Annotate | Download | only in highgui

Lines Matching refs:buffer

63     // the result is put into the specified buffer
64 static int Preprocess( const char* filename, char* buffer );
76 const char* Find( const char* filename, char* buffer ) const;
117 char buffer[_MAX_PATH + 1];
118 int len = Preprocess( path, buffer );
142 memcpy( m_path + m_len, buffer, len );
186 const char* CvFilePath::Find( const char* filename, char* buffer ) const
203 memcpy( buffer, folder, folder_len );
204 strcpy( buffer + folder_len, name );
206 f = fopen( buffer, "rb" );
228 filename = (const char*)buffer;
236 int CvFilePath::Preprocess( const char* str, char* buffer )
240 if( !str || !buffer )
245 buffer[i] = str[i];
255 buffer[i] = '/';