Lines Matching refs:U8CPU
18 static const U8CPU DEV_PAD = 0xee;
25 U8CPU r = x; in getCanvasColor()
26 U8CPU g = y; in getCanvasColor()
27 U8CPU b = 0xc; in getCanvasColor()
29 U8CPU a = 0x0; in getCanvasColor()
68 U8CPU a, U8CPU r, U8CPU g, U8CPU b) { in packConfig8888()
99 U8CPU b = n & 0xff; in getBitmapColor()
100 U8CPU g = (n >> 8) & 0xff; in getBitmapColor()
101 U8CPU r = (n >> 16) & 0xff; in getBitmapColor()
102 U8CPU a = 0; in getBitmapColor()
156 U8CPU a,r,g,b; in convertConfig8888ToPMColor()
171 a = static_cast<U8CPU>(c[3]); in convertConfig8888ToPMColor()
172 r = static_cast<U8CPU>(c[2]); in convertConfig8888ToPMColor()
173 g = static_cast<U8CPU>(c[1]); in convertConfig8888ToPMColor()
174 b = static_cast<U8CPU>(c[0]); in convertConfig8888ToPMColor()
179 a = static_cast<U8CPU>(c[3]); in convertConfig8888ToPMColor()
180 r = static_cast<U8CPU>(c[0]); in convertConfig8888ToPMColor()
181 g = static_cast<U8CPU>(c[1]); in convertConfig8888ToPMColor()
182 b = static_cast<U8CPU>(c[2]); in convertConfig8888ToPMColor()