Searched refs:toX (Results 1 - 3 of 3) 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
34 toX = fromX * kGutenprintUnit / fXDPI;
39 void ToGutenprintCeiling(int32 fromX, int32 fromY, double& toX, argument
41 toX = (fromX * kGutenprintUnit + fXDPI - 1) / fXDPI;
46 void FromGutenprint(double fromX, double fromY, int32& toX, int32& toY) { argument
47 toX = (int32)(fromX * fXDPI / kGutenprintUnit);
51 void FromGutenprintCeiling(double fromX, double fromY, int32& toX, argument
53 toX = (int32)((fromX * fXDPI + kGutenprintUnit - 1) / kGutenprintUnit);
/haiku/src/apps/showimage/
H A DFilter.cpp609 intType toX, const float a0X, const float a1X, const int32 kBPP)
617 for (int32 x = fromX + 1; x < toX; x++, src += kBPP) {
623 if (toX <= srcW) {
704 const intType toX = cd->to; local
714 RowValues(sum, srcData, srcW, fromX, toX, a0X, a1X, kBPP);
722 RowValues(sum, srcData, srcW, fromX, toX, a0X, a1X, kBPP);
729 RowValues(sum, srcData, srcW, fromX, toX, a0X, a1X, kBPP);
608 RowValues(float* sum, const uchar* src, intType srcW, intType fromX, intType toX, const float a0X, const float a1X, const int32 kBPP) argument
H A DFilter.h179 intType fromX, intType toX, const float a0X,

Completed in 85 milliseconds