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
131 constexpr explicit SkGlyph(SkPackedGlyphID id) : fID{id} {} in SkGlyph()
137 SkGlyphID getGlyphID() const { return fID.code(); } in getGlyphID()
138 SkPackedGlyphID getPackedID() const { return fID; } in getPackedID()
139 SkFixed getSubXFixed() const { return fID.getSubXFixed(); } in getSubXFixed()
140 SkFixed getSubYFixed() const { return fID.getSubYFixed(); } in getSubYFixed()
212 SkPackedGlyphID fID; variable