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

  /external/chromium_org/third_party/skia/bench/
MatrixBench.cpp 109 static inline void muladdmul(float a, float b, float c, float d, function in class:FloatConcatMatrixBench
117 muladdmul(a[0], b[0], a[1], b[3], &r[0]);
118 muladdmul(a[0], b[1], a[1], b[4], &r[1]);
119 muladdmul(a[0], b[2], a[1], b[5], &r[2]);
121 muladdmul(a[3], b[0], a[4], b[3], &r[3]);
122 muladdmul(a[3], b[1], a[4], b[4], &r[4]);
123 muladdmul(a[3], b[2], a[4], b[5], &r[5]);
152 static inline void muladdmul(float a, float b, float c, float d, function in class:FloatDoubleConcatMatrixBench
160 muladdmul(a[0], b[0], a[1], b[3], &r[0]);
161 muladdmul(a[0], b[1], a[1], b[4], &r[1])
190 static inline void muladdmul(double a, double b, double c, double d, function in class:DoubleConcatMatrixBench
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkMatrix.cpp 590 static inline float muladdmul(float a, float b, float c, float d) { function
630 tmp.fMat[kMScaleX] = muladdmul(a.fMat[kMScaleX],
635 tmp.fMat[kMSkewX] = muladdmul(a.fMat[kMScaleX],
640 tmp.fMat[kMTransX] = muladdmul(a.fMat[kMScaleX],
647 tmp.fMat[kMSkewY] = muladdmul(a.fMat[kMSkewY],
652 tmp.fMat[kMScaleY] = muladdmul(a.fMat[kMSkewY],
657 tmp.fMat[kMTransY] = muladdmul(a.fMat[kMSkewY],
    [all...]

Completed in 32 milliseconds