HomeSort by relevance Sort by last modified time
    Searched defs:FIX (Results 1 - 11 of 11) sorted by null

  /external/jpeg/
jdct.h 139 * Caution: some C compilers fail to reduce "FIX(constant)" at compile time,
143 #define FIX(x) ((INT32) ((x) * CONST_SCALE + 0.5))
jccolor.c 63 #define FIX(x) ((INT32) ((x) * (1L<<SCALEBITS) + 0.5))
100 rgb_ycc_tab[i+R_Y_OFF] = FIX(0.29900) * i;
101 rgb_ycc_tab[i+G_Y_OFF] = FIX(0.58700) * i;
102 rgb_ycc_tab[i+B_Y_OFF] = FIX(0.11400) * i + ONE_HALF;
103 rgb_ycc_tab[i+R_CB_OFF] = (-FIX(0.16874)) * i;
104 rgb_ycc_tab[i+G_CB_OFF] = (-FIX(0.33126)) * i;
109 rgb_ycc_tab[i+B_CB_OFF] = FIX(0.50000) * i + CBCR_OFFSET + ONE_HALF-1;
111 rgb_ycc_tab[i+R_CR_OFF] = FIX(0.50000) * i + CBCR_OFFSET + ONE_HALF-1;
113 rgb_ycc_tab[i+G_CR_OFF] = (-FIX(0.41869)) * i;
114 rgb_ycc_tab[i+B_CR_OFF] = (-FIX(0.08131)) * i
    [all...]
jdcolor.c 84 #define FIX(x) ((INT32) ((x) * (1L<<SCALEBITS) + 0.5))
117 RIGHT_SHIFT(FIX(1.40200) * x + ONE_HALF, SCALEBITS);
120 RIGHT_SHIFT(FIX(1.77200) * x + ONE_HALF, SCALEBITS);
122 cconvert->Cr_g_tab[i] = (- FIX(0.71414)) * x;
125 cconvert->Cb_g_tab[i] = (- FIX(0.34414)) * x + ONE_HALF;
jdmerge.c 92 #define FIX(x) ((INT32) ((x) * (1L<<SCALEBITS) + 0.5))
126 RIGHT_SHIFT(FIX(1.40200) * x + ONE_HALF, SCALEBITS);
129 RIGHT_SHIFT(FIX(1.77200) * x + ONE_HALF, SCALEBITS);
131 upsample->Cr_g_tab[i] = (- FIX(0.71414)) * x;
134 upsample->Cb_g_tab[i] = (- FIX(0.34414)) * x + ONE_HALF;
  /external/pdfium/core/src/fxcodec/libjpeg/
jdct.h 135 * Caution: some C compilers fail to reduce "FIX(constant)" at compile time,
139 #define FIX(x) ((INT32) ((x) * CONST_SCALE + 0.5))
fpdfapi_jccolor.c 62 #define FIX(x) ((INT32) ((x) * (1L<<SCALEBITS) + 0.5))
99 rgb_ycc_tab[i+R_Y_OFF] = FIX(0.29900) * i;
100 rgb_ycc_tab[i+G_Y_OFF] = FIX(0.58700) * i;
101 rgb_ycc_tab[i+B_Y_OFF] = FIX(0.11400) * i + ONE_HALF;
102 rgb_ycc_tab[i+R_CB_OFF] = (-FIX(0.16874)) * i;
103 rgb_ycc_tab[i+G_CB_OFF] = (-FIX(0.33126)) * i;
108 rgb_ycc_tab[i+B_CB_OFF] = FIX(0.50000) * i + CBCR_OFFSET + ONE_HALF-1;
110 rgb_ycc_tab[i+R_CR_OFF] = FIX(0.50000) * i + CBCR_OFFSET + ONE_HALF-1;
112 rgb_ycc_tab[i+G_CR_OFF] = (-FIX(0.41869)) * i;
113 rgb_ycc_tab[i+B_CR_OFF] = (-FIX(0.08131)) * i
    [all...]
fpdfapi_jdcolor.c 63 #define FIX(x) ((INT32) ((x) * (1L<<SCALEBITS) + 0.5))
96 RIGHT_SHIFT(FIX(1.40200) * x + ONE_HALF, SCALEBITS);
99 RIGHT_SHIFT(FIX(1.77200) * x + ONE_HALF, SCALEBITS);
101 cconvert->Cr_g_tab[i] = (- FIX(0.71414)) * x;
104 cconvert->Cb_g_tab[i] = (- FIX(0.34414)) * x + ONE_HALF;
fpdfapi_jdmerge.c 78 #define FIX(x) ((INT32) ((x) * (1L<<SCALEBITS) + 0.5))
112 RIGHT_SHIFT(FIX(1.40200) * x + ONE_HALF, SCALEBITS);
115 RIGHT_SHIFT(FIX(1.77200) * x + ONE_HALF, SCALEBITS);
117 upsample->Cr_g_tab[i] = (- FIX(0.71414)) * x;
120 upsample->Cb_g_tab[i] = (- FIX(0.34414)) * x + ONE_HALF;
  /system/bt/embdrv/sbc/decoder/srce/
synthesis-dct8.c 84 #define FIX(x,bits) (((int)floor(0.5f+((x)*((float)(1<<bits)))))/((float)(1<<bits)))
86 #define FLOAT_MULT_DCT(K, sample) (FIX(K,20) * sample)
  /external/webp/src/utils/
quant_levels_dec.c 25 #define FIX 16 // fix-point precision for averaging
52 int scale_; // normalization factor, in FIX bits precision
118 out[x] = (delta * scale) >> FIX;
122 out[x] = (delta * scale) >> FIX;
127 out[x] = (delta * scale) >> FIX;
239 p->scale_ = (1 << (FIX + LFIX)) / (R * R); // normalization constant
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
winddi.h 71 typedef LONG FIX;
72 typedef FIX *PFIX;
136 FIX x;
137 FIX y;
141 FIX xLeft;
142 FIX yTop;
143 FIX xRight;
144 FIX yBottom;
497 FIX fxMaxAscender;
498 FIX fxMaxDescender
    [all...]

Completed in 351 milliseconds