Lines Matching defs:sample
423 unsigned int sample ;
457 { sample = arith_shift_left (ucptr [k], 25) + arith_shift_left (ucptr [k + 1], 18) ;
458 psds->read_samples [k / 2] = (int) (sample - 0x80000000) ;
467 unsigned int sample ;
501 { sample = (((uint32_t) ucptr [k]) << 25) + (ucptr [k + 1] << 18) + (ucptr [k + 2] << 11) ;
502 psds->read_samples [k / 3] = (int) (sample - 0x80000000) ;
511 uint32_t sample ;
545 { sample = (((uint32_t) ucptr [k]) << 25) + (ucptr [k + 1] << 18) + (ucptr [k + 2] << 11) + (ucptr [k + 3] << 4) ;
546 psds->read_samples [k / 4] = (int) (sample - 0x80000000) ;
772 unsigned int sample ;
783 { sample = psds->write_samples [k / 2] ;
784 sample += 0x80000000 ;
785 ucptr [k] = (sample >> 25) & 0x7F ;
786 ucptr [k + 1] = (sample >> 18) & 0x7F ;
813 unsigned int sample ;
824 { sample = psds->write_samples [k / 3] ;
825 sample += 0x80000000 ;
826 ucptr [k] = (sample >> 25) & 0x7F ;
827 ucptr [k + 1] = (sample >> 18) & 0x7F ;
828 ucptr [k + 2] = (sample >> 11) & 0x7F ;
855 unsigned int sample ;
866 { sample = psds->write_samples [k / 4] ;
867 sample += 0x80000000 ;
868 ucptr [k] = (sample >> 25) & 0x7F ;
869 ucptr [k + 1] = (sample >> 18) & 0x7F ;
870 ucptr [k + 2] = (sample >> 11) & 0x7F ;
871 ucptr [k + 3] = (sample >> 4) & 0x7F ;