Lines Matching refs:prec_
263 newcmpt->prec_ = cmpt->prec_; in jas_image_cmpt_copy()
316 cmpt->prec_ = depth; in jas_image_cmpt_create()
451 *d = bitstoint(v, cmpt->prec_, cmpt->sgnd_); in jas_image_readcmpt()
495 v = inttobits(*d, cmpt->prec_, cmpt->sgnd_); in jas_image_writecmpt()
636 rawsize += (cmpt->width_ * cmpt->height_ * cmpt->prec_ + in jas_image_rawsize()
823 fprintf(out, "prec=%d, sgnd=%d, cmpttype=%d\n", cmpt->prec_, in jas_image_dump()
907 return bitstoint(v, cmpt->prec_, cmpt->sgnd_); in jas_image_readcmptsample()
924 t = inttobits(v, cmpt->prec_, cmpt->sgnd_); in jas_image_writecmptsample()
990 if (getint(cmpt->stream_, cmpt->sgnd_, cmpt->prec_, &v)) in jas_image_readcmpt2()
1026 if (putint(cmpt->stream_, cmpt->sgnd_, cmpt->prec_, v)) in jas_image_writecmpt2()
1122 oldcmpt->prec_, &v)) in jas_image_sampcmpt()
1124 if (newcmpt->prec_ != oldcmpt->prec_ || in jas_image_sampcmpt()
1126 v = convert(v, oldcmpt->sgnd_, oldcmpt->prec_, in jas_image_sampcmpt()
1127 newcmpt->sgnd_, newcmpt->prec_); in jas_image_sampcmpt()
1130 newcmpt->prec_, v)) in jas_image_sampcmpt()