Searched defs:matrix (Results 1 - 13 of 13) sorted by relevance

/openjdk7/jdk/src/share/classes/java/awt/image/
H A DBandCombineOp.java39 * in a <CODE>Raster</CODE>, using a specified matrix.
41 * The width of the matrix must be equal to the number of bands in the
43 * column in the matrix than the number of bands, there is an implied 1 at the
45 * of the matrix must be equal to the number of bands in the destination.
61 float[][] matrix; field in class:BandCombineOp
67 * Constructs a <CODE>BandCombineOp</CODE> with the specified matrix.
68 * The width of the matrix must be equal to the number of bands in
70 * more column in the matrix than the number of bands, there is an implied
72 * height of the matrix must be equal to the number of bands in the
80 * @param matrix Th
84 BandCombineOp(float[][] matrix, RenderingHints hints) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/java2d/loops/
H A DFontInfo.java60 public String mtx(double[] matrix) { argument
62 matrix[0]+", "+
63 matrix[1]+", "+
64 matrix[2]+", "+
65 matrix[3]+
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DImagingLib.java77 double[] matrix, int interpType);
79 double[] matrix,
185 double[] matrix = new double[6];
186 bOp.getTransform().getMatrix(matrix);
187 if (transformRaster(src, dst, matrix,
250 double[] matrix = new double[6];
252 bOp.getTransform().getMatrix(matrix);
254 if (transformBI(src, dst, matrix,
76 transformBI(BufferedImage src, BufferedImage dst, double[] matrix, int interpType) argument
78 transformRaster(Raster src, Raster dst, double[] matrix, int interpType) argument
/openjdk7/jdk/src/share/classes/sun/font/
H A DNullFontScaler.java69 long createScalerContext(double[] matrix, int aa, argument
H A DFontDesignMetrics.java126 private double[] matrix; field in class:FontDesignMetrics
349 matrix = new double[4];
H A DFontScaler.java244 abstract long createScalerContext(double[] matrix, argument
H A DFreetypeFontScaler.java213 long createScalerContext(double[] matrix, argument
217 return createScalerContextNative(nativeScaler, matrix,
256 native long createScalerContextNative(long pScaler, double[] matrix, argument
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DHistogram.java40 protected final int[][] matrix; // multi-row matrix {{counti,valueij...}} field in class:Histogram
59 this.matrix = makeMatrix(hist2col);
68 /** Build a histogram given a compact matrix of counts and values. */
70 Histogram(int[][] matrix) { argument
72 matrix = normalizeMatrix(matrix); // clone and sort
73 this.matrix = matrix;
76 for (int i = 0; i < matrix
230 normalizeMatrix(int[][] matrix) argument
496 regroupHistogram(int[][] matrix, int[] groups) argument
[all...]
/openjdk7/jdk/src/share/native/sun/awt/splashscreen/
H A Dsplashscreen_gfx.h53 unsigned matrix[DITHER_SIZE][DITHER_SIZE]; member in struct:DitherSettings
/openjdk7/jdk/src/share/native/sun/font/
H A DFontInstanceAdapter.cpp41 float *matrix,
51 xPointSize = euclidianDistance(matrix[0], matrix[1]);
52 yPointSize = euclidianDistance(matrix[2], matrix[3]);
54 txMat[0] = matrix[0]/xPointSize;
55 txMat[1] = matrix[1]/xPointSize;
56 txMat[2] = matrix[2]/yPointSize;
57 txMat[3] = matrix[3]/yPointSize;
38 FontInstanceAdapter(JNIEnv *theEnv, jobject theFont2D, jobject theFontStrike, float *matrix, le_int32 xRes, le_int32 yRes, le_int32 theUPEM, TTLayoutTableCache *ltables) argument
H A DfreetypeScaler.c369 JNIEnv *env, jobject scaler, jlong pScaler, jdoubleArray matrix,
381 (*env)->GetDoubleArrayRegion(env, matrix, 0, 4, dmat);
426 /* ftsynth.c uses (0x10000, 0x06000, 0x0, 0x10000) matrix to get oblique
368 Java_sun_font_FreetypeFontScaler_createScalerContextNative( JNIEnv *env, jobject scaler, jlong pScaler, jdoubleArray matrix, jint aa, jint fm, jfloat boldness, jfloat italic) argument
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DSunLayoutEngine.cpp171 (JNIEnv *env, jclass cls, jobject font2d, jobject strike, jfloatArray matrix, jint gmask,
178 env->GetFloatArrayRegion(matrix, 0, 4, mat);
170 Java_sun_font_SunLayoutEngine_nativeLayout(JNIEnv *env, jclass cls, jobject font2d, jobject strike, jfloatArray matrix, jint gmask, jint baseIndex, jcharArray text, jint start, jint limit, jint min, jint max, jint script, jint lang, jint typo_flags, jobject pt, jobject gvdata, jlong upem, jlong layoutTables) argument
/openjdk7/jdk/src/share/native/sun/awt/medialib/
H A Dawt_ImagingLib.c747 double *matrix; local
786 * if given matrix array is too short, we can't handle it
791 matrix = (*env)->GetPrimitiveArrayCritical(env, jmatrix, NULL);
792 if (matrix == NULL) {
798 printf("matrix is %g %g %g %g %g %g\n", matrix[0], matrix[1],
799 matrix[2], matrix[3], matrix[
955 double *matrix; local
[all...]

Completed in 40 milliseconds