Home
last modified time | relevance | path

Searched refs:rowBuf (Results 1 – 25 of 335) sorted by relevance

12345678910>>...14

/dports/devel/app-builder/app-builder-3.4.2/vendor/github.com/jsummers/gobmp/
H A Dwriter.go145 for i := range rowBuf {
146 rowBuf[i] = 0
158 for i := range rowBuf {
159 rowBuf[i] = 0
166 rowBuf[i/2] |= v
182 rowBuf[i] = uint8(r >> 8)
193 rowBuf[i*3+k] = uint8(s[k] >> 8)
206 rowBuf[i*4+k] = 0
208 rowBuf[i*4+k] = uint8(s[k] >> 8)
242 rowBuf := make([]byte, e.dstStride)
[all …]
/dports/comms/hylafax/hylafax-6.0.7/faxd/
H A DMemoryDecoder.c++42 rowBuf = NULL; in MemoryDecoder()
60 rowBuf = new u_char[byteWidth]; in MemoryDecoder()
67 if (rowBuf) in ~MemoryDecoder()
68 delete rowBuf; in ~MemoryDecoder()
193 (void)decodeRow(rowBuf, width); in fixFirstEOL()
202 enc.encode(rowBuf, width, 1); in fixFirstEOL()
408 (void) decodeRow(rowBuf, width); in encodeTagLine()
412 memcpy(refrow, rowBuf, byteWidth*sizeof(u_char)); in encodeTagLine()
459 (void) decodeRow(rowBuf, width); in convertDataFormat()
470 enc.encode(rowBuf, width, 1); // 1-D in convertDataFormat()
[all …]
/dports/games/gtkradiant/GPL/GtkRadiant/tools/quake2/qdata_heretic2/common/
H A Dlbmlib.c749 byte *rowBuf; in LoadTGA() local
829 rowBuf = pixbuf; in LoadTGA()
838 rowBuf[0] = red; in LoadTGA()
840 rowBuf[2] = blue; in LoadTGA()
841 rowBuf[3] = 255; in LoadTGA()
849 rowBuf[0] = red; in LoadTGA()
851 rowBuf[2] = blue; in LoadTGA()
864 rowBuf = pixbuf; in LoadTGA()
889 rowBuf[0] = red; in LoadTGA()
891 rowBuf[2] = blue; in LoadTGA()
[all …]
/dports/games/netradiant/netradiant-20150621-src/tools/quake2/qdata_heretic2/common/
H A Dlbmlib.c828 rowBuf = pixbuf; in LoadTGA()
837 rowBuf[0] = red; in LoadTGA()
838 rowBuf[1] = green; in LoadTGA()
839 rowBuf[2] = blue; in LoadTGA()
840 rowBuf[3] = 255; in LoadTGA()
848 rowBuf[0] = red; in LoadTGA()
849 rowBuf[1] = green; in LoadTGA()
850 rowBuf[2] = blue; in LoadTGA()
862 rowBuf = pixbuf; in LoadTGA()
886 rowBuf[0] = red; in LoadTGA()
[all …]
/dports/java/berkeley-db/je-6.2.31/src/com/sleepycat/je/util/
H A DDbFilterStats.java55 private final StringBuffer rowBuf = new StringBuffer(); field in DbFilterStats
171 rowBuf.setLength(0); in processFile()
173 if (rowBuf.length() != 0) { in processFile()
174 rowBuf.append(DELIMITER); in processFile()
178 rowBuf.append(value); in processFile()
180 rowBuf.append(" "); in processFile()
207 rowBuf.setLength(0); in outputRow()
209 if (rowBuf.length() != 0) { in outputRow()
210 rowBuf.append(DELIMITER); in outputRow()
212 rowBuf.append(val); in outputRow()
[all …]
/dports/graphics/mesa-devel/mesa-22.0-branchpoint-2059-ge8a63cf61ec/src/glx/
H A Dsinglepix.c43 GLubyte *rowBuf, *colBuf; in __indirect_glGetSeparableFilter() local
70 rowBuf = malloc(widthsize); in __indirect_glGetSeparableFilter()
71 if (!rowBuf) { in __indirect_glGetSeparableFilter()
80 __GLX_SINGLE_GET_CHAR_ARRAY(((char *) rowBuf), widthsize); in __indirect_glGetSeparableFilter()
81 __glEmptyImage(gc, 1, width, 1, 1, format, type, rowBuf, row); in __indirect_glGetSeparableFilter()
82 free((char *) rowBuf); in __indirect_glGetSeparableFilter()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/java.desktop/share/classes/com/sun/imageio/plugins/tiff/
H A DTIFFLZWCompressor.java70 byte[] rowBuf = usePredictor ? new byte[bytesPerRow] : null; in encode()
75 System.arraycopy(b, off, rowBuf, 0, bytesPerRow); in encode()
77 rowBuf[j] -= rowBuf[j - samplesPerPixel]; in encode()
79 lzwCompressor.compress(rowBuf, 0, bytesPerRow); in encode()
H A DTIFFDeflater.java81 byte[] rowBuf = new byte[bytesPerRow]; in encode()
87 System.arraycopy(b, off, rowBuf, 0, bytesPerRow); in encode()
89 rowBuf[j] -= rowBuf[j - samplesPerPixel]; in encode()
92 deflater.setInput(rowBuf); in encode()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/java.desktop/share/classes/com/sun/imageio/plugins/tiff/
H A DTIFFLZWCompressor.java70 byte[] rowBuf = usePredictor ? new byte[bytesPerRow] : null; in encode()
75 System.arraycopy(b, off, rowBuf, 0, bytesPerRow); in encode()
77 rowBuf[j] -= rowBuf[j - samplesPerPixel]; in encode()
79 lzwCompressor.compress(rowBuf, 0, bytesPerRow); in encode()
H A DTIFFDeflater.java81 byte[] rowBuf = new byte[bytesPerRow]; in encode()
87 System.arraycopy(b, off, rowBuf, 0, bytesPerRow); in encode()
89 rowBuf[j] -= rowBuf[j - samplesPerPixel]; in encode()
92 deflater.setInput(rowBuf); in encode()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/java.desktop/share/classes/com/sun/imageio/plugins/tiff/
H A DTIFFLZWCompressor.java70 byte[] rowBuf = usePredictor ? new byte[bytesPerRow] : null; in encode()
75 System.arraycopy(b, off, rowBuf, 0, bytesPerRow); in encode()
77 rowBuf[j] -= rowBuf[j - samplesPerPixel]; in encode()
79 lzwCompressor.compress(rowBuf, 0, bytesPerRow); in encode()
H A DTIFFDeflater.java81 byte[] rowBuf = new byte[bytesPerRow]; in encode()
87 System.arraycopy(b, off, rowBuf, 0, bytesPerRow); in encode()
89 rowBuf[j] -= rowBuf[j - samplesPerPixel]; in encode()
92 deflater.setInput(rowBuf); in encode()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/java.desktop/share/classes/com/sun/imageio/plugins/tiff/
H A DTIFFLZWCompressor.java70 byte[] rowBuf = usePredictor ? new byte[bytesPerRow] : null; in encode()
75 System.arraycopy(b, off, rowBuf, 0, bytesPerRow); in encode()
77 rowBuf[j] -= rowBuf[j - samplesPerPixel]; in encode()
79 lzwCompressor.compress(rowBuf, 0, bytesPerRow); in encode()
H A DTIFFDeflater.java81 byte[] rowBuf = new byte[bytesPerRow]; in encode()
87 System.arraycopy(b, off, rowBuf, 0, bytesPerRow); in encode()
89 rowBuf[j] -= rowBuf[j - samplesPerPixel]; in encode()
92 deflater.setInput(rowBuf); in encode()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/java.desktop/share/classes/com/sun/imageio/plugins/tiff/
H A DTIFFLZWCompressor.java70 byte[] rowBuf = usePredictor ? new byte[bytesPerRow] : null; in encode()
75 System.arraycopy(b, off, rowBuf, 0, bytesPerRow); in encode()
77 rowBuf[j] -= rowBuf[j - samplesPerPixel]; in encode()
79 lzwCompressor.compress(rowBuf, 0, bytesPerRow); in encode()
H A DTIFFDeflater.java81 byte[] rowBuf = new byte[bytesPerRow]; in encode()
87 System.arraycopy(b, off, rowBuf, 0, bytesPerRow); in encode()
89 rowBuf[j] -= rowBuf[j - samplesPerPixel]; in encode()
92 deflater.setInput(rowBuf); in encode()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/java.desktop/share/classes/com/sun/imageio/plugins/tiff/
H A DTIFFLZWCompressor.java70 byte[] rowBuf = usePredictor ? new byte[bytesPerRow] : null; in encode()
75 System.arraycopy(b, off, rowBuf, 0, bytesPerRow); in encode()
77 rowBuf[j] -= rowBuf[j - samplesPerPixel]; in encode()
79 lzwCompressor.compress(rowBuf, 0, bytesPerRow); in encode()
H A DTIFFDeflater.java81 byte[] rowBuf = new byte[bytesPerRow]; in encode()
87 System.arraycopy(b, off, rowBuf, 0, bytesPerRow); in encode()
89 rowBuf[j] -= rowBuf[j - samplesPerPixel]; in encode()
92 deflater.setInput(rowBuf); in encode()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/java.desktop/share/classes/com/sun/imageio/plugins/tiff/
H A DTIFFLZWCompressor.java70 byte[] rowBuf = usePredictor ? new byte[bytesPerRow] : null; in encode()
75 System.arraycopy(b, off, rowBuf, 0, bytesPerRow); in encode()
77 rowBuf[j] -= rowBuf[j - samplesPerPixel]; in encode()
79 lzwCompressor.compress(rowBuf, 0, bytesPerRow); in encode()
H A DTIFFDeflater.java81 byte[] rowBuf = new byte[bytesPerRow]; in encode()
87 System.arraycopy(b, off, rowBuf, 0, bytesPerRow); in encode()
89 rowBuf[j] -= rowBuf[j - samplesPerPixel]; in encode()
92 deflater.setInput(rowBuf); in encode()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/java.desktop/share/classes/com/sun/imageio/plugins/tiff/
H A DTIFFLZWCompressor.java70 byte[] rowBuf = usePredictor ? new byte[bytesPerRow] : null; in encode()
75 System.arraycopy(b, off, rowBuf, 0, bytesPerRow); in encode()
77 rowBuf[j] -= rowBuf[j - samplesPerPixel]; in encode()
79 lzwCompressor.compress(rowBuf, 0, bytesPerRow); in encode()
H A DTIFFDeflater.java81 byte[] rowBuf = new byte[bytesPerRow]; in encode()
87 System.arraycopy(b, off, rowBuf, 0, bytesPerRow); in encode()
89 rowBuf[j] -= rowBuf[j - samplesPerPixel]; in encode()
92 deflater.setInput(rowBuf); in encode()
/dports/lang/clover/mesa-21.3.6/src/glx/
H A Dsinglepix.c43 GLubyte *rowBuf, *colBuf; in __indirect_glGetSeparableFilter() local
70 rowBuf = malloc(widthsize); in __indirect_glGetSeparableFilter()
71 if (!rowBuf) { in __indirect_glGetSeparableFilter()
80 __GLX_SINGLE_GET_CHAR_ARRAY(((char *) rowBuf), widthsize); in __indirect_glGetSeparableFilter()
81 __glEmptyImage(gc, 1, width, 1, 1, format, type, rowBuf, row); in __indirect_glGetSeparableFilter()
82 free((char *) rowBuf); in __indirect_glGetSeparableFilter()
/dports/graphics/libosmesa-gallium/mesa-21.3.6/src/glx/
H A Dsinglepix.c43 GLubyte *rowBuf, *colBuf; in __indirect_glGetSeparableFilter() local
70 rowBuf = malloc(widthsize); in __indirect_glGetSeparableFilter()
71 if (!rowBuf) { in __indirect_glGetSeparableFilter()
80 __GLX_SINGLE_GET_CHAR_ARRAY(((char *) rowBuf), widthsize); in __indirect_glGetSeparableFilter()
81 __glEmptyImage(gc, 1, width, 1, 1, format, type, rowBuf, row); in __indirect_glGetSeparableFilter()
82 free((char *) rowBuf); in __indirect_glGetSeparableFilter()
/dports/graphics/libosmesa/mesa-21.3.6/src/glx/
H A Dsinglepix.c43 GLubyte *rowBuf, *colBuf; in __indirect_glGetSeparableFilter() local
70 rowBuf = malloc(widthsize); in __indirect_glGetSeparableFilter()
71 if (!rowBuf) { in __indirect_glGetSeparableFilter()
80 __GLX_SINGLE_GET_CHAR_ARRAY(((char *) rowBuf), widthsize); in __indirect_glGetSeparableFilter()
81 __glEmptyImage(gc, 1, width, 1, 1, format, type, rowBuf, row); in __indirect_glGetSeparableFilter()
82 free((char *) rowBuf); in __indirect_glGetSeparableFilter()

12345678910>>...14