Searched refs:numbps (Results 1 – 14 of 14) sorted by relevance
/external/pdfium/third_party/libopenjpeg20/ |
D | tcd.h | 94 OPJ_UINT32 numbps; member 107 OPJ_UINT32 numbps; member 141 OPJ_INT32 numbps; member
|
D | t1.c | 1383 bpno_plus_one = (OPJ_INT32)(roishift + cblk->numbps); in opj_t1_decode_cblk() 1395 …type = ((bpno_plus_one <= ((OPJ_INT32) (cblk->numbps)) - 4) && (passtype < 2) && (cblksty & J2K_CC… in opj_t1_decode_cblk() 1593 cblk->numbps = max ? (OPJ_UINT32)((opj_int_floorlog2(max) + 1) - T1_NMSEDEC_FRACBITS) : 0; in opj_t1_encode_cblk() 1595 bpno = (OPJ_INT32)(cblk->numbps - 1); in opj_t1_encode_cblk() 1607 …type = ((bpno < ((OPJ_INT32) (cblk->numbps) - 4)) && (passtype < 2) && (cblksty & J2K_CCP_CBLKSTY_… in opj_t1_encode_cblk() 1641 if (((bpno < ((OPJ_INT32) (cblk->numbps) - 4) && (passtype > 0)) in opj_t1_encode_cblk() 1642 …|| ((bpno == ((OPJ_INT32)cblk->numbps - 4)) && (passtype == 2))) && (cblksty & J2K_CCP_CBLKSTY_LAZ… in opj_t1_encode_cblk() 1663 …type = ((bpno < ((OPJ_INT32) (cblk->numbps) - 4)) && (passtype < 2) && (cblksty & J2K_CCP_CBLKSTY_… in opj_t1_encode_cblk()
|
D | 0003-dwt-decode.patch | 41 @@ -124,10 +122,10 @@ static void opj_dwt_encode_stepsize(OPJ_INT32 stepsize, OPJ_INT32 numbps, opj… 117 @@ -385,7 +390,7 @@ static void opj_dwt_encode_stepsize(OPJ_INT32 stepsize, OPJ_INT32 numbps, opj_st
|
D | t2.c | 618 … opj_tgt_setvalue(prc->imsbtree, cblkno, band->numbps - (OPJ_INT32)cblk->numbps); in opj_t2_encode_packet() 1012 l_cblk->numbps = (OPJ_UINT32)l_band->numbps + 1 - i; in opj_t2_read_packet_header()
|
D | tcd.c | 76 … band->x0, band->y0, band->x1, band->y1, band->stepsize, band->numbps); in tcd_dump() 339 …OPJ_INT32 imsb = (OPJ_INT32)(tcd->image->comps[compno].prec - cblk->numbps); /* number of bit-plan… in opj_tcd_makelayer_fixed() 851 OPJ_INT32 numbps; in opj_tcd_init_tile() local 876 numbps = (OPJ_INT32)(l_image_comp->prec + l_gain); in opj_tcd_init_tile() 877 …OPJ_FLOAT32)(((1.0 + l_step_size->mant / 2048.0) * pow(2.0, (OPJ_INT32) (numbps - l_step_size->exp… in opj_tcd_init_tile() 878 l_band->numbps = l_step_size->expn + (OPJ_INT32)l_tccp->numgbits - 1; /* WHY -1 ? */ in opj_tcd_init_tile()
|
D | dwt.c | 121 static void opj_dwt_encode_stepsize(OPJ_INT32 stepsize, OPJ_INT32 numbps, opj_stepsize_t *bandno_st… 375 static void opj_dwt_encode_stepsize(OPJ_INT32 stepsize, OPJ_INT32 numbps, opj_stepsize_t *bandno_st… in opj_dwt_encode_stepsize() argument 380 bandno_stepsize->expn = numbps - p; in opj_dwt_encode_stepsize()
|
/external/opencv3/3rdparty/libjasper/ |
D | jpc_enc.h | 328 int numbps; member 415 int numbps; member
|
D | jpc_t1enc.c | 160 cblk->numbps = JAS_MAX(jpc_firstone(mx) + 1 - JPC_NUMEXTRABITS, 0); in jpc_enc_enccblks() 164 cblk->numimsbs = band->numbps - cblk->numbps; in jpc_enc_enccblks() 220 cblk->numpasses = (cblk->numbps > 0) ? (3 * cblk->numbps - 2) : 0; in jpc_enc_enccblk() 245 bitpos = cblk->numbps - 1; in jpc_enc_enccblk()
|
D | jpc_dec.h | 371 int numbps; member
|
D | jpc_t1dec.c | 240 if (cblk->numimsbs > band->numbps) { in jpc_dec_decodecblk() 245 if (cblk->numimsbs < ccp->roishift - band->numbps) { in jpc_dec_decodecblk() 250 bpno = band->roishift + band->numbps - 1 - (cblk->numimsbs + in jpc_dec_decodecblk()
|
D | jpc_dec.c | 179 static void jpc_undo_roi(jas_matrix_t *x, int roishift, int bgshift, int numbps); 783 band->numbps = ccp->numguardbits + in jpc_dec_tileinit() 785 band->roishift = (ccp->roishift + band->numbps >= JPC_PREC) ? in jpc_dec_tileinit() 786 (JPC_PREC - 1 - band->numbps) : ccp->roishift; in jpc_dec_tileinit() 1051 band->roishift, band->numbps); in jpc_dec_tiledecode() 1796 static void jpc_undo_roi(jas_matrix_t *x, int roishift, int bgshift, int numbps) in jpc_undo_roi() argument 1824 mask = (1 << numbps) - 1; in jpc_undo_roi()
|
D | jpc_t2enc.c | 531 cblk->numimsbs = band->numbps - cblk->numbps; in jpc_init_t2state()
|
D | jpc_t2dec.c | 391 …vl->bands, cblk - prc->cblks, seg->passno, seg->numpasses, seg->cnt, band->numbps, cblk->numimsbs); in jpc_dec_decodepkt()
|
D | jpc_enc.c | 1248 band->numbps = cp->tccp.numgbits + in jpc_enc_encodemainbody() 2287 band->numbps = 0; in band_create() 2518 cblk->numbps = 0; in cblk_create()
|