Searched refs:outspec (Results 1 – 2 of 2) sorted by relevance
327 ucs2_to_vtf7(char *outspec, unsigned long ucs2_char, int * output_cnt) in ucs2_to_vtf7() argument334 outspec[0] = '^'; in ucs2_to_vtf7()335 outspec[1] = 'U'; in ucs2_to_vtf7()338 outspec[2] = hex + '0'; in ucs2_to_vtf7()340 outspec[2] = (hex - 9) + 'A'; in ucs2_to_vtf7()343 outspec[3] = hex + '0'; in ucs2_to_vtf7()345 outspec[3] = (hex - 9) + 'A'; in ucs2_to_vtf7()349 outspec[4] = hex + '0'; in ucs2_to_vtf7()351 outspec[4] = (hex - 9) + 'A'; in ucs2_to_vtf7()354 outspec[5] = hex + '0'; in ucs2_to_vtf7()[all …]
1847 my $outspec = $self->opt_d; # Yes, -d overrides all else!1850 return $self->new_tempfile(@_) unless defined $outspec and length $outspec;1854 DEBUG > 3 and print "About to try writing to specified output file $outspec\n";1855 my $fh = $self->open_fh(">", $outspec);1857 DEBUG > 3 and print "Successfully opened $outspec\n";1859 return($fh, $outspec);