Lines Matching refs:fID
44 fID = code; in SkPackedID()
55 fID = ID; in SkPackedID()
58 constexpr SkPackedID() : fID(kImpossibleID) {} in SkPackedID()
61 return fID == that.fID;
67 return this->fID < that.fID;
71 return fID & kCodeMask; in code()
75 return fID; in value()
79 return SubToFixed(ID2SubX(fID)); in getSubXFixed()
83 return SubToFixed(ID2SubY(fID)); in getSubYFixed()
87 return SkChecksum::CheapMix(fID); in hash()
114 uint32_t fID; member
140 constexpr explicit SkGlyph(SkPackedGlyphID id) : fID{id} {} in SkGlyph()
146 SkGlyphID getGlyphID() const { return fID.code(); } in getGlyphID()
147 SkPackedGlyphID getPackedID() const { return fID; } in getPackedID()
148 SkFixed getSubXFixed() const { return fID.getSubXFixed(); } in getSubXFixed()
149 SkFixed getSubYFixed() const { return fID.getSubYFixed(); } in getSubYFixed()
221 SkPackedGlyphID fID; variable