Lines Matching defs:fKey
28 constexpr bool operator==(const GrSwizzle& that) const { return fKey == that.fKey; }
32 constexpr uint16_t asKey() const { return fKey; }
39 int idx = (fKey >> (4U * i)) & 0xfU;
61 explicit constexpr GrSwizzle(uint16_t key) : fKey(key) {}
67 uint16_t fKey;
71 : fKey((CToI(c[0]) << 0) | (CToI(c[1]) << 4) | (CToI(c[2]) << 8) | (CToI(c[3]) << 12)) {}
74 : fKey(that.fKey) {}
77 fKey = that.fKey;
82 uint32_t key = fKey;
139 int idx = (b.fKey >> (4U * i)) & 0xfU;
143 idx = ((a.fKey >> (4U * idx)) & 0xfU);