Home
last modified time | relevance | path

Searched refs:opt_output (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/libxo/xopo/
H A Dxopo.c119 char *opt_output = NULL; in main() local
139 opt_output = optarg; in main()
214 if (opt_output) { in main()
215 unlink(opt_output); in main()
216 outfile = fopen(opt_output, "w"); in main()
219 opt_output); in main()
/freebsd/contrib/llvm-project/libc/src/__support/
H A Dstr_to_float.h694 cpp::optional<ExpandedFloat<T>> opt_output; variable
718 opt_output = clinger_fast_path<T>(init_num, round);
721 if (opt_output.has_value()) {
722 return {opt_output.value(), 0};
729 opt_output = eisel_lemire<T>(init_num, round);
730 if (opt_output.has_value()) {
732 return {opt_output.value(), 0};
739 if (opt_output->mantissa == second_output->mantissa &&
740 opt_output->exponent == second_output->exponent) {
741 return {opt_output.value(), 0};