HomeSort by: relevance | last modified time | path
    Searched refs:_mesa_unorm_to_snorm (Results 1 - 6 of 6) sorted by relevancy

  /xsrc/external/mit/MesaLib.old/dist/src/mesa/main/
format_utils.c 1151 SWIZZLE_CONVERT(int8_t, uint8_t, _mesa_unorm_to_snorm(src, 8, 8));
1161 SWIZZLE_CONVERT(int8_t, uint16_t, _mesa_unorm_to_snorm(src, 16, 8));
1175 SWIZZLE_CONVERT(int8_t, uint32_t, _mesa_unorm_to_snorm(src, 32, 8));
1283 SWIZZLE_CONVERT(int16_t, uint8_t, _mesa_unorm_to_snorm(src, 8, 16));
1297 SWIZZLE_CONVERT(int16_t, uint16_t, _mesa_unorm_to_snorm(src, 16, 16));
1307 SWIZZLE_CONVERT(int16_t, uint32_t, _mesa_unorm_to_snorm(src, 32, 16));
1414 SWIZZLE_CONVERT(int32_t, uint8_t, _mesa_unorm_to_snorm(src, 8, 32));
1428 SWIZZLE_CONVERT(int32_t, uint16_t, _mesa_unorm_to_snorm(src, 16, 32));
1442 SWIZZLE_CONVERT(int32_t, uint32_t, _mesa_unorm_to_snorm(src, 32, 32));
format_utils.h 146 _mesa_unorm_to_snorm(unsigned x, unsigned src_bits, unsigned dst_bits) function
  /xsrc/external/mit/MesaLib/dist/src/mesa/main/
format_utils.c 1179 SWIZZLE_CONVERT(int8_t, uint8_t, _mesa_unorm_to_snorm(src, 8, 8));
1189 SWIZZLE_CONVERT(int8_t, uint16_t, _mesa_unorm_to_snorm(src, 16, 8));
1203 SWIZZLE_CONVERT(int8_t, uint32_t, _mesa_unorm_to_snorm(src, 32, 8));
1311 SWIZZLE_CONVERT(int16_t, uint8_t, _mesa_unorm_to_snorm(src, 8, 16));
1325 SWIZZLE_CONVERT(int16_t, uint16_t, _mesa_unorm_to_snorm(src, 16, 16));
1335 SWIZZLE_CONVERT(int16_t, uint32_t, _mesa_unorm_to_snorm(src, 32, 16));
1442 SWIZZLE_CONVERT(int32_t, uint8_t, _mesa_unorm_to_snorm(src, 8, 32));
1456 SWIZZLE_CONVERT(int32_t, uint16_t, _mesa_unorm_to_snorm(src, 16, 32));
1470 SWIZZLE_CONVERT(int32_t, uint32_t, _mesa_unorm_to_snorm(src, 32, 32));
  /xsrc/external/mit/MesaLib.old/src/mesa/main/
format_pack.c 1172 _mesa_unorm_to_snorm(src[3], 8, 8);
1176 _mesa_unorm_to_snorm(src[2], 8, 8);
1180 _mesa_unorm_to_snorm(src[1], 8, 8);
1184 _mesa_unorm_to_snorm(src[0], 8, 8);
1201 _mesa_unorm_to_snorm(src[2], 8, 8);
1205 _mesa_unorm_to_snorm(src[1], 8, 8);
1209 _mesa_unorm_to_snorm(src[0], 8, 8);
1224 _mesa_unorm_to_snorm(src[0], 8, 8);
1228 _mesa_unorm_to_snorm(src[1], 8, 8);
1232 _mesa_unorm_to_snorm(src[2], 8, 8)
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/util/format/
format_utils.h 133 _mesa_unorm_to_snorm(unsigned x, unsigned src_bits, unsigned dst_bits) function
  /xsrc/external/mit/MesaLib/src/util/format/
u_format_table.c 546 value |= (uint32_t)((uint32_t)(_mesa_unorm_to_snorm(src[2], 8, 8)) << 24) ;
547 value |= (uint32_t)((uint32_t)((_mesa_unorm_to_snorm(src[1], 8, 8)) & 0xff) << 16) ;
548 value |= (uint32_t)((uint32_t)((_mesa_unorm_to_snorm(src[0], 8, 8)) & 0xff) << 8) ;
552 value |= (uint32_t)((_mesa_unorm_to_snorm(src[2], 8, 8)) & 0xff) ;
553 value |= (uint32_t)((uint32_t)((_mesa_unorm_to_snorm(src[1], 8, 8)) & 0xff) << 8) ;
554 value |= (uint32_t)((uint32_t)((_mesa_unorm_to_snorm(src[0], 8, 8)) & 0xff) << 16) ;
1070 value |= (uint32_t)((uint32_t)(_mesa_unorm_to_snorm(src[3], 8, 8)) << 24) ;
1071 value |= (uint32_t)((uint32_t)((_mesa_unorm_to_snorm(src[0], 8, 8)) & 0xff) << 16) ;
1072 value |= (uint32_t)((uint32_t)((_mesa_unorm_to_snorm(src[1], 8, 8)) & 0xff) << 8) ;
1073 value |= (uint32_t)((_mesa_unorm_to_snorm(src[2], 8, 8)) & 0xff)
    [all...]

Completed in 18 milliseconds