Home
last modified time | relevance | path

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

/external/pdfium/third_party/libopenjpeg20/
Ddwt.c219 #define OPJ_DD_(i) ((i)<0 ? OPJ_D(0) : (UNDERFLOW_SN(i) ? OPJ_D(sn - 1) : OVERFLOW_D(i) ? OPJ_D(i -… macro
371 OPJ_S(i) -= (OPJ_DD_(i) + OPJ_DD_(i - 1)) >> 1; in opj_dwt_encode_1()
406 OPJ_S(i) += (OPJ_DD_(i) + OPJ_DD_(i - 1)) >> 1; in opj_dwt_decode_1_()
1073 OPJ_S(i) -= opj_int_fix_mul(OPJ_DD_(i) + OPJ_DD_(i - 1), 12993); in opj_dwt_encode_1_real()
1079 OPJ_S(i) += opj_int_fix_mul(OPJ_DD_(i) + OPJ_DD_(i - 1), 7233); in opj_dwt_encode_1_real()
1674 OPJ_S(i) += (OPJ_DD_(i) + OPJ_DD_(i - 1)) >> 1; in opj_dwt_decode_partial_1()
D0003-dwt-decode.patch80 -#define OPJ_DD_(i) ((i)<0?OPJ_D(0):((i)>=sn?OPJ_D(sn-1):OPJ_D(i)))
82 +#define OPJ_DD_(i) ((i)<0 ? OPJ_D(0) : (UNDERFLOW_SN(i) ? OPJ_D(sn - 1) : OVERFLOW_D(i) ? OPJ_D(i …