• Home
  • Raw
  • Download

Lines Matching refs:s

950 	skip = WF_GET_CHANNEL(&header->hdr.s);  in wavefront_send_sample()
952 if (skip > 0 && header->hdr.s.SampleResolution != LINEAR_16BIT) { in wavefront_send_sample()
991 WF_GET_CHANNEL (&header->hdr.s), in wavefront_send_sample()
996 WF_SET_CHANNEL(&header->hdr.s, 0); in wavefront_send_sample()
1022 shptr = munge_int32 (*((u32 *) &header->hdr.s.sampleStartOffset), in wavefront_send_sample()
1024 shptr = munge_int32 (*((u32 *) &header->hdr.s.loopStartOffset), in wavefront_send_sample()
1026 shptr = munge_int32 (*((u32 *) &header->hdr.s.loopEndOffset), in wavefront_send_sample()
1028 shptr = munge_int32 (*((u32 *) &header->hdr.s.sampleEndOffset), in wavefront_send_sample()
1036 shptr = munge_int32 (header->hdr.s.FrequencyBias, shptr, 3); in wavefront_send_sample()
1043 shptr = munge_int32 (*(&header->hdr.s.FrequencyBias+1), in wavefront_send_sample()
1090 if (WF_SAMPLE_IS_8BIT(&header->hdr.s)) { in wavefront_send_sample()
1384 if (copy_from_user (&header->hdr.s, header->hdrptr, in wavefront_load_patch()
1395 if (copy_from_user (&header->hdr.s, header->hdrptr, in wavefront_load_patch()
1465 wavefront_sample s; in process_sample_hdr() local
1477 *((u32 *) &s.sampleStartOffset) = demunge_int32 (ptr, 4); ptr += 4; in process_sample_hdr()
1478 *((u32 *) &s.loopStartOffset) = demunge_int32 (ptr, 4); ptr += 4; in process_sample_hdr()
1479 *((u32 *) &s.loopEndOffset) = demunge_int32 (ptr, 4); ptr += 4; in process_sample_hdr()
1480 *((u32 *) &s.sampleEndOffset) = demunge_int32 (ptr, 4); ptr += 4; in process_sample_hdr()
1481 *((u32 *) &s.FrequencyBias) = demunge_int32 (ptr, 3); ptr += 3; in process_sample_hdr()
1483 s.SampleResolution = *ptr & 0x3; in process_sample_hdr()
1484 s.Loop = *ptr & 0x8; in process_sample_hdr()
1485 s.Bidirectional = *ptr & 0x10; in process_sample_hdr()
1486 s.Reverse = *ptr & 0x40; in process_sample_hdr()
1490 memcpy (buf, (unsigned char *) &s, sizeof (wavefront_sample)); in process_sample_hdr()