Searched refs:pcol (Results 1 – 6 of 6) sorted by relevance
/external/pdfium/third_party/libopenjpeg20/ |
D | 0005-jp2_apply_pclr.patch | 6 …_event_msg(p_manager, EVT_ERROR, "Invalid component/palette index for direct mapping %d.\n", pcol); 9 - else if (pcol_usage[pcol] && cmap[i].mtyp == 1) { 10 + else if (pcol_usage[pcol] && cmap[i].mtyp != 0) { 11 opj_event_msg(p_manager, EVT_ERROR, "Component %d is mapped twice.\n", pcol); 15 assert( pcol == 0 ); 18 - assert( i == pcol ); 19 - new_comps[pcol] = old_comps[cmp]; 20 + assert( i == pcol ); // probably wrong? 26 cmp = cmap[i].cmp; pcol = cmap[i].pcol; 29 - max = new_comps[pcol].w * new_comps[pcol].h; [all …]
|
D | 0008-jp2_check_color.patch | 9 - OPJ_UINT16 pcol = cmap[i].pcol; 16 + OPJ_UINT16 pcol = cmap[i].pcol; 17 if (pcol >= nr_channels) { 18 …_event_msg(p_manager, EVT_ERROR, "Invalid component/palette index for direct mapping %d.\n", pcol);
|
D | 0022-jp2_apply_pclr_overflow.patch | 22 cmp = cmap[i].cmp; pcol = cmap[i].pcol; 48 assert( i == pcol ); // probably wrong?
|
D | jp2.c | 905 OPJ_UINT16 pcol = cmap[i].pcol; in opj_jp2_check_color() local 906 if (pcol >= nr_channels) { in opj_jp2_check_color() 907 …_event_msg(p_manager, EVT_ERROR, "Invalid component/palette index for direct mapping %d.\n", pcol); in opj_jp2_check_color() 910 else if (pcol_usage[pcol] && cmap[i].mtyp != 0) { in opj_jp2_check_color() 911 opj_event_msg(p_manager, EVT_ERROR, "Component %d is mapped twice.\n", pcol); in opj_jp2_check_color() 914 else if (cmap[i].mtyp == 0 && cmap[i].pcol != 0) { in opj_jp2_check_color() 917 opj_event_msg(p_manager, EVT_ERROR, "Direct use at #%d however pcol=%d.\n", i, pcol); in opj_jp2_check_color() 921 pcol_usage[pcol] = OPJ_TRUE; in opj_jp2_check_color() 943 cmap[i].pcol = (OPJ_BYTE) i; in opj_jp2_check_color() 965 OPJ_UINT16 i, nr_channels, cmp, pcol; in opj_jp2_apply_pclr() local [all …]
|
D | jp2.h | 115 OPJ_BYTE mtyp, pcol; member
|
/external/eigen/Eigen/src/SparseCore/ |
D | SparseColEtree.h | 79 StorageIndex pcol = col; variable 80 if(perm) pcol = perm[col]; 81 for (typename MatrixType::InnerIterator it(mat, pcol); it; ++it) 101 StorageIndex pcol = col; variable 102 if(perm) pcol = perm[col]; 103 for (typename MatrixType::InnerIterator it(mat, pcol); it||!found_diag; ++it)
|