_mm_cvtpu8_ps
Classification
Header File
Synopsis
_mm_cvtpu8_ps(__m64 a);
Description
Convert the lower packed unsigned 8-bit integers in "a" to packed single-precision (32-bit) floating-point elements, and store the results in "dst".
Operation
FOR j := 0 to 3
i := j*8
m := j*32
dst[m+31:m] := Convert_Int8_To_FP32(a[i+7:i])
ENDFOR