Lines Matching refs:int16_t
21 void log(int16_t golden, int16_t candidate) {
36 static float golden_lerp(float t, int16_t a, int16_t b) {
41 static int16_t saturating_lerp(float t, int16_t a, int16_t b) {
42 const int16_t half = 1 << (logPixelScale - 1);
52 static int16_t ssse3_lerp(float t, int16_t a, int16_t b) {
53 const int16_t half = 1 << (logPixelScale - 1);
62 static int16_t full_res_lerp(float t, int16_t a, int16_t b) {
72 static int16_t balanced_lerp(float t, int16_t a, int16_t b) {
73 const int16_t half = 1 << logPixelScale;
91 int16_t golden = floor(l + 0.5f);
92 int16_t candidate = lerp(t, a, b);