HomeSort by relevance Sort by last modified time
    Searched refs:SkMScalar (Results 1 - 5 of 5) sorted by null

  /external/skia/include/core/
SkMatrix44.h 18 typedef double SkMScalar;
35 static const SkMScalar SK_MScalarPI = 3.141592653589793;
50 typedef float SkMScalar;
67 static const SkMScalar SK_MScalarPI = 3.14159265f;
79 #define SkIntToMScalar(n) static_cast<SkMScalar>(n)
84 static const SkMScalar SK_MScalar1 = 1;
261 inline SkMScalar get(int row, int col) const {
273 inline void set(int row, int col, SkMScalar value) {
323 void setColMajor(const SkMScalar data[]) { this->setColMajorf(data); }
324 void setRowMajor(const SkMScalar data[]) { this->setRowMajorf(data);
    [all...]
  /external/skia/src/core/
SkMatrix44.cpp 10 static inline bool eq4(const SkMScalar* SK_RESTRICT a,
11 const SkMScalar* SK_RESTRICT b) {
24 const SkMScalar* SK_RESTRICT a = &fMat[0][0];
25 const SkMScalar* SK_RESTRICT b = &other.fMat[0][0];
78 const SkMScalar* src = &fMat[0][0];
95 const SkMScalar* src = &fMat[0][0];
106 const SkMScalar* src = &fMat[0][0];
118 const SkMScalar* src = &fMat[0][0];
130 SkMScalar* dst = &fMat[0][0];
143 SkMScalar* dst = &fMat[0][0]
    [all...]
SkColorSpace_XYZ.cpp 18 , fToXYZD50Hash(SkOpts::hash_fn(toXYZD50.values(), 16 * sizeof(SkMScalar), 0))
28 , fToXYZD50Hash(SkOpts::hash_fn(toXYZD50.values(), 16 * sizeof(SkMScalar), 0))
  /external/skia/tests/
Matrix44Test.cpp 19 static bool nearly_equal_mscalar(SkMScalar a, SkMScalar b) {
20 const SkMScalar tolerance = SK_MScalar1 / 200000;
22 return SkTAbs<SkMScalar>(a - b) <= tolerance;
184 SkMScalar data[] = {
198 SkMScalar src2[] = { 1, 2 };
199 SkMScalar src4[] = { src2[0], src2[1], 0, 1 };
200 SkMScalar dstA[4], dstB[4];
248 SkMScalar dx = 0;
249 SkMScalar dy = 0
    [all...]
  /external/skia/bench/
Matrix44Bench.cpp 108 SkMScalar fX, fY, fZ;
245 SkMScalar fX, fY, fZ;
259 const SkMScalar v = SkDoubleToMScalar(1.5);

Completed in 5011 milliseconds