HomeSort by relevance Sort by last modified time
    Searched defs:mapPoints (Results 1 - 9 of 9) sorted by null

  /external/dng_sdk/source/
dng_gain_map.cpp 344 dng_point mapPoints;
346 mapPoints.v = stream.Get_uint32 ();
347 mapPoints.h = stream.Get_uint32 ();
367 (int) mapPoints.v,
368 (int) mapPoints.h);
385 if (mapPoints.v == 1)
391 if (mapPoints.h == 1)
397 if (mapPoints.v < 1 ||
398 mapPoints.h < 1 ||
407 mapPoints,
    [all...]
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowMatrixTest.java 504 matrix.mapPoints(output, input);
  /external/skia/include/core/
SkMatrix.h 325 With mapPoints(), scales SkPoint along the x-axis.
332 With mapPoints(), scales SkPoint along the y-axis.
339 With mapPoints(), skews SkPoint along the y-axis.
347 With mapPoints(), skews SkPoint along the x-axis.
355 With mapPoints(), moves SkPoint along the x-axis.
362 With mapPoints(), moves SkPoint along the y-axis.
    [all...]
  /external/skia/modules/canvaskit/
interface.js 16 // have a mapPoints() function (which could maybe be tacked on here).
51 // See SkMatrix.h::mapPoints for the docs on the math.
52 CanvasKit.SkMatrix.mapPoints = function(matrix, ptArr) {
54 throw 'mapPoints requires an even length arr';
  /external/skqp/experimental/canvaskit/
interface.js 17 // have a mapPoints() function (which could maybe be tacked on here).
52 // See SkMatrix.h::mapPoints for the docs on the math.
53 CanvasKit.SkMatrix.mapPoints = function(matrix, ptArr) {
55 throw 'mapPoints requires an even length arr';
  /external/skqp/include/core/
SkMatrix.h 325 With mapPoints(), scales SkPoint along the x-axis.
332 With mapPoints(), scales SkPoint along the y-axis.
339 With mapPoints(), skews SkPoint along the y-axis.
347 With mapPoints(), skews SkPoint along the x-axis.
355 With mapPoints(), moves SkPoint along the x-axis.
362 With mapPoints(), moves SkPoint along the y-axis.
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
MatrixTest.java 373 mMatrix.mapPoints(value);
379 mMatrix.mapPoints(null);
388 mMatrix.mapPoints(dst, src);
394 mMatrix.mapPoints(new float[8], new float[9]);
403 mMatrix.mapPoints(dst, 0, src, 0, 9 >> 1);
409 mMatrix.mapPoints(null, 0, new float[9], 0, 1);
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowMatrix.java 326 protected void mapPoints(float[] dst, int dstIndex, float[] src, int srcIndex, int pointCount) {
  /external/skia/src/core/
SkMatrix.cpp 799 void SkMatrix::mapPoints(SkPoint dst[], const SkPoint src[], int count) const {
    [all...]

Completed in 2224 milliseconds