Searched refs:y_fixed (Results 1 – 2 of 2) sorted by relevance
3439 int y_fixed = (y[i] << 20) + (1<<19); // rounding in stbi__YCbCr_to_RGB_row() local3443 r = y_fixed + cr* stbi__float2fixed(1.40200f); in stbi__YCbCr_to_RGB_row()3444 …g = y_fixed + (cr*-stbi__float2fixed(0.71414f)) + ((cb*-stbi__float2fixed(0.34414f)) & 0xffff0000); in stbi__YCbCr_to_RGB_row()3445 b = y_fixed + cb* stbi__float2fixed(1.77200f); in stbi__YCbCr_to_RGB_row()3573 int y_fixed = (y[i] << 20) + (1<<19); // rounding in stbi__YCbCr_to_RGB_simd() local3577 r = y_fixed + cr* stbi__float2fixed(1.40200f); in stbi__YCbCr_to_RGB_simd()3578 … g = y_fixed + cr*-stbi__float2fixed(0.71414f) + ((cb*-stbi__float2fixed(0.34414f)) & 0xffff0000); in stbi__YCbCr_to_RGB_simd()3579 b = y_fixed + cb* stbi__float2fixed(1.77200f); in stbi__YCbCr_to_RGB_simd()