Lines Matching defs:high
95 uint32_t high = SkBSwap32(curBlock1->fHigh);
98 bool flipped = SkToBool(high & kFlipBit);
99 bool differential = SkToBool(high & kDiffBit);
104 colors[0].fR = extend_5To8bits(high >> 27);
105 colors[1].fR = extend_5plus3To8Bits(high >> 27, high >> 24);
106 colors[0].fG = extend_5To8bits(high >> 19);
107 colors[1].fG = extend_5plus3To8Bits(high >> 19, high >> 16);
108 colors[0].fB = extend_5To8bits(high >> 11);
109 colors[1].fB = extend_5plus3To8Bits(high >> 11, high >> 8);
111 colors[0].fR = extend_4To8bits(high >> 28);
112 colors[1].fR = extend_4To8bits(high >> 24);
113 colors[0].fG = extend_4To8bits(high >> 20);
114 colors[1].fG = extend_4To8bits(high >> 16);
115 colors[0].fB = extend_4To8bits(high >> 12);
116 colors[1].fB = extend_4To8bits(high >> 8);
119 int tableIndex0 = (high >> 5) & 0x7;
120 int tableIndex1 = (high >> 2) & 0x7;