Home
last modified time | relevance | path

Searched refs:y_fixed (Results 1 – 2 of 2) sorted by relevance

/external/ceres-solver/internal/ceres/
Devaluator_test.cc386 vector<int> y_fixed; in TEST_P() local
387 y_fixed.push_back(0); in TEST_P()
388 problem.AddParameterBlock(y, 3, new SubsetParameterization(3, y_fixed)); in TEST_P()
/external/libgdx/gdx/jni/gdx2d/
Dstb_image.h3091 int y_fixed = (y[i] << 16) + 32768; // rounding in stbi__YCbCr_to_RGB_row() local
3095 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() local
3123 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() local
3258 r = y_fixed + cr* float2fixed(1.40200f); in stbi__YCbCr_to_RGB_simd()
[all …]