Lines Matching refs:diff
48 // palette entry diff.
53 const uint32_t diff = VP8LSubPixels(col1, col2);
56 score = PaletteComponentDistance((diff >> 0) & 0xff);
57 score += PaletteComponentDistance((diff >> 8) & 0xff);
58 score += PaletteComponentDistance((diff >> 16) & 0xff);
60 score += PaletteComponentDistance((diff >> 24) & 0xff);
102 const uint32_t diff = VP8LSubPixels(palette[i], predict);
103 const uint8_t rd = (diff >> 16) & 0xff;
104 const uint8_t gd = (diff >> 8) & 0xff;
105 const uint8_t bd = (diff >> 0) & 0xff;