Lines Matching refs:sptr
178 short *sptr ; in vox_read_i() local
186 sptr = ubuf.sbuf ; in vox_read_i()
190 count = vox_read_block (psf, pvox, sptr, readcount) ; in vox_read_i()
192 ptr [total + k] = arith_shift_left (sptr [k], 16) ; in vox_read_i()
206 short *sptr ; in vox_read_f() local
217 sptr = ubuf.sbuf ; in vox_read_f()
221 count = vox_read_block (psf, pvox, sptr, readcount) ; in vox_read_f()
223 ptr [total + k] = normfact * (float) (sptr [k]) ; in vox_read_f()
237 short *sptr ; in vox_read_d() local
248 sptr = ubuf.sbuf ; in vox_read_d()
252 count = vox_read_block (psf, pvox, sptr, readcount) ; in vox_read_d()
254 ptr [total + k] = normfact * (double) (sptr [k]) ; in vox_read_d()
315 short *sptr ; in vox_write_i() local
323 sptr = ubuf.sbuf ; in vox_write_i()
328 sptr [k] = ptr [total + k] >> 16 ; in vox_write_i()
329 count = vox_write_block (psf, pvox, sptr, writecount) ; in vox_write_i()
343 short *sptr ; in vox_write_f() local
354 sptr = ubuf.sbuf ; in vox_write_f()
359 sptr [k] = psf_lrintf (normfact * ptr [total + k]) ; in vox_write_f()
360 count = vox_write_block (psf, pvox, sptr, writecount) ; in vox_write_f()
374 short *sptr ; in vox_write_d() local
385 sptr = ubuf.sbuf ; in vox_write_d()
390 sptr [k] = psf_lrint (normfact * ptr [total + k]) ; in vox_write_d()
391 count = vox_write_block (psf, pvox, sptr, writecount) ; in vox_write_d()