Searched defs:srcLUT (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/native/sun/awt/image/
H A Dawt_ImageRep.c123 int *srcLUT = NULL; local
191 srcLUT = (int *) (*env)->GetPrimitiveArrayCritical(env, jlut, NULL);
192 if (srcLUT == NULL) {
200 (*env)->ReleasePrimitiveArrayCritical(env, jlut, srcLUT, JNI_ABORT);
207 (*env)->ReleasePrimitiveArrayCritical(env, jlut, srcLUT, JNI_ABORT);
219 *dstP = srcLUT[*srcP++];
224 (*env)->ReleasePrimitiveArrayCritical(env, jlut, srcLUT, JNI_ABORT);
241 unsigned int *srcLUT = NULL; local
313 srcLUT = (unsigned int *) (*env)->GetPrimitiveArrayCritical(env, jlut,
315 if (srcLUT
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DImageRepresentation.java70 int[] srcLUT = null; field in class:ImageRepresentation
216 srcLUT = null;
221 srcLUT = new int[Math.max(numSrcLUT, 256)];
222 icm.getRGBs(srcLUT);
230 srcLUT = null;
239 srcLUT = null;
296 newpixels[i] = srcLUT[data[coff+i]&0xff];
325 srcLUT = null;
422 if (isSameCM && (cmodel != model) && (srcLUT != null) &&
429 if (!setDiffICM(x, y, w, h, srcLUT, srcLUTtransInde
[all...]

Completed in 24 milliseconds