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

  /external/skia/include/private/
SkFixed.h 87 SkToS32(SkTPin<int64_t>((SkLeftShift((int64_t)(numer), 16) / (denom)), SK_MinS32, SK_MaxS32))
151 #define SkIntToFixed3232(x) (SkLeftShift((SkFixed3232)(x), 32))
153 #define SkFixedToFixed3232(x) (SkLeftShift((SkFixed3232)(x), 16))
SkFloatBits.h 35 x |= SkLeftShift(sign, 31);
  /external/skia/src/core/
SkFDot6.h 59 SkASSERT((SkLeftShift(x, 10) >> 10) == x);
61 return SkLeftShift(x, 10);
72 return SkLeftShift(a, 16) / b;
SkUtils.cpp 137 hic = SkLeftShift(hic, 1);
141 } while ((hic = SkLeftShift(hic, 1)) < 0);
160 hic = SkLeftShift(hic, 1);
173 } while ((hic = SkLeftShift(hic, 1)) < 0);
191 hic = SkLeftShift(hic, 1);
195 } while ((hic = SkLeftShift(hic, 1)) < 0);
SkEdge.cpp 28 return SkLeftShift(value, 16 - 6 - 1);
221 SkFDot6 dx = (SkLeftShift(x1, 1) - x0 - x2) >> 2;
222 SkFDot6 dy = (SkLeftShift(y1, 1) - y0 - y2) >> 2;
329 SkASSERT((SkLeftShift(x, upShift) >> upShift) == x);
330 return SkLeftShift(x, upShift);
421 fCurveCount = SkToS8(SkLeftShift(-1, shift));
SkScan_AntiPath.cpp 93 fSuperLeft = SkLeftShift(left, SHIFT);
97 fCurrY = SkLeftShift(fTop, SHIFT) - 1;
546 x -= SkLeftShift(fMask.fBounds.fLeft, SHIFT);
593 return (SkLeftShift(value, s) >> s) - value;
707 superRect.set(SkLeftShift(clipRect->fLeft, SHIFT),
708 SkLeftShift(clipRect->fTop, SHIFT),
709 SkLeftShift(clipRect->fRight, SHIFT),
710 SkLeftShift(clipRect->fBottom, SHIFT));
SkEdge.h 17 #define SkEdge_Compute_DY(top, y0) (SkLeftShift(top, 6) + 32 - (y0))
SkScan_Path.cpp 452 start_y = SkLeftShift(start_y, shiftEdgesUp);
453 stop_y = SkLeftShift(stop_y, shiftEdgesUp);
SkBitmapProcState_matrixProcs.cpp 170 SkFixed s = SkLeftShift(x, 15) >> 31;
SkScan_Antihair.cpp 252 SkASSERT((SkLeftShift(a, 16) >> 16) == a);
254 return SkLeftShift(a, 16) / b;
SkMatrix.cpp     [all...]
SkScan_AAAPath.cpp     [all...]
  /external/skia/src/ports/
SkFontMgr_android_parser.h 209 *value = SkLeftShift(n, N) + frac;
  /external/skia/tests/
RandomTest.cpp 122 value = SkLeftShift(value, 1);
MathTest.cpp 586 int64_t check = SkLeftShift((int64_t)numer, 16) / denom;
  /external/skia/include/core/
SkTypes.h 251 static inline int32_t SkLeftShift(int32_t value, int32_t shift) {
255 static inline int64_t SkLeftShift(int64_t value, int32_t shift) {
  /external/skia/src/effects/gradients/
SkGradientShaderPriv.h 63 int s = SkLeftShift(x, 15) >> 31;

Completed in 441 milliseconds