Home
last modified time | relevance | path

Searched refs:gOutputFile (Results 1 – 5 of 5) sorted by relevance

/dports/audio/faust/faust-2.37.3/architecture/smartKeyboard/android/app/oboe/apps/OboeTester/scripts/
H A Ddsp_timing.py41 gOutputFile = kOutputFileBase + "now.txt" variable
47 "--es", "file", gOutputFile, \
55 "--es", "file", gOutputFile, \
97 if subprocess.call(["adb", "shell", "ls", gOutputFile, "2>/dev/null"]) == 0:
98 testOutput = subprocess.check_output(["adb", "shell", "cat", gOutputFile])
104 subprocess.call(["adb", "shell", "rm", gOutputFile])
125 subprocess.call(["adb", "shell", "rm", gOutputFile, "2>/dev/null"])
218 global gOutputFile
219 print "gOutputFile = " + gOutputFile
221 gOutputFile = kOutputFileBase \
[all …]
/dports/graphics/mscgen/mscgen-0.20/src/
H A Dmain.c149 static char gOutputFile[4096]; variable
167 {"-o", &gOutputFilePresent, "%4096[^?]", gOutputFile },
1607 snprintf(gOutputFile, sizeof(gOutputFile), "%s", gInputFile); in main()
1608 trimExtension(gOutputFile); in main()
1609 strncat(gOutputFile, ".", sizeof(gOutputFile) - (strlen(gOutputFile) + 1)); in main()
1610 strncat(gOutputFile, gOutType, sizeof(gOutputFile) - (strlen(gOutputFile) + 1)); in main()
1656 outImage = gOutputFile; in main()
1661 outImage = gOutputFile; in main()
1666 outImage = gOutputFile; in main()
1746 ismap = fopen(gOutputFile, "w"); in main()
[all …]
/dports/audio/faust/faust-2.37.3/compiler/
H A Dlibcode.cpp339 gGlobal->gOutputFile = argv[i + 1]; in processCmdline()
1526 if (gGlobal->gOutputFile == "binary") { in createHelperFile()
1528 } else if (gGlobal->gOutputFile != "") { in createHelperFile()
1621 if (gGlobal->gOutputFile == "string") { in generateCode()
1623 } else if (gGlobal->gOutputFile == "binary") { in generateCode()
1625 } else if (gGlobal->gOutputFile != "") { in generateCode()
1627 ? (gGlobal->gOutputDir + "/" + gGlobal->gOutputFile) : gGlobal->gOutputFile; in generateCode()
1784 if (gGlobal->gOutputFile == "string") { in generateCode()
1790 } else if (gGlobal->gOutputFile != "") { in generateCode()
1852 if (gGlobal->gOutputFile == "") { in generateCode()
[all …]
H A Dglobal.hh120 string gOutputFile; member
/dports/audio/faust/faust-2.37.3/compiler/generator/cpp/
H A Dcpp_gpu_code_container.hh463 string filename = gGlobal->gOutputFile + ".cu"; in CPPCUDACodeContainer()