Home | History | Annotate | Download | only in jbig2

Lines Matching refs:IBI

97       CJBig2_Image* IBI = nullptr;
99 IBI = SBSYMS[IDI];
139 IBI = pGRRD->decode(pArithDecoder.get(), grContext);
140 if (!IBI)
147 delete IBI;
151 if (!IBI) {
154 uint32_t WI = IBI->width();
155 uint32_t HI = IBI->height();
167 SBREG->composeFrom(SI, TI, IBI, SBCOMBOP);
170 SBREG->composeFrom(SI - WI + 1, TI, IBI, SBCOMBOP);
173 SBREG->composeFrom(SI, TI - HI + 1, IBI, SBCOMBOP);
176 SBREG->composeFrom(SI - WI + 1, TI - HI + 1, IBI, SBCOMBOP);
182 SBREG->composeFrom(TI, SI, IBI, SBCOMBOP);
185 SBREG->composeFrom(TI - WI + 1, SI, IBI, SBCOMBOP);
188 SBREG->composeFrom(TI, SI - HI + 1, IBI, SBCOMBOP);
191 SBREG->composeFrom(TI - WI + 1, SI - HI + 1, IBI, SBCOMBOP);
196 delete IBI;
316 std::unique_ptr<CJBig2_Image> IBI;
350 IBI.reset(pGRRD->decode(pArithDecoder, grContext));
351 pIBI = IBI.get();