Searched refs:toY (Results 1 - 2 of 2) sorted by relevance

/haiku/src/add-ons/print/drivers/gutenprint/
H A DGPJob.cpp33 void ToGutenprint(int32 fromX, int32 fromY, double& toX, double& toY) { argument
35 toY = fromY * kGutenprintUnit / fYDPI;
40 double& toY) {
42 toY = (fromY * kGutenprintUnit + fYDPI - 1) / fYDPI;
46 void FromGutenprint(double fromX, double fromY, int32& toX, int32& toY) { argument
48 toY = (int32)(fromY * fYDPI / kGutenprintUnit);
52 int32& toY) {
54 toY = (int32)((fromY * fYDPI + kGutenprintUnit - 1) / kGutenprintUnit);
39 ToGutenprintCeiling(int32 fromX, int32 fromY, double& toX, double& toY) argument
51 FromGutenprintCeiling(double fromX, double fromY, int32& toX, int32& toY) argument
/haiku/src/apps/showimage/
H A DFilter.cpp693 const intType toY = (intType)fToY; local
696 const float a1Y = fToY - toY;
721 for (int32 r = fromY + 1; r < toY; r++, srcData += srcBPR) {
728 if (toY <= srcH) {

Completed in 30 milliseconds