/external/opencv3/modules/cudaimgproc/src/ |
D | hough_segments.cpp | 77 …HoughSegmentDetectorImpl(float rho, float theta, int minLineLength, int maxLineGap, int maxLines) : in HoughSegmentDetectorImpl() argument 78 …o_(rho), theta_(theta), minLineLength_(minLineLength), maxLineGap_(maxLineGap), maxLines_(maxLines) in HoughSegmentDetectorImpl() 96 void setMaxLines(int maxLines) { maxLines_ = maxLines; } in setMaxLines() argument 181 …createHoughSegmentDetector(float rho, float theta, int minLineLength, int maxLineGap, int maxLines) in createHoughSegmentDetector() argument 183 return makePtr<HoughSegmentDetectorImpl>(rho, theta, minLineLength, maxLineGap, maxLines); in createHoughSegmentDetector()
|
D | hough_lines.cpp | 73 HoughLinesDetectorImpl(float rho, float theta, int threshold, bool doSort, int maxLines) : in HoughLinesDetectorImpl() argument 74 rho_(rho), theta_(theta), threshold_(threshold), doSort_(doSort), maxLines_(maxLines) in HoughLinesDetectorImpl() 93 void setMaxLines(int maxLines) { maxLines_ = maxLines; } in setMaxLines() argument 206 …v::cuda::createHoughLinesDetector(float rho, float theta, int threshold, bool doSort, int maxLines) in createHoughLinesDetector() argument 208 return makePtr<HoughLinesDetectorImpl>(rho, theta, threshold, doSort, maxLines); in createHoughLinesDetector()
|
/external/libvncserver/libvncserver/ |
D | ultra.c | 167 int maxLines; in rfbSendRectEncodingUltra() local 177 maxLines = ( ULTRA_MAX_SIZE(w) / w ); in rfbSendRectEncodingUltra() 187 if ( maxLines < linesRemaining ) in rfbSendRectEncodingUltra() 188 linesToComp = maxLines; in rfbSendRectEncodingUltra() 216 ( linesToComp == maxLines )) { in rfbSendRectEncodingUltra()
|
D | zlib.c | 266 int maxLines; in rfbSendRectEncodingZlib() local 276 maxLines = ( ZLIB_MAX_SIZE(w) / w ); in rfbSendRectEncodingZlib() 286 if ( maxLines < linesRemaining ) in rfbSendRectEncodingZlib() 287 linesToComp = maxLines; in rfbSendRectEncodingZlib() 315 ( linesToComp == maxLines )) { in rfbSendRectEncodingZlib()
|
/external/pdfium/xfa/src/fxbarcode/oned/ |
D | BC_OneDReader.cpp | 54 int32_t maxLines; in DeDecode() local 56 maxLines = height; in DeDecode() 58 maxLines = 15; in DeDecode() 60 for (int32_t x = 0; x < maxLines; x++) { in DeDecode()
|
/external/opencv3/modules/cudaimgproc/include/opencv2/ |
D | cudaimgproc.hpp | 369 virtual void setMaxLines(int maxLines) = 0; 382 …oughLinesDetector(float rho, float theta, int threshold, bool doSort = false, int maxLines = 4096); 417 virtual void setMaxLines(int maxLines) = 0; 429 …ughSegmentDetector(float rho, float theta, int minLineLength, int maxLineGap, int maxLines = 4096);
|
/external/gptfdisk/ |
D | parttypes.cc | 383 void PartType::ShowAllTypes(int maxLines) const { in ShowAllTypes() 401 if ((maxLines > 0) && (lineCount++ % maxLines) == 0) { in ShowAllTypes()
|
D | parttypes.h | 63 void ShowAllTypes(int maxLines = 21) const;
|
/external/icu/icu4c/source/samples/layout/ |
D | gnomelayout.cpp | 220 gint maxLines = context->paragraph->getLineCount() - 1; in eventExpose() local 224 context->paragraph->draw(&surface, firstLine, (maxLines < lastLine)? maxLines : lastLine); in eventExpose()
|
D | cgnomelayout.c | 212 gint maxLines = pf_getLineCount(context->paragraph) - 1; in eventExpose() local 216 pf_draw(context->paragraph, surface, firstLine, (maxLines < lastLine)? maxLines : lastLine); in eventExpose()
|
/external/icu/icu4c/source/tools/ctestfw/ |
D | uperf.cpp | 217 int maxLines = MAXLINES; in getLines() local 232 if (numLines >= maxLines) { in getLines() 233 maxLines += MAXLINES; in getLines() 234 ULine *newLines = new ULine[maxLines]; in getLines()
|
/external/icu/icu4c/source/tools/genrb/ |
D | wrtjava.cpp | 217 int32_t maxLines = 3000; in getColumnCount() local 223 if (maxLines < (adjustedLen / columnCount) ){ in getColumnCount() 224 columnCount = adjustedLen / maxLines; in getColumnCount()
|