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.c2125 dst[0] = _mesa_unorm_to_unorm(r, 8, 8); in unpack_ubyte_a8b8g8r8_unorm()
2128 dst[1] = _mesa_unorm_to_unorm(g, 8, 8); in unpack_ubyte_a8b8g8r8_unorm()
2131 dst[2] = _mesa_unorm_to_unorm(b, 8, 8); in unpack_ubyte_a8b8g8r8_unorm()
2134 dst[3] = _mesa_unorm_to_unorm(a, 8, 8); in unpack_ubyte_a8b8g8r8_unorm()
2147 dst[0] = _mesa_unorm_to_unorm(r, 8, 8); in unpack_ubyte_x8b8g8r8_unorm()
2150 dst[1] = _mesa_unorm_to_unorm(g, 8, 8); in unpack_ubyte_x8b8g8r8_unorm()
2153 dst[2] = _mesa_unorm_to_unorm(b, 8, 8); in unpack_ubyte_x8b8g8r8_unorm()
2169 dst[0] = _mesa_unorm_to_unorm(r, 8, 8); in unpack_ubyte_r8g8b8a8_unorm()
2172 dst[1] = _mesa_unorm_to_unorm(g, 8, 8); in unpack_ubyte_r8g8b8a8_unorm()
2175 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.h100 _mesa_unorm_to_unorm(unsigned x, unsigned src_bits, unsigned dst_bits) in _mesa_unorm_to_unorm() function
125 return _mesa_unorm_to_unorm(x, src_bits - 1, dst_bits); in _mesa_snorm_to_unorm()
148 return _mesa_unorm_to_unorm(x, src_bits, dst_bits - 1); in _mesa_unorm_to_snorm()
Dformat_utils.c1124 SWIZZLE_CONVERT(uint8_t, uint16_t, _mesa_unorm_to_unorm(src, 16, 8)); in convert_ubyte()
1138 SWIZZLE_CONVERT(uint8_t, uint32_t, _mesa_unorm_to_unorm(src, 32, 8)); in convert_ubyte()
1246 SWIZZLE_CONVERT(uint16_t, uint8_t, _mesa_unorm_to_unorm(src, 8, 16)); in convert_ushort()
1270 SWIZZLE_CONVERT(uint16_t, uint32_t, _mesa_unorm_to_unorm(src, 32, 16)); in convert_ushort()
1377 SWIZZLE_CONVERT(uint32_t, uint8_t, _mesa_unorm_to_unorm(src, 8, 32)); in convert_uint()
1391 SWIZZLE_CONVERT(uint32_t, uint16_t, _mesa_unorm_to_unorm(src, 16, 32)); in convert_uint()