Lines Matching refs:rgb
232 Int4 rgb = Int4(*Pointer<Short4>(s)); in copyRoutine() local
234 *Pointer<Int4>(d) = (((rgb & Int4(0xF800)) << 8) | ((rgb & Int4(0xE01F)) << 3)) | in copyRoutine()
235 (((rgb & Int4(0x07E0)) << 5) | ((rgb & Int4(0x0600)) >> 1)) | in copyRoutine()
236 (((rgb & Int4(0x001C)) >> 2) | Int4(0xFF000000)); in copyRoutine()
274 Int rgb = Int(*Pointer<Short>(s)); in copyRoutine() local
277 ((rgb & 0xF800) << 8) | ((rgb & 0xE01F) << 3) | in copyRoutine()
278 ((rgb & 0x07E0) << 5) | ((rgb & 0x0600) >> 1) | in copyRoutine()
279 ((rgb & 0x001C) >> 2); in copyRoutine()
340 Int4 rgb = Int4(*Pointer<Short4>(s)); in copyRoutine() local
343 … (((rgb & Int4(0x001F)) << 19) | ((rgb & Int4(0x001C)) << 14)) | in copyRoutine()
344 (((rgb & Int4(0x07E0)) << 5) | ((rgb & Int4(0x0600)) >> 1)) | in copyRoutine()
345 (((rgb & Int4(0xF800)) >> 8) | ((rgb & Int4(0xE000)) >> 13)); in copyRoutine()
382 Int rgb = Int(*Pointer<Short>(s)); in copyRoutine() local
385 ((rgb & 0x001F) << 19) | ((rgb & 0x001C) << 14) | in copyRoutine()
386 ((rgb & 0x07E0) << 5) | ((rgb & 0x0600) >> 1) | in copyRoutine()
387 ((rgb & 0xF800) >> 8) | ((rgb & 0xE000) >> 13); in copyRoutine()
425 Int rgb = Int(*Pointer<Short>(s)); in copyRoutine() local
427 *Pointer<Byte>(d + 0) = Byte(((rgb & 0x001F) << 3) | ((rgb & 0x001C) >> 2)); in copyRoutine()
428 *Pointer<Byte>(d + 1) = Byte(((rgb & 0x07E0) << 5) | ((rgb & 0x0600) >> 1)); in copyRoutine()
429 *Pointer<Byte>(d + 2) = Byte(((rgb & 0xF800) << 8) | ((rgb & 0xE000) << 3)); in copyRoutine()
555 Int rgb(*Pointer<Short>(s)); in blend() local
556 rgb = 0xFF000000 | in blend()
557 ((rgb & 0xF800) << 8) | ((rgb & 0xE01F) << 3) | in blend()
558 ((rgb & 0x07E0) << 5) | ((rgb & 0x0600) >> 1) | in blend()
559 ((rgb & 0x001C) >> 2); in blend()
560 c2 = Unpack(As<Byte4>(rgb)); in blend()