Home
last modified time | relevance | path

Searched refs:toRow (Results 1 – 3 of 3) sorted by relevance

/haiku/src/apps/showimage/
H A DFilter.h176 void ScaleBilinear(int32 fromRow, int32 toRow);
177 void ScaleBilinearFP(int32 fromRow, int32 toRow);
181 void DownScaleBilinear(int32 fromRow, int32 toRow);
183 void Dither(int32 fromRow, int32 toRow);
H A DFilter.cpp343 Scaler::ScaleBilinear(intType fromRow, int32 toRow) in ScaleBilinear() argument
384 for (y = fromRow; IsRunning() && y <= toRow; y++, destDataRow += destBPR) { in ScaleBilinear()
479 Scaler::ScaleBilinearFP(intType fromRow, int32 toRow) in ScaleBilinearFP() argument
526 for (y = fromRow; IsRunning() && y <= toRow; y++, destDataRow += destBPR) { in ScaleBilinearFP()
640 Scaler::DownScaleBilinear(intType fromRow, int32 toRow) in DownScaleBilinear() argument
688 for (y = fromRow; IsRunning() && y <= toRow; y ++, destDataRow += destBPR) { in DownScaleBilinear()
768 Scaler::Dither(int32 fromRow, int32 toRow) in Dither() argument
819 for (y = fromRow; IsRunning() && y <= toRow; y++, srcDataRow += srcBPR, in Dither()
871 if (y > toRow) break; in Dither()
/haiku/src/kits/interface/
H A DGridLayout.cpp720 int32 toRow = min_c(row + rowCount, fRowCount); in _AreGridCellsEmpty() local
723 for (int32 y = row; y < toRow; y++) { in _AreGridCellsEmpty()