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

  /external/skia/include/utils/
SkUnitMappers.h 30 SkFract fScale; // computed from fSegments
SkCamera.h 23 typedef SkFract SkUnitScalar;
  /external/skia/include/core/
SkFixed.h 51 typedef int32_t SkFract;
58 #define SkFloatToFract(x) ((SkFract)((x) * SK_Fract1))
75 /** Converts a SkFixed to a SkFract, asserting that the result does not overflow
79 inline SkFract SkFixedToFract(SkFixed x)
96 /** Converts a SkFract to a SkFixed
117 SkFract SkFractMul_portable(SkFract, SkFract);
173 inline SkFract SkFractMul_longlong(SkFract a, SkFract b
    [all...]
Sk64.h 56 SkFract getFract() const;
SkMatrix.h 22 typedef SkFract SkPersp;
  /external/skia/src/core/
SkFloat.h 23 void setFract(SkFract value) { fPacked = SetShift(value, -30); }
28 SkFract getFract() const { return GetShift(fPacked, -30); }
SkMath.cpp 155 SkFract SkFractMul_portable(SkFract a, SkFract b) {
161 return static_cast<SkFract>((SkLONGLONG)a * b >> 30);
Sk64.cpp 154 SkFract Sk64::getFract() const
SkMatrix.cpp 563 static inline SkFixed fracmuladdmul(SkFixed a, SkFract b, SkFixed c,
564 SkFract d) {
857 SkFract scale = tmp.get32();
    [all...]
  /external/skia/tests/
MathTest.cpp 504 SkFract x = rand.nextU() >> 1;
506 SkFract xr = SkFractSqrt(x);
507 SkFract check = SkFloatToFract(sqrt(xx));

Completed in 1707 milliseconds