Searched defs:band (Results 1 - 20 of 20) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DIntegerInterleavedRaster.java159 * Returns a copy of the data offsets array. For each band the data offset
160 * is the index into the band's data array, of the first sample of the
161 * band.
168 * Returns data offset for the specified band. The data offset
172 public int getDataOffset(int band) { argument
173 return dataOffsets[band];
187 * samples for the same band on the same scanline.
405 * for the nth band at location (x2, y2) would be found at:
452 * @param bandList Array of band indices.
506 * @param bandList Array of band indice
[all...]
H A DShortInterleavedRaster.java47 * IndexColorModel if there is only one band.
170 " or 1 band ComponentSampleModel. Sample model is "+
178 * Returns a copy of the data offsets array. For each band the data offset
179 * is the index into the band's data array, of the first sample of the
180 * band.
187 * Returns the data offset for the specified band. The data offset
190 * @param band The band whose offset is returned.
192 public int getDataOffset(int band) { argument
193 return dataOffsets[band];
334 getShortData(int x, int y, int w, int h, int band, short[] outData) argument
577 putShortData(int x, int y, int w, int h, int band, short[] inData) argument
[all...]
H A DByteBandedRaster.java39 * 8-bit samples stored in possibly separate arrays for each band.
40 * Operations on sets of pixels are performed on a given band in the
41 * Raster before moving on to the next band. The arrays used for
43 * Each band additionally has an offset that is added to determine the
53 /** Data offsets for each band of image data. */
167 * Returns a copy of the data offsets array. For each band the data
168 * offset is the index into the band's data array, of the first sample
169 * of the band.
176 * Returns data offset for the specified band. The data offset
177 * is the index into the band'
181 getDataOffset(int band) argument
212 getDataStorage(int band) argument
330 getByteData(int x, int y, int w, int h, int band, byte[] outData) argument
558 putByteData(int x, int y, int w, int h, int band, byte[] inData) argument
[all...]
H A DByteComponentRaster.java47 * IndexColorModel if there is only one band.
56 /** private band offset for use by native code */
59 /** Data offsets for each band of image data. */
205 * Returns a copy of the data offsets array. For each band the data offset
206 * is the index into the band's data array, of the first sample of the
207 * band.
214 * Returns the data offset for the specified band. The data offset
217 * @param band The band whose offset is returned.
219 public int getDataOffset(int band) { argument
362 getByteData(int x, int y, int w, int h, int band, byte[] outData) argument
644 putByteData(int x, int y, int w, int h, int band, byte[] inData) argument
[all...]
H A DByteInterleavedRaster.java48 * bands, or an IndexColorModel if there is only one band.
147 // Determine range of band offsets
257 * Returns a copy of the data offsets array. For each band the data offset
258 * is the index into the band's data array, of the first sample of the
259 * band.
266 * Returns the data offset for the specified band. The data offset
269 * @param band The band whose offset is returned.
271 public int getDataOffset(int band) { argument
272 return dataOffsets[band];
386 getByteData(int x, int y, int w, int h, int band, byte[] outData) argument
696 putByteData(int x, int y, int w, int h, int band, byte[] inData) argument
[all...]
H A DBytePackedRaster.java39 * elements. This raster has one band whose pixels are packed
351 * from the data array. The band index will be ignored.
355 * byte[] byteData = getByteData(x, y, band, w, h, null);
363 * @param band The band to return, is ignored.
369 int band, byte[] outData) {
871 * region. The band index will be ignored.
884 * @param band The band to set, is ignored.
888 int band, byt
368 getByteData(int x, int y, int w, int h, int band, byte[] outData) argument
887 putByteData(int x, int y, int w, int h, int band, byte[] inData) argument
[all...]
H A DIntegerComponentRaster.java68 /** private band offset for use by native code */
71 /** Data offsets for each band of image data. */
216 * Returns a copy of the data offsets array. For each band the data offset
217 * is the index into the band's data array, of the first sample of the
218 * band.
225 * Returns data offset for the specified band. The data offset
229 public int getDataOffset(int band) { argument
230 return dataOffsets[band];
244 * samples for the same band on the same scanline.
287 for (int band
[all...]
H A DShortBandedRaster.java39 * samples stored in separate arrays for each band. Operations on
40 * sets of pixels are performed on a given band of each pixel
41 * in the set before moving on to the next band. The arrays used
51 /** Data offsets for each band of image data. */
163 * Returns a copy of the data offsets array. For each band the data offset
164 * is the index into the band's data array, of the first sample of the
165 * band.
172 * Returns the data offset for the specified band. The data offset
173 * is the index into the band's data array
175 * @param The band whos
177 getDataOffset(int band) argument
208 getDataStorage(int band) argument
325 getShortData(int x, int y, int w, int h, int band, short[] outData) argument
556 putShortData(int x, int y, int w, int h, int band, short[] inData) argument
[all...]
H A DShortComponentRaster.java46 * IndexColorModel if there is only one band.
56 /** private band offset for use by native code */
59 /** Data offsets for each band of image data. */
205 * Returns a copy of the data offsets array. For each band the data offset
206 * is the index into the band's data array, of the first sample of the
207 * band.
214 * Returns the data offset for the specified band. The data offset
217 * @param band The band whose offset is returned.
219 public int getDataOffset(int band) { argument
361 getShortData(int x, int y, int w, int h, int band, short[] outData) argument
605 putShortData(int x, int y, int w, int h, int band, short[] inData) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJExpression.java110 JExpression band(JExpression right); method in interface:JExpression
H A DJExpressionImpl.java93 public final JExpression band(JExpression right) { method in class:JExpressionImpl
94 return JOp.band(this, right);
H A DJOp.java168 public static JExpression band(JExpression left, JExpression right) { method in class:JOp
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DSpanClipRenderer.java58 int band[]; field in class:SpanClipRenderer.SCRcontext
64 band = new int[4];
92 int[] band = context.band;
93 band[0] = x;
94 band[1] = y;
95 band[2] = x + w;
96 band[3] = y + h;
109 fillTile(ri, atile, offset, tsize, band);
111 eraseTile(ri, atile, offset, tsize, band);
124 fillTile(RegionIterator ri, byte[] alpha, int offset, int tsize, int[] band) argument
128 eraseTile(RegionIterator ri, byte[] alpha, int offset, int tsize, int[] band) argument
[all...]
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DComponentSampleModel.java47 * band interleaving, scanline interleaving, and pixel interleaving.
49 * for the same band on the same scanline. Scanline stride is the number
53 * of the DataBuffer holding each band to the first sample of the band.
81 /** Index for each bank storing a band of image data. */
160 throw new IllegalArgumentException("Must have at least one band.");
188 * @param bandOffsets the band offsets of all bands
269 * Preserves band ordering with new step factor...
320 if (lStride > bStride) { // pix > line > band
326 } else { // pix > band > lin
491 getSampleSize(int band) argument
[all...]
H A DMultiPixelPackedSampleModel.java237 * Returns the number of bits per sample for the specified band.
238 * @param band the specified band
239 * @return the number of bits per sample for the specified band.
241 public int getSampleSize(int band) { argument
318 * <code>MultiPixelPackedSampleModel</code> only has one band, the
320 * band.
333 + "only one band.");
340 * Returns as <code>int</code> the sample in a specified band for the
346 * @param b the band t
[all...]
H A DSampleModel.java42 * for one band of an image and a band consists of all samples of a
45 * There are three bands in the image containing this pixel. One band
47 * image. The second band consists of all the green samples and
48 * the remaining band consists of all of the blue samples. The pixel
50 * a particular band can be stored contiguously or all samples from a
894 * Returns the sample in a specified band for the pixel located
900 * @param b The band to return.
902 * @return the sample in a specified band for the specified pixel.
907 * the band inde
1505 getSampleSize(int band) argument
[all...]
H A DSinglePixelPackedSampleModel.java58 * representing band <code>b</code> for pixel <code>x,y</code>
253 /** Returns the number of bits per sample for the specified band. */
254 public int getSampleSize(int band) { argument
255 return bitSizes[band];
496 * Returns as int the sample in a specified band for the pixel
502 * @param b The band to return.
504 * @return the sample in a specified band for the specified
519 * Returns the samples for a specified band for the specified rectangle
527 * @param b The band to return.
530 * @return the samples for the specified band fo
[all...]
/openjdk7/jdk/src/share/classes/javax/imageio/
H A DImageTypeSpecifier.java372 * offsets for each band.
524 * bank in which each band will be stored.
526 * starting offset of each band within its bank.
989 * Return the number of bits used to represent samples of the given band.
991 * @param band the index of the band to be queried, as an
996 * @exception IllegalArgumentException if <code>band</code> is
997 * negative or greater than the largest band index.
999 public int getBitsPerBand(int band) { argument
1000 if (band <
[all...]
/openjdk7/jdk/src/share/native/sun/awt/image/
H A Dawt_parseImage.c812 * This routine will fill in a buffer of data for either 1 band or all
813 * bands (if band == -1).
817 int awt_getPixelByte(JNIEnv *env, int band, RasterS_t *rasterP, argument
842 if (band >= 0) {
844 if (band >= numBands) {
860 dOff = band;
911 int awt_setPixelByte(JNIEnv *env, int band, RasterS_t *rasterP, argument
935 if (band >= 0) {
937 if (band >= numBands) {
954 dOff = band;
999 awt_getPixelShort(JNIEnv *env, int band, RasterS_t *rasterP, unsigned short *bufferP) argument
1085 awt_setPixelShort(JNIEnv *env, int band, RasterS_t *rasterP, unsigned short *bufferP) argument
[all...]
/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/
H A Dbands.h31 struct band { struct
35 int bn; // band_number of this band
45 byte* rplimit; // end of band (encoded, transmitted)
56 band** le_body; // body of repl, union, call (null-terminated)
60 band& nextBand() { return this[1]; }
61 band& prevBand() { return this[-1]; }
89 // Parse the band and its meta-coding header.
92 // Reset the band for another pass (Cf. Java Band.resetForSecondPass.)
109 jlong getLong(band& lo_band, bool have_hi);
118 static band* makeBand
[all...]

Completed in 61 milliseconds