Searched defs:pointCount (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/libs/hwui/
H A DSkiaCanvasProxy.cpp385 const size_t pointCount = byteLength >> 1; local
386 std::unique_ptr<SkPoint[]> pts(new SkPoint[pointCount]);
387 for (size_t i = 0; i < pointCount; i++) {
/frameworks/layoutlib/bridge/src/android/graphics/
H A DMatrix_Delegate.java599 float[] dst, int dstIndex, int pointCount) {
857 * @param pointCount The number of points (x,y pairs) to transform
861 int pointCount) {
862 final int count = pointCount * 2;
598 nSetPolyToPoly(long native_object, float[] src, int srcIndex, float[] dst, int dstIndex, int pointCount) argument
860 mapPoints(float[] dst, int dstIndex, float[] src, int srcIndex, int pointCount) argument
/frameworks/base/graphics/java/android/graphics/
H A DMatrix.java212 int pointCount) {
578 int pointCount) {
580 int srcStop = srcIndex + (pointCount << 1);
581 int dstStop = dstIndex + (pointCount << 1);
582 if ((pointCount | srcIndex | dstIndex | srcStop | dstStop) < 0 ||
597 * @param pointCount The number of pairs/points to be used. Must be [0..4]
602 int pointCount) {
603 if (pointCount > 4) {
606 checkPointArrays(src, srcIndex, dst, dstIndex, pointCount);
608 dst, dstIndex, pointCount);
576 checkPointArrays(float[] src, int srcIndex, float[] dst, int dstIndex, int pointCount) argument
600 setPolyToPoly(float[] src, int srcIndex, float[] dst, int dstIndex, int pointCount) argument
630 mapPoints(float[] dst, int dstIndex, float[] src, int srcIndex, int pointCount) argument
858 nSetPolyToPoly(long nObject, float[] src, int srcIndex, float[] dst, int dstIndex, int pointCount) argument
[all...]

Completed in 227 milliseconds