Home | History | Annotate | Download | only in etc1

Lines Matching refs:high

209     etc1_uint32 high = (pIn[0] << 24) | (pIn[1] << 16) | (pIn[2] << 8) | pIn[3];
212 if (high & 2) {
214 int rBase = high >> 27;
215 int gBase = high >> 19;
216 int bBase = high >> 11;
218 r2 = convertDiff(rBase, high >> 24);
220 g2 = convertDiff(gBase, high >> 16);
222 b2 = convertDiff(bBase, high >> 8);
225 r1 = convert4To8(high >> 28);
226 r2 = convert4To8(high >> 24);
227 g1 = convert4To8(high >> 20);
228 g2 = convert4To8(high >> 16);
229 b1 = convert4To8(high >> 12);
230 b2 = convert4To8(high >> 8);
232 int tableIndexA = 7 & (high >> 5);
233 int tableIndexB = 7 & (high >> 2);
236 bool flipped = (high & 1) != 0;
242 etc1_uint32 high;
411 pCompressed->high |= (r51 << 27) | ((7 & dr) << 24) | (g51 << 19)
429 pCompressed->high |= (r41 << 28) | (r42 << 24) | (g41 << 20) | (g42
444 pCompressed->high = (flipped ? 1 : 0);
451 int originalHigh = pCompressed->high;
457 temp.high = originalHigh | (i << 5);
468 temp.high = firstHalf.high | (i << 2);
505 writeBigEndian(pOut, a.high);