Searched refs:dArray (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/test/java/awt/image/
H A DGetSamplesTest.java70 double[] dArray = new double[ width * height + numBands];
93 sm.getSamples(0, Integer.MAX_VALUE, 1, 1, 0, dArray, db);
94 sm.setSamples(0, Integer.MAX_VALUE, 1, 1, 0, dArray, db);
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DWritableRaster.java537 * @param dArray The input samples in a double array.
539 * @throws NullPointerException if dArray is null.
541 * in bounds, or if dArray is too small to hold the input.
543 public void setPixel(int x, int y, double dArray[]) { argument
545 dArray,dataBuffer);
600 * @param dArray The input double pixel array.
602 * @throws NullPointerException if dArray is null.
604 * in bounds, or if dArray is too small to hold the input.
606 public void setPixels(int x, int y, int w, int h, double dArray[]) { argument
608 w,h,dArray,dataBuffe
735 setSamples(int x, int y, int w, int h, int b, double dArray[]) argument
[all...]
H A DSampleModel.java669 double[] dArray = (double[])obj;
675 dtemp[k] = dArray[cnt++];
723 * @param dArray If non-null, returns the samples in this array.
730 * not in bounds, or if dArray is too small to hold the output.
732 public double[] getPixel(int x, int y, double dArray[], argument
737 if(dArray != null)
738 pixels = dArray;
853 * @param dArray If non-null, returns the samples in this array.
860 * not in bounds, or if dArray is too small to hold the output.
863 double dArray[], DataBuffe
862 getPixels(int x, int y, int w, int h, double dArray[], DataBuffer data) argument
1075 getSamples(int x, int y, int w, int h, int b, double dArray[], DataBuffer data) argument
1156 setPixel(int x, int y, double dArray[], DataBuffer data) argument
1255 setPixels(int x, int y, int w, int h, double dArray[], DataBuffer data) argument
1447 setSamples(int x, int y, int w, int h, int b, double dArray[], DataBuffer data) argument
[all...]
H A DRaster.java1551 * @param dArray An optionally preallocated double array
1555 * in bounds, or if dArray is too small to hold the output.
1557 public double[] getPixel(int x, int y, double dArray[]) { argument
1560 dArray, dataBuffer);
1618 * @param dArray An optionally pre-allocated double array
1622 * in bounds, or if dArray is too small to hold the output.
1625 double dArray[]) {
1628 w, h, dArray, dataBuffer);
1759 * @param dArray An optionally pre-allocated double array
1764 * the band index are not in bounds, or if dArray i
1624 getPixels(int x, int y, int w, int h, double dArray[]) argument
1767 getSamples(int x, int y, int w, int h, int b, double dArray[]) argument
[all...]

Completed in 39 milliseconds