Lines Matching defs:ptr
63 static sf_count_t txw_read_s (SF_PRIVATE *psf, short *ptr, sf_count_t len) ;
64 static sf_count_t txw_read_i (SF_PRIVATE *psf, int *ptr, sf_count_t len) ;
65 static sf_count_t txw_read_f (SF_PRIVATE *psf, float *ptr, sf_count_t len) ;
66 static sf_count_t txw_read_d (SF_PRIVATE *psf, double *ptr, sf_count_t len) ;
238 txw_read_s (SF_PRIVATE *psf, short *ptr, sf_count_t len)
254 ptr [total + k] = sample ;
256 ptr [total + k + 1] = sample ;
268 txw_read_i (SF_PRIVATE *psf, int *ptr, sf_count_t len)
284 ptr [total + k] = sample << 16 ;
286 ptr [total + k + 1] = sample << 16 ;
298 txw_read_f (SF_PRIVATE *psf, float *ptr, sf_count_t len)
320 ptr [total + k] = normfact * sample ;
322 ptr [total + k + 1] = normfact * sample ;
334 txw_read_d (SF_PRIVATE *psf, double *ptr, sf_count_t len)
356 ptr [total + k] = normfact * sample ;
358 ptr [total + k + 1] = normfact * sample ;