Home | History | Annotate | Download | only in record

Lines Matching defs:conv_func

73 static void (*conv_func) (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)
321 else if (conv_func == change_sign32_le)
323 else if (conv_func == change_sign16_swap_bytes_be)
325 else if (conv_func == change_sign16_swap_bytes_le)
327 else if (conv_func == change_sign24_swap_bytes_be)
329 else if (conv_func == change_sign24_swap_bytes_le)
331 else if (conv_func == change_sign32_swap_bytes_be)
333 else if (conv_func == change_sign32_swap_bytes_le)
361 if (conv_func)
362 (*conv_func)(buffer, nread);