Home
last modified time | relevance | path

Searched refs:theOutputFile (Results 1 – 23 of 23) sorted by relevance

/dports/cad/cvc/cvc-1.1.0-4-gd172016/src/
H A DCCvcParameters.cc114 void CCvcParameters::PrintEnvironment(ostream & theOutputFile) { in PrintEnvironment() argument
116 theOutputFile << "CVC_TOP = '" << cvcTopBlock << "'" << endl; in PrintEnvironment()
117 theOutputFile << "CVC_NETLIST = '" << cvcNetlistFilename << "'" << endl; in PrintEnvironment()
118 theOutputFile << "CVC_MODE = '" << cvcMode << "'" << endl; in PrintEnvironment()
119 theOutputFile << "CVC_MODEL_FILE = '" << cvcModelFilename << "'" << endl; in PrintEnvironment()
120 theOutputFile << "CVC_POWER_FILE = '" << cvcPowerFilename << "'" << endl; in PrintEnvironment()
121 theOutputFile << "CVC_FUSE_FILE = '" << cvcFuseFilename << "'" << endl; in PrintEnvironment()
123 theOutputFile << "CVC_REPORT_TITLE = '" << cvcReportTitle << "'" << endl; in PrintEnvironment()
125 theOutputFile << "CVC_SEARCH_LIMIT = '" << cvcSearchLimit << "'" << endl; in PrintEnvironment()
126 theOutputFile << "CVC_LEAK_LIMIT = '" << cvcLeakLimit << "'" << endl; in PrintEnvironment()
[all …]
H A DCVirtualNet.cc130 void CVirtualNet::Print(ostream& theOutputFile) { in Print() argument
131 theOutputFile << "Next net(R) " << nextNetId << "(" << resistance << ")"; in Print()
132 theOutputFile << " final net(R) " << finalNetId << "(" << finalResistance << ")" << endl; in Print()
145 void CVirtualNetVector::DebugVirtualNet(netId_t theNetId, string theTitle, ostream& theOutputFile) { in DebugVirtualNet() argument
146 theOutputFile << theTitle << endl; in DebugVirtualNet()
147 theOutputFile << theNetId << endl; in DebugVirtualNet()
149theOutputFile << "->" << (*this)[theNetId].nextNetId << " r=" << (*this)[theNetId].resistance << e… in DebugVirtualNet()
152 theOutputFile << "-> last r=" << (*this)[theNetId].resistance << endl; in DebugVirtualNet()
153 theOutputFile << endl; in DebugVirtualNet()
H A DCvc.hh109 … DumpStatistics(unordered_map<KEY_T, TARGET_T> & theMap, string theTitle, ostream& theOutputFile) { in DumpStatistics() argument
110 theOutputFile << "Hash dump:" << theTitle << endl; in DumpStatistics()
113 theOutputFile << "Contains " << myBucketCount << " buckets, " << myHashSize << " elements" << endl; in DumpStatistics()
126 theOutputFile << "Element count " << count_it << ", " << myBucket_v[count_it] << endl; in DumpStatistics()
130 theOutputFile.precision(2); in DumpStatistics()
131theOutputFile << fixed << "Unused hash: " << ((float) myBucket_v[0] / myBucketCount) << ", average… in DumpStatistics()
132 theOutputFile.precision(myLastPrecision); in DumpStatistics()
H A DCCvcDb_interactive.cc1495 theOutputFile << "# Debug cvcrc for " << HierarchyName(theInstanceId) << endl; in CreateDebugCvcrcFile()
1497 theOutputFile << "CVC_TOP = '" << mySubcircuitName << "'" << endl; in CreateDebugCvcrcFile()
1499 theOutputFile << "CVC_NETLIST = '" << mySubcircuitName << ".cdl" << "'" << endl; in CreateDebugCvcrcFile()
1500 theOutputFile << "CVC_MODE = '" << theCell << "." << cvcParameters.cvcMode << "'" << endl; in CreateDebugCvcrcFile()
1501 theOutputFile << "CVC_MODEL_FILE = '" << cvcParameters.cvcModelFilename << "'" << endl; in CreateDebugCvcrcFile()
1504 theOutputFile << "CVC_POWER_FILE = '" << myPowerFile << "'" << endl; in CreateDebugCvcrcFile()
1505 theOutputFile << "CVC_FUSE_FILE = ''" << endl; in CreateDebugCvcrcFile()
1509 theOutputFile << "CVC_SEARCH_LIMIT = '" << cvcParameters.cvcSearchLimit << "'" << endl; in CreateDebugCvcrcFile()
1510 theOutputFile << "CVC_LEAK_LIMIT = '" << cvcParameters.cvcLeakLimit << "'" << endl; in CreateDebugCvcrcFile()
1511 theOutputFile << "CVC_SOI = '" << (( cvcParameters.cvcSOI ) ? "true" : "false") << "'" << endl; in CreateDebugCvcrcFile()
[all …]
H A DCCvcDb_print.cc403 (*power_ppit)->Print(theOutputFile, theIndentation + " ", myRealPowerName); in PrintPowerList()
406 theOutputFile << theIndentation << "> expected values" << endl; in PrintPowerList()
417 (*power_ppit)->Print(theOutputFile, theIndentation + " ", myRealPowerName); in PrintPowerList()
419 theOutputFile << theIndentation << "> macros" << endl; in PrintPowerList()
424 theOutputFile << theIndentation << " #define"; in PrintPowerList()
428 theOutputFile << theIndentation << theHeading << "> end" << endl << endl; in PrintPowerList()
860 void CCvcDb::PrintResistorOverflow(netId_t theNet, ofstream& theOutputFile) { in PrintResistorOverflow() argument
967 theOutputFile << theTitle << endl; in PrintBackupNet()
968 theOutputFile << NetName(theNetId) << endl; in PrintBackupNet()
972 theOutputFile << "->" << NetName(theVirtualNet_v[myNetId].backupNetId) << endl; in PrintBackupNet()
[all …]
H A DCVirtualNet.hh63 void Print(ostream& theOutputFile);
81 void DebugVirtualNet(netId_t theNetId, string theTitle = "", ostream& theOutputFile = cout);
H A DCCvcDb.hh412 …et(TVirtualNetVector& theVirtualNet_v, netId_t theNetId, string theTitle, ostream & theOutputFile);
426 void PrintResistorOverflow(netId_t theNet, ofstream& theOutputFile);
429 …Net(CVirtualNetVector& theVirtualNet_v, netId_t theNetId, string theTitle, ostream& theOutputFile);
455 …void CreateDebugCvcrcFile(ofstream & theOutputFile, instanceId_t theInstanceId, string theMode, in…
461 …et(TVirtualNetVector& theVirtualNet_v, netId_t theNetId, string theTitle, ostream& theOutputFile) { in PrintVirtualNet() argument
462 theOutputFile << theTitle << endl; in PrintVirtualNet()
463 theOutputFile << NetName(theNetId) << endl; in PrintVirtualNet()
467theOutputFile << "->" << NetName(theVirtualNet_v[myNetId].nextNetId) << " r=" << theVirtualNet_v[m… in PrintVirtualNet()
470 if ( netVoltagePtr_v[myNetId].full ) netVoltagePtr_v[myNetId].full->Print(theOutputFile); in PrintVirtualNet()
471 theOutputFile << endl; in PrintVirtualNet()
H A DCCvcParameters.hh125 void PrintEnvironment(ostream & theOutputFile = cout);
/dports/textproc/xalan-c/xalan_c-1.12/Tests/Extensions/
H A Dextensions.cpp138 XalanDOMString xml, xsl, theOutputFile, theGoldFile; in TestCase1() local
153 h.checkResults(theOutputFile, theGoldFile, logFile); in TestCase1()
174 XalanDOMString xml, xsl, theOutputFile, theGoldFile; in TestCase2() local
198 theOutputFile, in TestCase2()
220 XalanDOMString xml, xsl, theOutputFile, theGoldFile; in TestCase3() local
241 h.checkResults(theOutputFile, theGoldFile, logFile); in TestCase3()
254 theOutputFile, in TestCase3()
269 theOutputFile, in TestCase3()
292 XalanDOMString xml, xsl, theOutputFile, theGoldFile; in TestCase4() local
311 h.checkResults(theOutputFile, theGoldFile, logFile); in TestCase4()
[all …]
/dports/textproc/xalan-c/xalan_c-1.12/Tests/InputSource/
H A Dinputsource.cpp109 const XSLTResultTarget theResultTarget(theOutputFile); in testCase1()
120 h.checkResults(theOutputFile, theGoldFile, logFile); in testCase1()
138 const XSLTResultTarget theResultTarget2(theOutputFile); in testCase2()
149 h.checkResults(theOutputFile, theGoldFile, logFile); in testCase2()
169 XSLTResultTarget theResultTarget3(theOutputFile); in testCase3()
228 theOutputFile, theGoldFile); in testCase3()
248 h.checkResults(theOutputFile, in testCase3()
266 const XSLTResultTarget theResultTarget(theOutputFile); in testCase4()
276 h.checkResults(theOutputFile, theGoldFile, logFile); in testCase4()
314 const XSLTResultTarget theResultTarget(theOutputFile); in testCase5()
[all …]
/dports/textproc/xalan-c/xalan_c-1.12/samples/XalanTransformerCallback/
H A DXalanTransformerCallback.cpp108 FILE* theOutputFile) in doTransform() argument
120 CallbackHandler theHandler(theOutputFile); in doTransform()
178 FILE* const theOutputFile = fopen(argv[3], "w"); in main() local
180 if (theOutputFile == 0) in main()
186 theResult = doTransform(argv[1], argv[2], theOutputFile); in main()
188 fclose(theOutputFile); in main()
/dports/textproc/xalan-c/xalan_c-1.12/Tests/Threads/
H A DThreadTest.cpp293 XalanDOMString theOutputFile("birds", theManager); in thePreparsedThreadRoutine() local
295 NumberToDOMString(theInfo->m_threadNumber, theOutputFile); in thePreparsedThreadRoutine()
296 theOutputFile.append(".out"); in thePreparsedThreadRoutine()
304 …r.transform(*glbParsedSource, glbCompiledStylesheet, XSLTResultTarget( theOutputFile, theManager)); in thePreparsedThreadRoutine()
361 XalanDOMString theOutputFile("birds", theManager); in theUnparsedThreadRoutine() local
363 NumberToDOMString(theInfo->m_threadNumber, theOutputFile); in theUnparsedThreadRoutine()
364 theOutputFile.append(".out"); in theUnparsedThreadRoutine()
377 XSLTResultTarget( theOutputFile, theManager)); in theUnparsedThreadRoutine()
/dports/textproc/xalan-c/xalan_c-1.12/Tests/Params/
H A DParams.cpp185 const XalanDOMString theOutputFile = h.generateFileName(theOutput, "out"); in runTests() local
192 const XSLTResultTarget theResultTarget(theOutputFile); in runTests()
252 h.checkResults(theOutputFile, theGoldFile, logFile); in runTests()
/dports/textproc/xalan-c/xalan_c-1.12/Tests/Errortests/
H A DErrortests.cpp224 XalanDOMString theOutputFile(theManager); in runTests() local
225 h.generateFileName(outbase, "out", theOutputFile); in runTests()
230 const XSLTResultTarget resultFile(theOutputFile); in runTests()
/dports/textproc/xalan-c/xalan_c-1.12/Tests/Conf/
H A Dconf.cpp505 XalanDOMString theOutputFile(theMemoryManager); in runTests() local
506 h.generateFileName(outbase, "out", theOutputFile); in runTests()
510 const XSLTResultTarget resultFile(theOutputFile, theMemoryManager); in runTests()
561 h.checkResults(theOutputFile, theGoldFile, logFile); in runTests()
/dports/textproc/xalan-c/xalan_c-1.12/Tests/Dom2Dom/
H A Ddom2dom.cpp310 XalanDOMString theOutputFile(theManager); in runTests() local
311 f.generateFileName(theOutput, "out", theOutputFile); in runTests()
354 XalanFileOutputStream myOutput(theOutputFile, theManager); in runTests()
/dports/textproc/xalan-c/xalan_c-1.12/Tests/Memory/
H A DStressmem.cpp175 … const XalanDOMString theOutputFile = h.generateFileName(theOutput, "out"); in runTests() local
178 const XSLTResultTarget theResultTarget(theOutputFile); in runTests()
/dports/textproc/xalan-c/xalan_c-1.12/Tests/PerfT/
H A Dperft.cpp225 XalanDOMString theOutputFile; in runTests() local
226 h.generateFileName(outbase, "out", theOutputFile); in runTests()
230 const XSLTResultTarget theResultTarget(theOutputFile); in runTests()
/dports/textproc/xalan-c/xalan_c-1.12/Tests/Compare/
H A Dcompare.cpp163 const XalanDOMString theOutputFile = h.generateFileName(outbase, "out"); in runTests() local
197 h.checkDOMResults(theOutputFile, compiledSS, dom, goldInputSource, logFile); in runTests()
/dports/textproc/xalan-c/xalan_c-1.12/samples/EntityResolver/
H A DEntityResolver.cpp210 const char* theOutputFile, in transform() argument
243 return theTransformer.transform(*theParsedSource, theCompiledStylesheet, theOutputFile); in transform()
/dports/textproc/zorba/zorba-2.7.0/bin/
H A Dzorbacmdproperties_base.h50 std::string theOutputFile; variable
121 const std::string &outputFile () const { return theOutputFile; } in outputFile()
184 init_val (*argv, theOutputFile, d); in load_argv()
/dports/textproc/xalan-c/xalan_c-1.12/src/xalanc/Harness/
H A DXalanFileUtility.hpp298 const XalanDOMString& theOutputFile,
H A DXalanFileUtility.cpp832 const XalanDOMString& theOutputFile, in checkDOMResults() argument
842 XalanFileOutputStream myOutput(theOutputFile, getMemoryManager()); in checkDOMResults()