Lines Matching defs:ucptr
422 { unsigned char *ucptr, checksum ;
455 ucptr = psds->read_data + 5 ;
457 { sample = arith_shift_left (ucptr [k], 25) + arith_shift_left (ucptr [k + 1], 18) ;
466 { unsigned char *ucptr, checksum ;
499 ucptr = psds->read_data + 5 ;
501 { sample = (((uint32_t) ucptr [k]) << 25) + (ucptr [k + 1] << 18) + (ucptr [k + 2] << 11) ;
510 { unsigned char *ucptr, checksum ;
543 ucptr = psds->read_data + 5 ;
545 { sample = (((uint32_t) ucptr [k]) << 25) + (ucptr [k + 1] << 18) + (ucptr [k + 2] << 11) + (ucptr [k + 3] << 4) ;
771 { unsigned char *ucptr, checksum ;
781 ucptr = psds->write_data + 5 ;
785 ucptr [k] = (sample >> 25) & 0x7F ;
786 ucptr [k + 1] = (sample >> 18) & 0x7F ;
812 { unsigned char *ucptr, checksum ;
822 ucptr = psds->write_data + 5 ;
826 ucptr [k] = (sample >> 25) & 0x7F ;
827 ucptr [k + 1] = (sample >> 18) & 0x7F ;
828 ucptr [k + 2] = (sample >> 11) & 0x7F ;
854 { unsigned char *ucptr, checksum ;
864 ucptr = psds->write_data + 5 ;
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 ;