Home | History | Annotate | Download | only in libopenjpeg20

Lines Matching refs:l_res

8024         opj_tcd_resolution_t* l_res= 00;
8055 l_res = l_tilec->resolutions + l_img_comp_src->resno_decoded;
8069 l_res->x0, l_res->x1, l_res->y0, l_res->y1);
8072 l_width_src = (OPJ_UINT32)(l_res->x1 - l_res->x0);
8073 l_height_src = (OPJ_UINT32)(l_res->y1 - l_res->y0);
8093 assert( l_res->x0 >= 0);
8094 assert( l_res->x1 >= 0);
8095 if ( l_x0_dest < (OPJ_UINT32)l_res->x0 ) {
8096 l_start_x_dest = (OPJ_UINT32)l_res->x0 - l_x0_dest;
8099 if ( l_x1_dest >= (OPJ_UINT32)l_res->x1 ) {
8104 l_width_dest = l_x1_dest - (OPJ_UINT32)l_res->x0 ;
8110 l_offset_x0_src = (OPJ_INT32)l_x0_dest - l_res->x0;
8112 if ( l_x1_dest >= (OPJ_UINT32)l_res->x1 ) {
8118 l_offset_x1_src = l_res->x1 - (OPJ_INT32)l_x1_dest;
8122 if ( l_y0_dest < (OPJ_UINT32)l_res->y0 ) {
8123 l_start_y_dest = (OPJ_UINT32)l_res->y0 - l_y0_dest;
8126 if ( l_y1_dest >= (OPJ_UINT32)l_res->y1 ) {
8131 l_height_dest = l_y1_dest - (OPJ_UINT32)l_res->y0 ;
8137 l_offset_y0_src = (OPJ_INT32)l_y0_dest - l_res->y0;
8139 if ( l_y1_dest >= (OPJ_UINT32)l_res->y1 ) {
8145 l_offset_y1_src = l_res->y1 - (OPJ_INT32)l_y1_dest;
8175 l_res->x0, l_res->y0, l_width_src, l_height_src,