Lines Matching defs:dArray

669             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[],
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[], DataBuffer data) {
875 if (dArray != null)
876 pixels = dArray;
1064 * @param dArray If non-null, returns the samples in this array.
1072 * the band index are not in bounds, or if dArray is too small to
1076 int b, double dArray[],
1089 if (dArray != null)
1090 pixels = dArray;
1148 * @param dArray The input samples in a double array.
1152 * @throws NullPointerException if dArray or data is null.
1156 public void setPixel(int x, int y, double dArray[], DataBuffer data) {
1159 setSample(x, y, i, dArray[i], data);
1247 * @param dArray The input samples in a double array.
1251 * @throws NullPointerException if dArray or data is null.
1253 * not in bounds, or if dArray is too small to hold the input.
1256 double dArray[], DataBuffer data) {
1270 setSample(j, i, k, dArray[Offset++], data);
1438 * @param dArray The input samples in a double array.
1442 * @throws NullPointerException if dArray or data is null.
1444 * the band index are not in bounds, or if dArray is too small to
1448 double dArray[], DataBuffer data) {
1462 setSample(j, i, b, dArray[Offset++], data);