HomeSort by: relevance | last modified time | path
    Searched defs:conv_func (Results 1 - 3 of 3) sorted by relevancy

  /src/usr.bin/audio/common/
sun.c 197 write_conv_func conv_func = NULL; local in function:sun_write_get_conv_func
207 conv_func = change_sign16_swap_bytes_le;
209 conv_func = change_sign32_swap_bytes_le;
217 conv_func = change_sign16_be;
219 conv_func = change_sign32_be;
227 conv_func = swap_bytes;
229 conv_func = swap_bytes32;
233 return conv_func;
wav.c 507 write_conv_func conv_func = NULL; local in function:wav_write_get_conv_func
520 conv_func = change_sign16_swap_bytes_be;
522 conv_func = change_sign32_swap_bytes_be;
530 conv_func = change_sign8;
532 conv_func = swap_bytes;
534 conv_func = swap_bytes32;
542 conv_func = change_sign16_le;
544 conv_func = change_sign32_le;
553 conv_func = change_sign8;
560 return conv_func;
    [all...]
  /src/usr.bin/audio/record/
record.c 73 static void (*conv_func) (u_char *, int); variable in typeref:typename:void (*)(u_char *,int)
302 conv_func = write_get_conv_func(&ti);
304 if (verbose && conv_func) {
307 if (conv_func == swap_bytes)
309 else if (conv_func == swap_bytes32)
311 else if (conv_func == change_sign16_be)
313 else if (conv_func == change_sign16_le)
315 else if (conv_func == change_sign24_be)
317 else if (conv_func == change_sign24_le)
319 else if (conv_func == change_sign32_be
    [all...]

Completed in 31 milliseconds