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))
141 #define SkIntToFixed3232(x) (SkLeftShift((SkFixed3232)(x), 32))
143 #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 121 hic = SkLeftShift(hic, 1);
125 } while ((hic = SkLeftShift(hic, 1)) < 0);
144 hic = SkLeftShift(hic, 1);
157 } while ((hic = SkLeftShift(hic, 1)) < 0);
175 hic = SkLeftShift(hic, 1);
179 } 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);
591 superRect.set(SkLeftShift(clipRect->fLeft, SHIFT),
592 SkLeftShift(clipRect->fTop, SHIFT),
593 SkLeftShift(clipRect->fRight, SHIFT),
594 SkLeftShift(clipRect->fBottom, SHIFT));
SkEdge.h 17 #define SkEdge_Compute_DY(top, y0) (SkLeftShift(top, 6) + 32 - (y0))
SkScanPriv.h 89 return (SkLeftShift(value, s) >> s) - value;
SkScan_Path.cpp 445 start_y = SkLeftShift(start_y, shiftEdgesUp);
446 stop_y = SkLeftShift(stop_y, shiftEdgesUp);
SkBitmapProcState_matrixProcs.cpp 163 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...]
  /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/shaders/gradients/
SkGradientShaderPriv.h 64 int s = SkLeftShift(x, 15) >> 31;

Completed in 166 milliseconds