Home
last modified time | relevance | path

Searched refs:_mesa_unorm_to_unorm (Results 1 – 4 of 4) sorted by relevance

/external/mesa3d/prebuilt-intermediates/main/
Dformat_unpack.c2245 dst[0] = _mesa_unorm_to_unorm(r, 8, 8); in unpack_ubyte_a8b8g8r8_unorm()
2248 dst[1] = _mesa_unorm_to_unorm(g, 8, 8); in unpack_ubyte_a8b8g8r8_unorm()
2251 dst[2] = _mesa_unorm_to_unorm(b, 8, 8); in unpack_ubyte_a8b8g8r8_unorm()
2254 dst[3] = _mesa_unorm_to_unorm(a, 8, 8); in unpack_ubyte_a8b8g8r8_unorm()
2267 dst[0] = _mesa_unorm_to_unorm(r, 8, 8); in unpack_ubyte_x8b8g8r8_unorm()
2270 dst[1] = _mesa_unorm_to_unorm(g, 8, 8); in unpack_ubyte_x8b8g8r8_unorm()
2273 dst[2] = _mesa_unorm_to_unorm(b, 8, 8); in unpack_ubyte_x8b8g8r8_unorm()
2289 dst[0] = _mesa_unorm_to_unorm(r, 8, 8); in unpack_ubyte_r8g8b8a8_unorm()
2292 dst[1] = _mesa_unorm_to_unorm(g, 8, 8); in unpack_ubyte_r8g8b8a8_unorm()
2295 dst[2] = _mesa_unorm_to_unorm(b, 8, 8); in unpack_ubyte_r8g8b8a8_unorm()
[all …]
Dformat_pack.c62 _mesa_unorm_to_unorm(src[3], 8, 8); in pack_ubyte_a8b8g8r8_unorm()
66 _mesa_unorm_to_unorm(src[2], 8, 8); in pack_ubyte_a8b8g8r8_unorm()
70 _mesa_unorm_to_unorm(src[1], 8, 8); in pack_ubyte_a8b8g8r8_unorm()
74 _mesa_unorm_to_unorm(src[0], 8, 8); in pack_ubyte_a8b8g8r8_unorm()
91 _mesa_unorm_to_unorm(src[2], 8, 8); in pack_ubyte_x8b8g8r8_unorm()
95 _mesa_unorm_to_unorm(src[1], 8, 8); in pack_ubyte_x8b8g8r8_unorm()
99 _mesa_unorm_to_unorm(src[0], 8, 8); in pack_ubyte_x8b8g8r8_unorm()
114 _mesa_unorm_to_unorm(src[0], 8, 8); in pack_ubyte_r8g8b8a8_unorm()
118 _mesa_unorm_to_unorm(src[1], 8, 8); in pack_ubyte_r8g8b8a8_unorm()
122 _mesa_unorm_to_unorm(src[2], 8, 8); in pack_ubyte_r8g8b8a8_unorm()
[all …]
/external/mesa3d/src/mesa/main/
Dformat_utils.h99 _mesa_unorm_to_unorm(unsigned x, unsigned src_bits, unsigned dst_bits) in _mesa_unorm_to_unorm() function
124 return _mesa_unorm_to_unorm(x, src_bits - 1, dst_bits); in _mesa_snorm_to_unorm()
147 return _mesa_unorm_to_unorm(x, src_bits, dst_bits - 1); in _mesa_unorm_to_snorm()
Dformat_utils.c1080 SWIZZLE_CONVERT(uint8_t, uint16_t, _mesa_unorm_to_unorm(src, 16, 8)); in convert_ubyte()
1094 SWIZZLE_CONVERT(uint8_t, uint32_t, _mesa_unorm_to_unorm(src, 32, 8)); in convert_ubyte()
1202 SWIZZLE_CONVERT(uint16_t, uint8_t, _mesa_unorm_to_unorm(src, 8, 16)); in convert_ushort()
1226 SWIZZLE_CONVERT(uint16_t, uint32_t, _mesa_unorm_to_unorm(src, 32, 16)); in convert_ushort()
1333 SWIZZLE_CONVERT(uint32_t, uint8_t, _mesa_unorm_to_unorm(src, 8, 32)); in convert_uint()
1347 SWIZZLE_CONVERT(uint32_t, uint16_t, _mesa_unorm_to_unorm(src, 16, 32)); in convert_uint()