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.c2266 dst[0] = _mesa_unorm_to_unorm(r, 8, 8); in unpack_ubyte_a8b8g8r8_unorm()
2269 dst[1] = _mesa_unorm_to_unorm(g, 8, 8); in unpack_ubyte_a8b8g8r8_unorm()
2272 dst[2] = _mesa_unorm_to_unorm(b, 8, 8); in unpack_ubyte_a8b8g8r8_unorm()
2275 dst[3] = _mesa_unorm_to_unorm(a, 8, 8); in unpack_ubyte_a8b8g8r8_unorm()
2288 dst[0] = _mesa_unorm_to_unorm(r, 8, 8); in unpack_ubyte_x8b8g8r8_unorm()
2291 dst[1] = _mesa_unorm_to_unorm(g, 8, 8); in unpack_ubyte_x8b8g8r8_unorm()
2294 dst[2] = _mesa_unorm_to_unorm(b, 8, 8); in unpack_ubyte_x8b8g8r8_unorm()
2310 dst[0] = _mesa_unorm_to_unorm(r, 8, 8); in unpack_ubyte_r8g8b8a8_unorm()
2313 dst[1] = _mesa_unorm_to_unorm(g, 8, 8); in unpack_ubyte_r8g8b8a8_unorm()
2316 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.c1094 SWIZZLE_CONVERT(uint8_t, uint16_t, _mesa_unorm_to_unorm(src, 16, 8)); in convert_ubyte()
1108 SWIZZLE_CONVERT(uint8_t, uint32_t, _mesa_unorm_to_unorm(src, 32, 8)); in convert_ubyte()
1216 SWIZZLE_CONVERT(uint16_t, uint8_t, _mesa_unorm_to_unorm(src, 8, 16)); in convert_ushort()
1240 SWIZZLE_CONVERT(uint16_t, uint32_t, _mesa_unorm_to_unorm(src, 32, 16)); in convert_ushort()
1347 SWIZZLE_CONVERT(uint32_t, uint8_t, _mesa_unorm_to_unorm(src, 8, 32)); in convert_uint()
1361 SWIZZLE_CONVERT(uint32_t, uint16_t, _mesa_unorm_to_unorm(src, 16, 32)); in convert_uint()