/external/jpeg/ |
mips_jidctfst.c | 86 /* Some C compilers fail to reduce "FIX(constant)" at compile time, thus 90 * (With a reasonable C compiler, you can just rely on the FIX() macro...) 94 #define FIX_1_082392200 ((INT32) 277) /* FIX(1.082392200) */ 95 #define FIX_1_414213562 ((INT32) 362) /* FIX(1.414213562) */ 96 #define FIX_1_847759065 ((INT32) 473) /* FIX(1.847759065) */ 97 #define FIX_2_613125930 ((INT32) 669) /* FIX(2.613125930) */ 99 #define FIX_1_082392200 FIX(1.082392200) 100 #define FIX_1_414213562 FIX(1.414213562) 101 #define FIX_1_847759065 FIX(1.847759065) 102 #define FIX_2_613125930 FIX(2.613125930 [all...] |
jfdctint.c | 85 /* Some C compilers fail to reduce "FIX(constant)" at compile time, thus 89 * (With a reasonable C compiler, you can just rely on the FIX() macro...) 93 #define FIX_0_298631336 ((INT32) 2446) /* FIX(0.298631336) */ 94 #define FIX_0_390180644 ((INT32) 3196) /* FIX(0.390180644) */ 95 #define FIX_0_541196100 ((INT32) 4433) /* FIX(0.541196100) */ 96 #define FIX_0_765366865 ((INT32) 6270) /* FIX(0.765366865) */ 97 #define FIX_0_899976223 ((INT32) 7373) /* FIX(0.899976223) */ 98 #define FIX_1_175875602 ((INT32) 9633) /* FIX(1.175875602) */ 99 #define FIX_1_501321110 ((INT32) 12299) /* FIX(1.501321110) */ 100 #define FIX_1_847759065 ((INT32) 15137) /* FIX(1.847759065) * [all...] |
jidctred.c | 50 /* Some C compilers fail to reduce "FIX(constant)" at compile time, thus 54 * (With a reasonable C compiler, you can just rely on the FIX() macro...) 58 #define FIX_0_211164243 ((INT32) 1730) /* FIX(0.211164243) */ 59 #define FIX_0_509795579 ((INT32) 4176) /* FIX(0.509795579) */ 60 #define FIX_0_601344887 ((INT32) 4926) /* FIX(0.601344887) */ 61 #define FIX_0_720959822 ((INT32) 5906) /* FIX(0.720959822) */ 62 #define FIX_0_765366865 ((INT32) 6270) /* FIX(0.765366865) */ 63 #define FIX_0_850430095 ((INT32) 6967) /* FIX(0.850430095) */ 64 #define FIX_0_899976223 ((INT32) 7373) /* FIX(0.899976223) */ 65 #define FIX_1_061594337 ((INT32) 8697) /* FIX(1.061594337) * [all...] |
jidctint.c | 85 /* Some C compilers fail to reduce "FIX(constant)" at compile time, thus 89 * (With a reasonable C compiler, you can just rely on the FIX() macro...) 93 #define FIX_0_298631336 ((INT32) 2446) /* FIX(0.298631336) */ 94 #define FIX_0_390180644 ((INT32) 3196) /* FIX(0.390180644) */ 95 #define FIX_0_541196100 ((INT32) 4433) /* FIX(0.541196100) */ 96 #define FIX_0_765366865 ((INT32) 6270) /* FIX(0.765366865) */ 97 #define FIX_0_899976223 ((INT32) 7373) /* FIX(0.899976223) */ 98 #define FIX_1_175875602 ((INT32) 9633) /* FIX(1.175875602) */ 99 #define FIX_1_501321110 ((INT32) 12299) /* FIX(1.501321110) */ 100 #define FIX_1_847759065 ((INT32) 15137) /* FIX(1.847759065) * [all...] |
jfdctfst.c | 71 /* Some C compilers fail to reduce "FIX(constant)" at compile time, thus 75 * (With a reasonable C compiler, you can just rely on the FIX() macro...) 79 #define FIX_0_382683433 ((INT32) 98) /* FIX(0.382683433) */ 80 #define FIX_0_541196100 ((INT32) 139) /* FIX(0.541196100) */ 81 #define FIX_0_707106781 ((INT32) 181) /* FIX(0.707106781) */ 82 #define FIX_1_306562965 ((INT32) 334) /* FIX(1.306562965) */ 84 #define FIX_0_382683433 FIX(0.382683433) 85 #define FIX_0_541196100 FIX(0.541196100) 86 #define FIX_0_707106781 FIX(0.707106781) 87 #define FIX_1_306562965 FIX(1.306562965 [all...] |
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...] |
jidctfst.c | 84 /* Some C compilers fail to reduce "FIX(constant)" at compile time, thus 88 * (With a reasonable C compiler, you can just rely on the FIX() macro...) 92 #define FIX_1_082392200 ((INT32) 277) /* FIX(1.082392200) */ 93 #define FIX_1_414213562 ((INT32) 362) /* FIX(1.414213562) */ 94 #define FIX_1_847759065 ((INT32) 473) /* FIX(1.847759065) */ 95 #define FIX_2_613125930 ((INT32) 669) /* FIX(2.613125930) */ 97 #define FIX_1_082392200 FIX(1.082392200) 98 #define FIX_1_414213562 FIX(1.414213562) 99 #define FIX_1_847759065 FIX(1.847759065) 100 #define FIX_2_613125930 FIX(2.613125930 [all...] |
mips_idct_le.S | 37 # .word 0x45464546 # FIX( 1.082392200 / 2) = 17734 = 0x4546 38 # .word 0x5A825A82 # FIX( 1.414213562 / 2) = 23170 = 0x5A82 39 # .word 0x76427642 # FIX( 1.847759065 / 2) = 30274 = 0x7642 40 # .word 0xAC61AC61 # FIX(-2.613125930 / 4) = -21407 = 0xAC61 142 lw $t8, 4($at) # FIX(1.414213562) 210 lw $t8, 8($at) # FIX(1.847759065) 211 lw $s4, 0($at) # FIX(1.082392200) 220 lw $t8, 12($at) # FIX(-2.613125930) 398 lw $t8, 4($at) # FIX(1.414213562) 433 lw $t8, 8($at) # FIX(1.847759065 [all...] |
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))
|
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/qemu/distrib/jpeg-6b/ |
jfdctint.c | 85 /* Some C compilers fail to reduce "FIX(constant)" at compile time, thus 89 * (With a reasonable C compiler, you can just rely on the FIX() macro...) 93 #define FIX_0_298631336 ((INT32) 2446) /* FIX(0.298631336) */ 94 #define FIX_0_390180644 ((INT32) 3196) /* FIX(0.390180644) */ 95 #define FIX_0_541196100 ((INT32) 4433) /* FIX(0.541196100) */ 96 #define FIX_0_765366865 ((INT32) 6270) /* FIX(0.765366865) */ 97 #define FIX_0_899976223 ((INT32) 7373) /* FIX(0.899976223) */ 98 #define FIX_1_175875602 ((INT32) 9633) /* FIX(1.175875602) */ 99 #define FIX_1_501321110 ((INT32) 12299) /* FIX(1.501321110) */ 100 #define FIX_1_847759065 ((INT32) 15137) /* FIX(1.847759065) * [all...] |
jidctred.c | 50 /* Some C compilers fail to reduce "FIX(constant)" at compile time, thus 54 * (With a reasonable C compiler, you can just rely on the FIX() macro...) 58 #define FIX_0_211164243 ((INT32) 1730) /* FIX(0.211164243) */ 59 #define FIX_0_509795579 ((INT32) 4176) /* FIX(0.509795579) */ 60 #define FIX_0_601344887 ((INT32) 4926) /* FIX(0.601344887) */ 61 #define FIX_0_720959822 ((INT32) 5906) /* FIX(0.720959822) */ 62 #define FIX_0_765366865 ((INT32) 6270) /* FIX(0.765366865) */ 63 #define FIX_0_850430095 ((INT32) 6967) /* FIX(0.850430095) */ 64 #define FIX_0_899976223 ((INT32) 7373) /* FIX(0.899976223) */ 65 #define FIX_1_061594337 ((INT32) 8697) /* FIX(1.061594337) * [all...] |
jidctint.c | 85 /* Some C compilers fail to reduce "FIX(constant)" at compile time, thus 89 * (With a reasonable C compiler, you can just rely on the FIX() macro...) 93 #define FIX_0_298631336 ((INT32) 2446) /* FIX(0.298631336) */ 94 #define FIX_0_390180644 ((INT32) 3196) /* FIX(0.390180644) */ 95 #define FIX_0_541196100 ((INT32) 4433) /* FIX(0.541196100) */ 96 #define FIX_0_765366865 ((INT32) 6270) /* FIX(0.765366865) */ 97 #define FIX_0_899976223 ((INT32) 7373) /* FIX(0.899976223) */ 98 #define FIX_1_175875602 ((INT32) 9633) /* FIX(1.175875602) */ 99 #define FIX_1_501321110 ((INT32) 12299) /* FIX(1.501321110) */ 100 #define FIX_1_847759065 ((INT32) 15137) /* FIX(1.847759065) * [all...] |
jfdctfst.c | 71 /* Some C compilers fail to reduce "FIX(constant)" at compile time, thus 75 * (With a reasonable C compiler, you can just rely on the FIX() macro...) 79 #define FIX_0_382683433 ((INT32) 98) /* FIX(0.382683433) */ 80 #define FIX_0_541196100 ((INT32) 139) /* FIX(0.541196100) */ 81 #define FIX_0_707106781 ((INT32) 181) /* FIX(0.707106781) */ 82 #define FIX_1_306562965 ((INT32) 334) /* FIX(1.306562965) */ 84 #define FIX_0_382683433 FIX(0.382683433) 85 #define FIX_0_541196100 FIX(0.541196100) 86 #define FIX_0_707106781 FIX(0.707106781) 87 #define FIX_1_306562965 FIX(1.306562965 [all...] |
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...] |
jidctfst.c | 84 /* Some C compilers fail to reduce "FIX(constant)" at compile time, thus 88 * (With a reasonable C compiler, you can just rely on the FIX() macro...) 92 #define FIX_1_082392200 ((INT32) 277) /* FIX(1.082392200) */ 93 #define FIX_1_414213562 ((INT32) 362) /* FIX(1.414213562) */ 94 #define FIX_1_847759065 ((INT32) 473) /* FIX(1.847759065) */ 95 #define FIX_2_613125930 ((INT32) 669) /* FIX(2.613125930) */ 97 #define FIX_1_082392200 FIX(1.082392200) 98 #define FIX_1_414213562 FIX(1.414213562) 99 #define FIX_1_847759065 FIX(1.847759065) 100 #define FIX_2_613125930 FIX(2.613125930 [all...] |
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))
|
jdcolor.c | 82 #define FIX(x) ((INT32) ((x) * (1L<<SCALEBITS) + 0.5)) 115 RIGHT_SHIFT(FIX(1.40200) * x + ONE_HALF, SCALEBITS); 118 RIGHT_SHIFT(FIX(1.77200) * x + ONE_HALF, SCALEBITS); 120 cconvert->Cr_g_tab[i] = (- FIX(0.71414)) * x; 123 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/eigen/blas/ |
drotmg.f | 124 * PROCEDURE..FIX-H.. 145 * FIX-H.. 157 * FIX-H.. 170 * FIX-H.. 181 * FIX-H..
|
srotmg.f | 126 * PROCEDURE..FIX-H.. 147 * FIX-H.. 159 * FIX-H.. 172 * FIX-H.. 183 * FIX-H..
|
/external/chromium_org/media/base/simd/ |
convert_rgb_to_yuv_sse2.cc | 19 #define FIX(x) ((x) * (1 << FIX_SHIFT)) 22 #define INT16_FIX(x) static_cast<int16>(FIX(x))
|
/prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/ |
rtl.def | 561 DEF_RTL_EXPR(FIX, "fix", "e", RTX_UNARY) [all...] |
/prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/ |
rtl.def | 561 DEF_RTL_EXPR(FIX, "fix", "e", RTX_UNARY) [all...] |