HomeSort by relevance Sort by last modified time
    Searched defs:outname (Results 1 - 25 of 42) sorted by null

1 2

  /external/dtc/tests/
open_pack.c 39 char outname[PATH_MAX]; local
57 sprintf(outname, "opened.%s", inname);
58 save_blob(outname, fdt1);
63 sprintf(outname, "repacked.%s", inname);
64 save_blob(outname, fdt1);
move_and_save.c 40 char outname[PATH_MAX]; local
55 sprintf(outname, "moved.%s", inname);
56 save_blob(outname, fdt1);
63 sprintf(outname, "shunted.%s", inname);
64 save_blob(outname, fdt2);
71 sprintf(outname, "deshunted.%s", inname);
72 save_blob(outname, fdt3);
nopulate.c 61 char outname[PATH_MAX]; local
69 sprintf(outname, "noppy.%s", inname);
102 save_blob(outname, fdt2);
dtb_reverse.c 135 char outname[PATH_MAX]; local
144 sprintf(outname, "%s.reversed.test.dtb", argv[1]);
160 save_blob(outname, out);
mangle-layout.c 130 char outname[PATH_MAX]; local
140 sprintf(outname, "v%d.%s.%s", version, blockorder, inname);
161 save_blob(outname, buf.buf);
  /external/selinux/semodule-utils/semodule_expand/
semodule_expand.c 40 char *basename, *outname; local
107 outname = argv[optind];
169 outfile = fopen(outname, "w");
171 perror(outname);
180 argv[0], outname);
  /external/selinux/semodule-utils/semodule_link/
semodule_link.c 80 char *basename, *outname = NULL; local
96 outname = optarg;
150 if (outname) {
151 outfile = fopen(outname, "w");
153 perror(outname);
  /external/webrtc/webrtc/modules/audio_coding/codecs/g711/test/
testG711.cc 36 char inname[80], outname[40], bitname[40]; local
93 sscanf(argv[4], "%s", outname);
106 if ((outp = fopen(outname, "wb")) == NULL) {
107 printf(" G.711: Cannot write file %s.\n", outname);
110 printf("\nInput: %s\nOutput: %s\n", inname, outname);
  /external/webrtc/webrtc/modules/audio_coding/codecs/g722/test/
testG722.cc 43 char inname[60], outbit[40], outname[40]; local
90 sscanf(argv[4], "%s", outname);
100 if ((outp = fopen(outname,"wb")) == NULL) {
101 printf(" G.722: Cannot write file %s.\n", outname);
104 printf("\nInput:%s\nOutput bitstream:%s\nOutput:%s\n", inname, outbit, outname);
  /external/dtc/
dtc.c 173 const char *outname = "-"; local
197 outname = optarg;
288 fprintf(depfile, "%s:", outname);
294 outform = guess_type_by_name(outname, NULL);
311 dti->outname = outname;
343 if (streq(outname, "-")) {
346 outf = fopen(outname, "wb");
349 outname, strerror(errno));
dtc.h 255 const char *outname; /* filename being written to, "-" for stdout */ member in struct:dt_info
  /external/libpng/contrib/gregbook/
wpng.c 164 char *inname = NULL, outname[256]; local
365 /* make outname from inname */
369 strcpy(outname, inname);
370 strcpy(outname+len, ".png");
373 strncpy(outname, inname, len);
374 strcpy(outname+len, ".png");
376 /* check if outname already exists; if not, open */
377 if ((wpng_info.outfile = fopen(outname, "rb")) != NULL) {
379 outname);
382 } else if (!(wpng_info.outfile = fopen(outname, "wb")))
    [all...]
  /toolchain/binutils/binutils-2.27/libiberty/
pex-common.c 159 char *outname; local
168 outname = (char *) orig_outname;
221 if (outname == NULL)
225 outname = concat (obj->tempbase, outname, NULL);
232 outname = temp_file (obj, flags, outname);
233 if (! outname)
240 if (outname != orig_outname)
245 pex_add_remove (obj, outname, outname_allocated)
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/FwImage/
fwimage.c 305 UCHAR outname[500]; local
481 strcpy (outname, argv[2]);
483 for (p = outname; *p; p++) {
496 OutImageName = outname;
  /external/libgsm/src/
toast.c 27 char *inname, *outname; variable
235 char * tmp = outname;
241 outname = (char *)0;
324 perror(outname);
326 progname, outname);
330 if (outname && chmod(outname, instat.st_mode & 07777)) {
331 perror(outname);
333 progname, outname);
346 (void)chown(outname, instat.st_uid, instat.st_gid)
    [all...]
  /external/vboot_reference/futility/
cmd_dump_fmap.c 40 char *outname = 0; local
82 outname = NULL;
86 outname = extract_names[j];
114 if (!outname) {
118 outname = buf;
120 FILE *fp = fopen(outname, "wb");
123 progname, outname, strerror(errno));
141 printf("saved as \"%s\"\n", outname);
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/test/
test_iSACfixfloat.c 83 char inname[50], outname[50], bottleneck_file[50], bitfilename[60], local
243 sscanf(argv[argc - 1], "%s", outname);
249 if ((outp = fopen(outname, "wb")) == NULL) {
250 printf(" iSAC: Cannot write file %s.\n", outname);
253 printf("\nInput:%s\nOutput:%s\n", inname, outname);
256 while (outname[i] != '\0') {
257 bitfilename[i] = outname[i];
kenny.cc 98 char inname[100], outname[100], outbitsname[100], bottleneck_file[100]; local
414 sscanf(argv[argc-1], "%s", outname);
417 while ((int)outname[h] != 0) {
418 outbitsname[h] = outname[h];
429 if ((outp = fopen(outname,"wb")) == NULL) {
430 printf(" iSAC: Cannot write file %s\n", outname);
438 printf("\nInput:%s\nOutput:%s\n\n", inname, outname);
  /external/zlib/src/examples/
gun.c 540 inname is NULL or an empty string, read from stdin. If outname is NULL or
543 outname.
548 local int gunzip(z_stream *strm, char *inname, char *outname, int test)
567 else if (outname == NULL || *outname == 0) {
568 outname = "-";
572 outfile = open(outname, O_CREAT | O_TRUNC | O_WRONLY, 0666);
575 fprintf(stderr, "gun cannot create %s\n", outname);
591 copymeta(inname, outname); /* copy attributes */
599 if (outfile > 2) unlink(outname);
634 char *outname; local
    [all...]
  /toolchain/binutils/binutils-2.27/zlib/examples/
gun.c 540 inname is NULL or an empty string, read from stdin. If outname is NULL or
543 outname.
548 local int gunzip(z_stream *strm, char *inname, char *outname, int test)
567 else if (outname == NULL || *outname == 0) {
568 outname = "-";
572 outfile = open(outname, O_CREAT | O_TRUNC | O_WRONLY, 0666);
575 fprintf(stderr, "gun cannot create %s\n", outname);
591 copymeta(inname, outname); /* copy attributes */
599 if (outfile > 2) unlink(outname);
634 char *outname; local
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/test/ReleaseTest-API/
ReleaseTest-API.cc 42 char inname[100], outname[100], bottleneck_file[100], vadfile[100]; local
410 sscanf(argv[argc - 1], "%s", outname);
412 printf("Output file: %s\n\n", outname);
419 if ((outp = fopen(outname, "wb")) == NULL) {
420 printf(" Error iSAC Cannot write file %s.\n", outname);
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/test/
simpleKenny.c 56 char outname[500]; local
161 sscanf(argv[2], "%s", outname);
211 if ((outp = fopen(outname, "wb")) == NULL) {
212 printf(" iSAC: Cannot write file %s.\n", outname);
217 _splitpath(outname, outDrive, outPath, outPrefix, outSuffix);
226 printf("Output................... %s\n", outname);
518 strcpy(newOutName, outname);
533 rename(outname, newOutName);
  /external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
CodeMangler.java 92 String outname = null; local
104 outname = args[++i];
205 if (outname == null) {
206 outname = inname;
207 } else if (!(outname.startsWith("\\") || outname.startsWith("/"))) {
208 outname = username + File.separator + outname;
210 outdir = new File(outname);
    [all...]
  /toolchain/binutils/binutils-2.27/bfd/
elf32-i370.c 658 const char *outname;
665 outname = bfd_get_section_name (output_bfd,
667 target = bfd_get_section_by_name (output_bfd, outname + 5);
652 const char *outname; local
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/
main.c 1130 outname( char *fs ) function
    [all...]

Completed in 541 milliseconds

1 2