Lines Matching refs:bufptr
90 static int jas_cmputint(long **bufptr, int sgnd, int prec, long val);
91 static int jas_cmgetint(long **bufptr, int sgnd, int prec, long *val);
486 jas_cmreal_t *bufptr; in jas_cmxform_apply() local
533 bufptr = &inbuf[i]; in jas_cmxform_apply()
537 *bufptr = (v - bias) / scale; in jas_cmxform_apply()
538 bufptr += xform->numinchans; in jas_cmxform_apply()
560 bufptr = &outbuf[i]; in jas_cmxform_apply()
563 v = (*bufptr) * scale + bias; in jas_cmxform_apply()
564 bufptr += xform->numoutchans; in jas_cmxform_apply()
1225 static int jas_cmgetint(long **bufptr, int sgnd, int prec, long *val) in jas_cmgetint() argument
1229 v = **bufptr; in jas_cmgetint()
1238 ++(*bufptr); in jas_cmgetint()
1243 static int jas_cmputint(long **bufptr, int sgnd, int prec, long val) in jas_cmputint() argument
1254 **bufptr = val; in jas_cmputint()
1255 ++(*bufptr); in jas_cmputint()