Home | History | Annotate | Download | only in source

Lines Matching refs:REPEAT8

1174 #define REPEAT8(v) (v) | ((v) << 8)
1179 const uint32 b_scale = REPEAT8(value & 0xff);
1180 const uint32 g_scale = REPEAT8((value >> 8) & 0xff);
1181 const uint32 r_scale = REPEAT8((value >> 16) & 0xff);
1182 const uint32 a_scale = REPEAT8(value >> 24);
1185 const uint32 b = REPEAT8(src_argb[0]);
1186 const uint32 g = REPEAT8(src_argb[1]);
1187 const uint32 r = REPEAT8(src_argb[2]);
1188 const uint32 a = REPEAT8(src_argb[3]);
1197 #undef REPEAT8