Searched refs:pcol (Results 1 – 5 of 5) sorted by relevance
/external/pdfium/third_party/libopenjpeg20/ |
D | 0005-jp2_apply_pclr.patch | 6 assert(pcol == 0); 9 - assert(i == pcol); 10 - new_comps[pcol] = old_comps[cmp]; 11 + assert( i == pcol ); // probably wrong? 17 pcol = cmap[i].pcol; 20 - max = new_comps[pcol].w * new_comps[pcol].h; 33 - assert(i == pcol); 34 - dst = new_comps[pcol].data; 35 + assert( i == pcol ); // probably wrong?
|
D | 0022-jp2_apply_pclr_overflow.patch | 22 pcol = cmap[i].pcol; 47 assert( i == pcol ); // probably wrong?
|
D | jp2.c | 963 OPJ_BYTE pcol = cmap[i].pcol; in opj_jp2_check_color() local 970 } else if (pcol >= nr_channels) { in opj_jp2_check_color() 972 "Invalid component/palette index for direct mapping %d.\n", pcol); in opj_jp2_check_color() 974 } else if (pcol_usage[pcol] && mtyp == 1) { in opj_jp2_check_color() 975 opj_event_msg(p_manager, EVT_ERROR, "Component %d is mapped twice.\n", pcol); in opj_jp2_check_color() 977 } else if (mtyp == 0 && pcol != 0) { in opj_jp2_check_color() 981 pcol); in opj_jp2_check_color() 983 } else if (mtyp == 1 && pcol != i) { in opj_jp2_check_color() 989 "to %d.\n", i, i, pcol); in opj_jp2_check_color() 992 pcol_usage[pcol] = OPJ_TRUE; in opj_jp2_check_color() [all …]
|
D | jp2.h | 110 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)
|