Searched defs:SkMulS16 (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/skia/include/core/
H A DSkMath.h126 * SkMulS16(a, b) multiplies a * b, but requires that a and b are both int16_t.
131 static inline int32_t SkMulS16(S16CPU x, S16CPU y) { function
143 static inline int32_t SkMulS16(S16CPU x, S16CPU y) { function
149 #define SkMulS16(x, y) ((x) * (y)) macro
161 unsigned prod = SkMulS16(a, b) + (1 << (shift - 1));
172 unsigned prod = SkMulS16(a, b) + 128;
/external/skia/include/core/
H A DSkMath.h126 * SkMulS16(a, b) multiplies a * b, but requires that a and b are both int16_t.
131 static inline int32_t SkMulS16(S16CPU x, S16CPU y) { function
143 static inline int32_t SkMulS16(S16CPU x, S16CPU y) { function
149 #define SkMulS16(x, y) ((x) * (y)) macro
161 unsigned prod = SkMulS16(a, b) + (1 << (shift - 1));
172 unsigned prod = SkMulS16(a, b) + 128;

Completed in 75 milliseconds