Home | History | Annotate | Download | only in libopenjpeg20

Lines Matching full:l_level_no

794         OPJ_UINT32 l_level_no;
827 l_level_no = l_tccp->numresolutions - 1 - resno;
829 l_rx0 = opj_int_ceildivpow2(l_tcx0, (OPJ_INT32)l_level_no);
830 l_ry0 = opj_int_ceildivpow2(l_tcy0, (OPJ_INT32)l_level_no);
831 l_rx1 = opj_int_ceildivpow2(l_tcx1, (OPJ_INT32)l_level_no);
832 l_ry1 = opj_int_ceildivpow2(l_tcy1, (OPJ_INT32)l_level_no);
920 OPJ_UINT32 l_level_no;
939 l_level_no = l_tccp->numresolutions;
943 --l_level_no;
950 if (l_pdx + l_level_no < 32 &&
951 l_img_comp->dx <= UINT_MAX / (1u << (l_pdx + l_level_no))) {
952 l_dx = l_img_comp->dx * (1u << (l_pdx + l_level_no));
956 if (l_pdy + l_level_no < 32 &&
957 l_img_comp->dy <= UINT_MAX / (1u << (l_pdy + l_level_no))) {
958 l_dy = l_img_comp->dy * (1u << (l_pdy + l_level_no));
963 l_rx0 = opj_int_ceildivpow2(l_tcx0, (OPJ_INT32)l_level_no);
964 l_ry0 = opj_int_ceildivpow2(l_tcy0, (OPJ_INT32)l_level_no);
965 l_rx1 = opj_int_ceildivpow2(l_tcx1, (OPJ_INT32)l_level_no);
966 l_ry1 = opj_int_ceildivpow2(l_tcy1, (OPJ_INT32)l_level_no);