Searched refs:y_fixed (Results 1 – 2 of 2) sorted by relevance
386 vector<int> y_fixed; in TEST_P() local387 y_fixed.push_back(0); in TEST_P()388 problem.AddParameterBlock(y, 3, new SubsetParameterization(3, y_fixed)); in TEST_P()
3091 int y_fixed = (y[i] << 16) + 32768; // rounding in stbi__YCbCr_to_RGB_row() local3095 r = y_fixed + cr*float2fixed(1.40200f); in stbi__YCbCr_to_RGB_row()3096 g = y_fixed - cr*float2fixed(0.71414f) - cb*float2fixed(0.34414f); in stbi__YCbCr_to_RGB_row()3097 b = y_fixed + cb*float2fixed(1.77200f); in stbi__YCbCr_to_RGB_row()3119 int y_fixed = (y[i] << 20) + (1<<19); // rounding in stbi__YCbCr_to_RGB_row() local3123 r = y_fixed + cr* float2fixed(1.40200f); in stbi__YCbCr_to_RGB_row()3124 g = y_fixed + (cr*-float2fixed(0.71414f)) + ((cb*-float2fixed(0.34414f)) & 0xffff0000); in stbi__YCbCr_to_RGB_row()3125 b = y_fixed + cb* float2fixed(1.77200f); in stbi__YCbCr_to_RGB_row()3254 int y_fixed = (y[i] << 20) + (1<<19); // rounding in stbi__YCbCr_to_RGB_simd() local3258 r = y_fixed + cr* float2fixed(1.40200f); in stbi__YCbCr_to_RGB_simd()[all …]