Searched refs:dstIndex (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/graphics/java/android/graphics/
H A DMatrix.java356 float[] dst, int dstIndex,
360 int dstStop = dstIndex + (pointCount << 1);
361 if ((pointCount | srcIndex | dstIndex | srcStop | dstStop) < 0 ||
375 * @param dstIndex Index of the first pair of dst values
380 float[] dst, int dstIndex,
385 checkPointArrays(src, srcIndex, dst, dstIndex, pointCount);
387 dst, dstIndex, pointCount);
405 * @param dstIndex The index of the first [x,y] pair of dst floats
410 public void mapPoints(float[] dst, int dstIndex, float[] src, int srcIndex, argument
412 checkPointArrays(src, srcIndex, dst, dstIndex, pointCoun
355 checkPointArrays(float[] src, int srcIndex, float[] dst, int dstIndex, int pointCount) argument
379 setPolyToPoly(float[] src, int srcIndex, float[] dst, int dstIndex, int pointCount) argument
428 mapVectors(float[] dst, int dstIndex, float[] src, int srcIndex, int vectorCount) argument
657 native_setPolyToPoly(int native_object, float[] src, int srcIndex, float[] dst, int dstIndex, int pointCount) argument
660 native_mapPoints(int native_object, float[] dst, int dstIndex, float[] src, int srcIndex, int ptCount, boolean isPts) argument
[all...]
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DMatrix.java729 * @param dstIndex Index of the first pair of dst values
735 float[] dst, int dstIndex,
740 checkPointArrays(src, srcIndex, dst, dstIndex, pointCount);
781 * @param dstIndex The index of the first [x,y] pair of dst floats
787 public void mapPoints(float[] dst, int dstIndex, float[] src, int srcIndex, argument
789 checkPointArrays(src, srcIndex, dst, dstIndex, pointCount);
800 dst[i + dstIndex] = x;
801 dst[i + dstIndex + 1] = y;
811 * @param dstIndex The index of the first [x,y] pair of dst floats
817 public void mapVectors(float[] dst, int dstIndex, floa argument
734 setPolyToPoly(float[] src, int srcIndex, float[] dst, int dstIndex, int pointCount) argument
[all...]
/frameworks/base/core/jni/android/graphics/
H A DMatrix.cpp238 jfloatArray jdst, int dstIndex, int ptCount) {
240 SkASSERT(dstIndex >= 0);
244 AutoJavaFloatArray autoDst(env, jdst, dstIndex + (ptCount << 1));
246 float* dst = autoDst.ptr() + dstIndex;
268 jfloatArray dst, int dstIndex,
273 AutoJavaFloatArray autoDst(env, dst, dstIndex + (ptCount << 1));
275 float* dstArray = autoDst.ptr() + dstIndex;
236 setPolyToPoly(JNIEnv* env, jobject clazz, SkMatrix* matrix, jfloatArray jsrc, int srcIndex, jfloatArray jdst, int dstIndex, int ptCount) argument
267 mapPoints(JNIEnv* env, jobject clazz, SkMatrix* matrix, jfloatArray dst, int dstIndex, jfloatArray src, int srcIndex, int ptCount, bool isPts) argument

Completed in 31 milliseconds