Home
last modified time | relevance | path

Searched refs:bandHeight (Results 1 – 25 of 95) sorted by relevance

1234

/dports/print/splix/splix-6752e71281f1289a3b76357d84b65b0d893615b3/splix/src/
H A Dcompress.cpp72 bandHeight = request.printer()->bandHeight(); in _compressBandedPage()
74 bandHeight /= 2; in _compressBandedPage()
75 bandSize = lineWidthInB * bandHeight; in _compressBandedPage()
91 unsigned long localHeight = bandHeight; in _compressBandedPage()
96 if (pageHeight < bandHeight) { in _compressBandedPage()
203 bandHeight = request.printer()->bandHeight(); in _compressBandedJBIGPage()
216 bandSize = bufferWidthInB * bandHeight; in _compressBandedJBIGPage()
233 unsigned long localHeight = bandHeight; in _compressBandedJBIGPage()
238 if (pageHeight < bandHeight) { in _compressBandedJBIGPage()
318 bandHeight = request.printer()->bandHeight(); in _compressWholePage()
[all …]
/dports/print/splix/splix-6752e71281f1289a3b76357d84b65b0d893615b3/tags/splix-2.0.0/src/
H A Dcompress.cpp71 bandHeight = request.printer()->bandHeight(); in _compressBandedPage()
73 bandHeight /= 2; in _compressBandedPage()
74 bandSize = lineWidthInB * bandHeight; in _compressBandedPage()
90 unsigned long localHeight = bandHeight; in _compressBandedPage()
95 if (pageHeight < bandHeight) { in _compressBandedPage()
124 band[x * bandHeight + y] = planes[i][index + x + in _compressBandedPage()
128 band[x * bandHeight + y] = 0; in _compressBandedPage()
181 pageHeight = theEnd ? 0 : pageHeight - bandHeight; in _compressBandedPage()
209 bandHeight = request.printer()->bandHeight(); in _compressWholePage()
211 planeHeight = ((pageHeight + bandHeight - 1) / bandHeight) * bandHeight; in _compressWholePage()
[all …]
/dports/print/splix/splix-6752e71281f1289a3b76357d84b65b0d893615b3/branches/branche-2.0/src/
H A Dcompress.cpp51 unsigned long index=0, pageHeight, lineWidthInB, bandHeight, bandSize; in _compressBandedPage() local
59 bandHeight = request.printer()->bandHeight(); in _compressBandedPage()
60 bandSize = lineWidthInB * bandHeight; in _compressBandedPage()
75 unsigned long localHeight = bandHeight, bytesToCopy = bandSize; in _compressBandedPage()
80 if (pageHeight < bandHeight) { in _compressBandedPage()
95 band[x * bandHeight + y] = planes[i][index + x + in _compressBandedPage()
112 plane = algo.compress(request, band, page->width(), bandHeight); in _compressBandedPage()
116 current = new Band(bandNumber, page->width(), bandHeight); in _compressBandedPage()
124 pageHeight = theEnd ? 0 : pageHeight - bandHeight; in _compressBandedPage()
150 request.printer()->bandHeight()); in _compressWholePage()
/dports/graphics/blend2d/blend2d-592d1ba52672bbf6365aba476bfe26b7bd2dfab8/src/blend2d/raster/
H A Drasterfiller.cpp41 uint32_t bandHeight = edgeStorage->bandHeight(); in debugEdges() local
58 …intf("BAND #%d y={%d:%d}\n", int(bandId), int(bandId * bandHeight), int((bandId + 1) * bandHeight in debugEdges()
110 uint32_t bandHeight = edgeStorage->bandHeight(); in fillAnalyticImpl() local
111 uint32_t bandHeightMask = bandHeight - 1; in fillAnalyticImpl()
117 size_t requiredHeight = bandHeight; in fillAnalyticImpl()
155 …torage.bitStride, cellStorage.cellPtrTop, cellStorage.cellStride, bandId * bandHeight, bandHeight); in fillAnalyticImpl()
166 ras._bandEnd = blMin((bandId + 1) * bandHeight, yEnd) - 1; in fillAnalyticImpl()
258 ras._bandOffset = (ras._bandOffset + bandHeight) & ~bandHeightMask; in fillAnalyticImpl()
H A Drasterworkercontext.cpp44 uint32_t bandHeight = edgeStorage.bandHeight(); in initEdgeStorage() local
45 uint32_t bandCount = (height + bandHeight - 1) >> blBitCtz(bandHeight); in initEdgeStorage()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/java.desktop/windows/classes/sun/awt/windows/
H A DWEmbeddedFrame.java51 private int bandHeight = 0; field in WEmbeddedFrame
143 bandHeight = Math.min(MAX_BAND_SIZE/bandWidth, frameHeight); in print()
146 imgHgt = bandHeight * yscale; in print()
160 for (int bandTop = 0; bandTop < frameHeight; bandTop += bandHeight) { in print()
161 clearGraphics.fillRect(0, 0, bandWidth, bandHeight); in print()
165 int currBandHeight = bandHeight; in print()
167 if ((bandTop+bandHeight) > frameHeight) { in print()
179 g2d.translate(0, -bandHeight); in print()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/java.desktop/windows/classes/sun/awt/windows/
H A DWEmbeddedFrame.java51 private int bandHeight = 0; field in WEmbeddedFrame
143 bandHeight = Math.min(MAX_BAND_SIZE/bandWidth, frameHeight); in print()
146 imgHgt = bandHeight * yscale; in print()
160 for (int bandTop = 0; bandTop < frameHeight; bandTop += bandHeight) { in print()
161 clearGraphics.fillRect(0, 0, bandWidth, bandHeight); in print()
165 int currBandHeight = bandHeight; in print()
167 if ((bandTop+bandHeight) > frameHeight) { in print()
179 g2d.translate(0, -bandHeight); in print()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/java.desktop/windows/classes/sun/awt/windows/
H A DWEmbeddedFrame.java51 private int bandHeight = 0; field in WEmbeddedFrame
143 bandHeight = Math.min(MAX_BAND_SIZE/bandWidth, frameHeight); in print()
146 imgHgt = bandHeight * yscale; in print()
160 for (int bandTop = 0; bandTop < frameHeight; bandTop += bandHeight) { in print()
161 clearGraphics.fillRect(0, 0, bandWidth, bandHeight); in print()
165 int currBandHeight = bandHeight; in print()
167 if ((bandTop+bandHeight) > frameHeight) { in print()
179 g2d.translate(0, -bandHeight); in print()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jdk/src/windows/classes/sun/awt/windows/
H A DWEmbeddedFrame.java47 private int bandHeight = 0; field in WEmbeddedFrame
140 bandHeight = Math.min(MAX_BAND_SIZE/bandWidth, frameHeight); in print()
143 imgHgt = bandHeight * yscale; in print()
157 for (int bandTop = 0; bandTop < frameHeight; bandTop += bandHeight) { in print()
158 clearGraphics.fillRect(0, 0, bandWidth, bandHeight); in print()
162 int currBandHeight = bandHeight; in print()
164 if ((bandTop+bandHeight) > frameHeight) { in print()
176 g2d.translate(0, -bandHeight); in print()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/java.desktop/windows/classes/sun/awt/windows/
H A DWEmbeddedFrame.java51 private int bandHeight = 0; field in WEmbeddedFrame
143 bandHeight = Math.min(MAX_BAND_SIZE/bandWidth, frameHeight); in print()
146 imgHgt = bandHeight * yscale; in print()
160 for (int bandTop = 0; bandTop < frameHeight; bandTop += bandHeight) { in print()
161 clearGraphics.fillRect(0, 0, bandWidth, bandHeight); in print()
165 int currBandHeight = bandHeight; in print()
167 if ((bandTop+bandHeight) > frameHeight) { in print()
179 g2d.translate(0, -bandHeight); in print()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/java.desktop/windows/classes/sun/awt/windows/
H A DWEmbeddedFrame.java51 private int bandHeight = 0; field in WEmbeddedFrame
143 bandHeight = Math.min(MAX_BAND_SIZE/bandWidth, frameHeight); in print()
146 imgHgt = bandHeight * yscale; in print()
160 for (int bandTop = 0; bandTop < frameHeight; bandTop += bandHeight) { in print()
161 clearGraphics.fillRect(0, 0, bandWidth, bandHeight); in print()
165 int currBandHeight = bandHeight; in print()
167 if ((bandTop+bandHeight) > frameHeight) { in print()
179 g2d.translate(0, -bandHeight); in print()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/java.desktop/windows/classes/sun/awt/windows/
H A DWEmbeddedFrame.java51 private int bandHeight = 0; field in WEmbeddedFrame
143 bandHeight = Math.min(MAX_BAND_SIZE/bandWidth, frameHeight); in print()
146 imgHgt = bandHeight * yscale; in print()
160 for (int bandTop = 0; bandTop < frameHeight; bandTop += bandHeight) { in print()
161 clearGraphics.fillRect(0, 0, bandWidth, bandHeight); in print()
165 int currBandHeight = bandHeight; in print()
167 if ((bandTop+bandHeight) > frameHeight) { in print()
179 g2d.translate(0, -bandHeight); in print()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/java.desktop/windows/classes/sun/awt/windows/
H A DWEmbeddedFrame.java51 private int bandHeight = 0; field in WEmbeddedFrame
144 bandHeight = Math.min(MAX_BAND_SIZE/bandWidth, frameHeight); in print()
147 imgHgt = bandHeight * yscale; in print()
161 for (int bandTop = 0; bandTop < frameHeight; bandTop += bandHeight) { in print()
162 clearGraphics.fillRect(0, 0, bandWidth, bandHeight); in print()
166 int currBandHeight = bandHeight; in print()
168 if ((bandTop+bandHeight) > frameHeight) { in print()
180 g2d.translate(0, -bandHeight); in print()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/java.desktop/windows/classes/sun/awt/windows/
H A DWEmbeddedFrame.java51 private int bandHeight = 0; field in WEmbeddedFrame
143 bandHeight = Math.min(MAX_BAND_SIZE/bandWidth, frameHeight); in print()
146 imgHgt = bandHeight * yscale; in print()
160 for (int bandTop = 0; bandTop < frameHeight; bandTop += bandHeight) { in print()
161 clearGraphics.fillRect(0, 0, bandWidth, bandHeight); in print()
165 int currBandHeight = bandHeight; in print()
167 if ((bandTop+bandHeight) > frameHeight) { in print()
179 g2d.translate(0, -bandHeight); in print()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/jdk/src/windows/classes/sun/awt/windows/
H A DWEmbeddedFrame.java47 private int bandHeight = 0; field in WEmbeddedFrame
140 bandHeight = Math.min(MAX_BAND_SIZE/bandWidth, frameHeight); in print()
143 imgHgt = bandHeight * yscale; in print()
157 for (int bandTop = 0; bandTop < frameHeight; bandTop += bandHeight) { in print()
158 clearGraphics.fillRect(0, 0, bandWidth, bandHeight); in print()
162 int currBandHeight = bandHeight; in print()
164 if ((bandTop+bandHeight) > frameHeight) { in print()
176 g2d.translate(0, -bandHeight); in print()
/dports/print/splix/splix-6752e71281f1289a3b76357d84b65b0d893615b3/branches/branche-0.0/src/
H A Dcompress.cpp41 int calcOccurs(unsigned char *band, unsigned long bandHeight, in calcOccurs() argument
47 size = bandWidth * bandHeight; in calcOccurs()
92 unsigned long bandWidth, unsigned long bandHeight) in compressBand() argument
101 endOut = bandArray->next + bandWidth * bandHeight; in compressBand()
103 endIn = beginIn + bandWidth * bandHeight; in compressBand()
/dports/print/splix/splix-6752e71281f1289a3b76357d84b65b0d893615b3/branches/branche-1.0/src/
H A Dcompress.cpp45 int calcOccurs(unsigned char *band, unsigned long bandHeight, in calcOccurs() argument
51 size = bandWidth * bandHeight; in calcOccurs()
96 unsigned long bandWidth, unsigned long bandHeight) in compressBand() argument
105 endOut = bandArray->next + bandWidth * bandHeight; in compressBand()
107 endIn = beginIn + bandWidth * bandHeight; in compressBand()
/dports/print/splix/splix-6752e71281f1289a3b76357d84b65b0d893615b3/tags/splix-1.0.2/src/
H A Dcompress.cpp41 int calcOccurs(unsigned char *band, unsigned long bandHeight, in calcOccurs() argument
47 size = bandWidth * bandHeight; in calcOccurs()
92 unsigned long bandWidth, unsigned long bandHeight) in compressBand() argument
101 endOut = bandArray->next + bandWidth * bandHeight; in compressBand()
103 endIn = beginIn + bandWidth * bandHeight; in compressBand()
/dports/print/splix/splix-6752e71281f1289a3b76357d84b65b0d893615b3/tags/splix-1.1.0/src/
H A Dcompress.cpp45 int calcOccurs(unsigned char *band, unsigned long bandHeight, in calcOccurs() argument
51 size = bandWidth * bandHeight; in calcOccurs()
96 unsigned long bandWidth, unsigned long bandHeight) in compressBand() argument
105 endOut = bandArray->next + bandWidth * bandHeight; in compressBand()
107 endIn = beginIn + bandWidth * bandHeight; in compressBand()
/dports/print/splix/splix-6752e71281f1289a3b76357d84b65b0d893615b3/tags/splix-1.0.1/src/
H A Dcompress.cpp41 int calcOccurs(unsigned char *band, unsigned long bandHeight, in calcOccurs() argument
47 size = bandWidth * bandHeight; in calcOccurs()
92 unsigned long bandWidth, unsigned long bandHeight) in compressBand() argument
101 endOut = bandArray->next + bandWidth * bandHeight; in compressBand()
103 endIn = beginIn + bandWidth * bandHeight; in compressBand()
/dports/print/splix/splix-6752e71281f1289a3b76357d84b65b0d893615b3/tags/splix-1.0.1-1/src/
H A Dcompress.cpp41 int calcOccurs(unsigned char *band, unsigned long bandHeight, in calcOccurs() argument
47 size = bandWidth * bandHeight; in calcOccurs()
92 unsigned long bandWidth, unsigned long bandHeight) in compressBand() argument
101 endOut = bandArray->next + bandWidth * bandHeight; in compressBand()
103 endIn = beginIn + bandWidth * bandHeight; in compressBand()
/dports/print/splix/splix-6752e71281f1289a3b76357d84b65b0d893615b3/tags/splix-0.0.2/src/
H A Dcompress.cpp41 int calcOccurs(unsigned char *band, unsigned long bandHeight, in calcOccurs() argument
47 size = bandWidth * bandHeight; in calcOccurs()
92 unsigned long bandWidth, unsigned long bandHeight) in compressBand() argument
101 endOut = bandArray->next + bandWidth * bandHeight; in compressBand()
103 endIn = beginIn + bandWidth * bandHeight; in compressBand()
/dports/print/splix/splix-6752e71281f1289a3b76357d84b65b0d893615b3/tags/splix-1.1.1/src/
H A Dcompress.cpp45 int calcOccurs(unsigned char *band, unsigned long bandHeight, in calcOccurs() argument
51 size = bandWidth * bandHeight; in calcOccurs()
96 unsigned long bandWidth, unsigned long bandHeight) in compressBand() argument
105 endOut = bandArray->next + bandWidth * bandHeight; in compressBand()
107 endIn = beginIn + bandWidth * bandHeight; in compressBand()
/dports/print/splix/splix-6752e71281f1289a3b76357d84b65b0d893615b3/branches/branche-0.0/include/
H A Dcompress.h31 unsigned long bandWidth, unsigned long bandHeight);
32 extern int calcOccurs(unsigned char *band, unsigned long bandHeight,
/dports/print/splix/splix-6752e71281f1289a3b76357d84b65b0d893615b3/branches/branche-1.0/include/
H A Dcompress.h31 unsigned long bandWidth, unsigned long bandHeight);
32 extern int calcOccurs(unsigned char *band, unsigned long bandHeight,

1234