/external/skia/src/core/ |
D | SkUtils.cpp | 137 hic = SkLeftShift(hic, 1); in SkUTF8_ToUnichar() 141 } while ((hic = SkLeftShift(hic, 1)) < 0); in SkUTF8_ToUnichar() 160 hic = SkLeftShift(hic, 1); in SkUTF8_NextUnicharWithError() 173 } while ((hic = SkLeftShift(hic, 1)) < 0); in SkUTF8_NextUnicharWithError() 191 hic = SkLeftShift(hic, 1); in SkUTF8_NextUnichar() 195 } while ((hic = SkLeftShift(hic, 1)) < 0); in SkUTF8_NextUnichar()
|
D | SkFDot6.h | 59 SkASSERT((SkLeftShift(x, 10) >> 10) == x); in SkFDot6ToFixed() 61 return SkLeftShift(x, 10); in SkFDot6ToFixed() 72 return SkLeftShift(a, 16) / b; in SkFDot6Div()
|
D | SkEdge.cpp | 28 return SkLeftShift(value, 16 - 6 - 1); in SkFDot6ToFixedDiv2() 221 SkFDot6 dx = (SkLeftShift(x1, 1) - x0 - x2) >> 2; in setQuadraticWithoutUpdate() 222 SkFDot6 dy = (SkLeftShift(y1, 1) - y0 - y2) >> 2; in setQuadraticWithoutUpdate() 329 SkASSERT((SkLeftShift(x, upShift) >> upShift) == x); in SkFDot6UpShift() 330 return SkLeftShift(x, upShift); in SkFDot6UpShift() 421 fCurveCount = SkToS8(SkLeftShift(-1, shift)); in setCubicWithoutUpdate()
|
D | SkScan_AntiPath.cpp | 93 fSuperLeft = SkLeftShift(left, SHIFT); in BaseSuperBlitter() 97 fCurrY = SkLeftShift(fTop, SHIFT) - 1; in BaseSuperBlitter() 546 x -= SkLeftShift(fMask.fBounds.fLeft, SHIFT); in blitH() 593 return (SkLeftShift(value, s) >> s) - value; in overflows_short_shift() 707 superRect.set(SkLeftShift(clipRect->fLeft, SHIFT), in AntiFillPath() 708 SkLeftShift(clipRect->fTop, SHIFT), in AntiFillPath() 709 SkLeftShift(clipRect->fRight, SHIFT), in AntiFillPath() 710 SkLeftShift(clipRect->fBottom, SHIFT)); in AntiFillPath()
|
D | SkEdge.h | 17 #define SkEdge_Compute_DY(top, y0) (SkLeftShift(top, 6) + 32 - (y0))
|
D | SkScan_Path.cpp | 452 start_y = SkLeftShift(start_y, shiftEdgesUp); in sk_fill_path() 453 stop_y = SkLeftShift(stop_y, shiftEdgesUp); in sk_fill_path()
|
D | SkScan_Antihair.cpp | 252 SkASSERT((SkLeftShift(a, 16) >> 16) == a); in fastfixdiv() 254 return SkLeftShift(a, 16) / b; in fastfixdiv()
|
D | SkBitmapProcState_matrixProcs.cpp | 170 SkFixed s = SkLeftShift(x, 15) >> 31; in fixed_mirror()
|
D | SkMatrix.cpp | 1758 isrc.fLeft = SkLeftShift(isrc.fLeft, subpixelBits); in SkTreatAsSprite() 1759 isrc.fTop = SkLeftShift(isrc.fTop, subpixelBits); in SkTreatAsSprite() 1760 isrc.fRight = SkLeftShift(isrc.fRight, subpixelBits); in SkTreatAsSprite() 1761 isrc.fBottom = SkLeftShift(isrc.fBottom, subpixelBits); in SkTreatAsSprite()
|
D | SkScan_AAAPath.cpp | 1696 return (SkLeftShift(value, s) >> s) - value; in overflows_short_shift()
|
/external/skia/include/private/ |
D | 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))
|
D | SkFloatBits.h | 35 x |= SkLeftShift(sign, 31); in Sk2sComplimentToSignBit()
|
/external/skia/include/core/ |
D | SkTypes.h | 251 static inline int32_t SkLeftShift(int32_t value, int32_t shift) { in SkLeftShift() function 255 static inline int64_t SkLeftShift(int64_t value, int32_t shift) { in SkLeftShift() function
|
/external/skia/src/ports/ |
D | SkFontMgr_android_parser.h | 209 *value = SkLeftShift(n, N) + frac; in parse_fixed()
|
/external/skia/tests/ |
D | RandomTest.cpp | 122 value = SkLeftShift(value, 1); in test_single_gorilla()
|
D | MathTest.cpp | 586 int64_t check = SkLeftShift((int64_t)numer, 16) / denom; in DEF_TEST()
|
/external/skia/src/effects/gradients/ |
D | SkGradientShaderPriv.h | 63 int s = SkLeftShift(x, 15) >> 31; in mirror_tileproc()
|