Home
last modified time | relevance | path

Searched refs:GetShift (Results 1 – 3 of 3) sorted by relevance

/external/skia/src/core/
DSkFloat.h33 int getInt() const { return GetShift(fPacked, 0); } in getInt()
34 SkFixed getFixed() const { return GetShift(fPacked, -16); } in getFixed()
35 SkFract getFract() const { return GetShift(fPacked, -30); } in getFract()
102 static int GetShift(int32_t packed, int shift);
DSkFP.h58 #define SkFPToScalar(n) SkFloat::GetShift(n, -16)
DSkFloat.cpp39 int SkFloat::GetShift(int32_t packed, int shift) in GetShift() function in SkFloat