Lines Matching refs:uint8x4_t
215 struct uint8x4_t struct
219 uint8x4_t() { } in uint8x4_t() argument
221 uint8x4_t(int a, int b, int c, int d) in uint8x4_t() function
233 static uint8x4_t clamped(int a, int b, int c, int d) in clamped() argument
235 uint8x4_t r; in clamped()
244 static uint8x4_t blue_contract(int r, int g, int b, int a) in blue_contract()
246 return uint8x4_t((r+b) >> 1, (g+b) >> 1, b, a); in blue_contract()
249 static uint8x4_t blue_contract_clamped(int r, int g, int b, int a) in blue_contract_clamped()
251 return uint8x4_t::clamped((r+b) >> 1, (g+b) >> 1, b, a); in blue_contract_clamped()
623 uint8x4_t endpoints_decoded[2][4];
1008 uint8x4_t e0, e1; in decode_colour_endpoints()
1014 e0 = uint8x4_t(v0, v0, v0, 0xff); in decode_colour_endpoints()
1015 e1 = uint8x4_t(v1, v1, v1, 0xff); in decode_colour_endpoints()
1022 e0 = uint8x4_t(L0, L0, L0, 0xff); in decode_colour_endpoints()
1023 e1 = uint8x4_t(L1, L1, L1, 0xff); in decode_colour_endpoints()
1026 e0 = uint8x4_t(v0, v0, v0, v2); in decode_colour_endpoints()
1027 e1 = uint8x4_t(v1, v1, v1, v3); in decode_colour_endpoints()
1032 e0 = uint8x4_t(v0, v0, v0, v2); in decode_colour_endpoints()
1033 e1 = uint8x4_t::clamped(v0+v1, v0+v1, v0+v1, v2+v3); in decode_colour_endpoints()
1036 e0 = uint8x4_t(v0*v3 >> 8, v1*v3 >> 8, v2*v3 >> 8, 0xff); in decode_colour_endpoints()
1037 e1 = uint8x4_t(v0, v1, v2, 0xff); in decode_colour_endpoints()
1043 e0 = uint8x4_t(v0, v2, v4, 0xff); in decode_colour_endpoints()
1044 e1 = uint8x4_t(v1, v3, v5, 0xff); in decode_colour_endpoints()
1055 e0 = uint8x4_t(v0, v2, v4, 0xff); in decode_colour_endpoints()
1056 e1 = uint8x4_t::clamped(v0+v1, v2+v3, v4+v5, 0xff); in decode_colour_endpoints()
1063 e0 = uint8x4_t(v0*v3 >> 8, v1*v3 >> 8, v2*v3 >> 8, v4); in decode_colour_endpoints()
1064 e1 = uint8x4_t(v0, v1, v2, v5); in decode_colour_endpoints()
1070 e0 = uint8x4_t(v0, v2, v4, v6); in decode_colour_endpoints()
1071 e1 = uint8x4_t(v1, v3, v5, v7); in decode_colour_endpoints()
1083 e0 = uint8x4_t(v0, v2, v4, v6); in decode_colour_endpoints()
1084 e1 = uint8x4_t::clamped(v0+v1, v2+v3, v4+v5, v6+v7); in decode_colour_endpoints()
1092 e0 = uint8x4_t(255, 0, 255, 255); in decode_colour_endpoints()
1093 e1 = uint8x4_t(255, 0, 255, 255); in decode_colour_endpoints()
1655 uint8x4_t e0 = endpoints_decoded[0][partition]; in write_decoded()
1656 uint8x4_t e1 = endpoints_decoded[1][partition]; in write_decoded()