Home
last modified time | relevance | path

Searched refs:maxLines (Results 1 – 9 of 9) sorted by relevance

/external/libvncserver/libvncserver/
Dultra.c167 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()
Dzlib.c266 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/
DBC_OneDReader.cpp54 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/gptfdisk/
Dparttypes.cc383 void PartType::ShowAllTypes(int maxLines) const { in ShowAllTypes()
401 if ((maxLines > 0) && (lineCount++ % maxLines) == 0) { in ShowAllTypes()
Dparttypes.h63 void ShowAllTypes(int maxLines = 21) const;
/external/icu/icu4c/source/samples/layout/
Dgnomelayout.cpp220 gint maxLines = context->paragraph->getLineCount() - 1; in eventExpose() local
224 context->paragraph->draw(&surface, firstLine, (maxLines < lastLine)? maxLines : lastLine); in eventExpose()
Dcgnomelayout.c212 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/
Duperf.cpp217 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/
Dwrtjava.cpp217 int32_t maxLines = 3000; in getColumnCount() local
223 if (maxLines < (adjustedLen / columnCount) ){ in getColumnCount()
224 columnCount = adjustedLen / maxLines; in getColumnCount()