Home
last modified time | relevance | path

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

/dports/databases/grass7/grass-7.8.6/raster/r.terraflow/
H A Dfilldepr.cpp50 fill_depression(AMI_STREAM<boundaryType> *boundaryStr, in fill_depression() argument
68 return inmemory_fill_depression(boundaryStr, maxWatersheds); in fill_depression()
70 return ext_fill_depression(boundaryStr, maxWatersheds); in fill_depression()
77 ext_fill_depression(AMI_STREAM<boundaryType> *boundaryStr, in ext_fill_depression() argument
90 inmemory_fill_depression(AMI_STREAM<boundaryType> *boundaryStr, in inmemory_fill_depression() argument
93 assert(boundaryStr && maxWatersheds >= 0); in inmemory_fill_depression()
115 (int)maxWatersheds, (long)boundaryStr->stream_len()); in inmemory_fill_depression()
130 off_t nitems = boundaryStr->stream_len(); in inmemory_fill_depression()
131 boundaryStr->seek(0); in inmemory_fill_depression()
135 ae = boundaryStr->read_item(&nextedge); in inmemory_fill_depression()
H A Dfill.cpp168 AMI_STREAM<boundaryType> *boundaryStr=NULL; in computeFlowDirections() local
269 boundaryStr = new AMI_STREAM<boundaryType>(); in computeFlowDirections()
275 assert(boundaryStr->stream_len() == 0); in computeFlowDirections()
276 delete boundaryStr; in computeFlowDirections()
306 sort(&boundaryStr, elevCmpBoundaryType()); in computeFlowDirections()
309 delete boundaryStr; in computeFlowDirections()
668 AMI_STREAM<boundaryType> *boundaryStr; in findBoundariesMain() local
672 boundaryStr = new AMI_STREAM<boundaryType>(); in findBoundariesMain()
682 sort(&boundaryStr, ijCmpBoundaryType()); in findBoundariesMain()
688 sort(&boundaryStr, waterCmpBoundaryType()); in findBoundariesMain()
[all …]
H A Dfilldepr.h47 elevation_type* fill_depression(AMI_STREAM<boundaryType>*boundaryStr,
50 elevation_type* inmemory_fill_depression(AMI_STREAM<boundaryType>*boundaryStr,
53 elevation_type* ext_fill_depression(AMI_STREAM<boundaryType>*boundaryStr,
H A Dwater.cpp250 AMI_STREAM<boundaryType> *boundaryStr) { in generateWatersheds() argument
394 AMI_STREAM<boundaryType> *boundaryStr; member in boundaryDetector
400 : nrows(gnrows), ncols(gncols), boundaryStr(str) {}; in boundaryDetector()
421 AMI_err ae = boundaryStr->write_item(bt); in processPair()
427 AMI_err ae = boundaryStr->write_item(bt); in processPair()
458 AMI_STREAM<boundaryType> *boundaryStr) { in findBoundaries() argument
461 boundaryDetector det(boundaryStr, nrows, ncols); in findBoundaries()
H A Dwater.h468 AMI_STREAM<boundaryType> *boundaryStr);
473 AMI_STREAM<boundaryType> *boundaryStr);
/dports/editors/calligra/calligra-3.2.1/gemini/cloud/dropbox/3rdparty/
H A Dnetworkcontroller.cc287 QString boundaryStr( in upload() local
290 QString boundary="--"+boundaryStr+crlf; in upload()
313 QString(crlf + "--" + boundaryStr + "--" + crlf).toLatin1() in upload()
316 …le_transfer->post(m_droprestapi->file_transfer(filename, m_currentDir, boundaryStr),*m_multipartfo… in upload()
H A Ddroprestapi.cc76 …kRequest DropRestAPI::file_transfer(QString filename, QString dropbox_folder, QString boundaryStr){ in file_transfer() argument
86 …QNetworkRequest::ContentTypeHeader, QString("multipart/form-data; boundary=").append(boundaryStr)); in file_transfer()
H A Ddroprestapi.h61 QNetworkRequest file_transfer(QString filename, QString dropbox_folder, QString boundaryStr);