Searched refs:outFile (Results 1 - 25 of 55) sorted by relevance

123

/macosx-10.10.1/Security-57031.1.35/SecurityTests/cspxutils/aesVect/
H A DmakeVectors6 # usage: makeVectors r|t vectorStyle headerFile outFile
9 echo Usage: makeVectors r\|t vectorStyle headerFile outFile
15 set outFile=$argv[4]
18 cat $argv[3] > $outFile
22 aesVect $argv[1] $argv[2] k=128 >> $outFile
23 echo $separator >> $outFile
24 echo "" >> $outFile
25 aesVect $argv[1] $argv[2] k=192 >> $outFile
26 echo $separator >> $outFile
27 echo "" >> $outFile
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/lib/Target/NVPTX/
H A Dgen-register-defs.py5 outFile = open('NVPTXRegisterInfo.td', 'w') variable
7 outFile.write('''
41 outFile.write('''
45 outFile.write('def P%d : NVPTXReg<"%%p%d">;\n' % (i, i))
48 outFile.write('''
52 outFile.write('def RC%d : NVPTXReg<"%%rc%d">;\n' % (i, i))
55 outFile.write('''
59 outFile.write('def RS%d : NVPTXReg<"%%rs%d">;\n' % (i, i))
62 outFile.write('''
66 outFile
179 outFile = open('NVPTXNumRegisters.h', 'w') variable
[all...]
/macosx-10.10.1/OpenSSL098-52/src/Netware/
H A Ddo_tests.pl41 my $outFile = "$output_path\\version.out";
42 system("openssl2 version (CLIB_OPT)/>$outFile");
43 log_output("CHECKING FOR OPENSSL VERSION:", $outFile);
63 my $outFile;
78 $outFile = "$output_path\\$i.out";
79 system("$i (CLIB_OPT)/>$outFile");
81 log_output("", $outFile );
94 my $outFile;
117 $outFile = "$output_path\\enc.out";
118 system("openssl2 $i -e -bufsize 113 -k test -in $input -out $cipher (CLIB_OPT)/>$outFile" );
[all...]
/macosx-10.10.1/Security-57031.1.35/SecurityTests/clxutils/pemtool/
H A Dpemtool.c26 unsigned char *outFile = NULL; local
70 rtn = pemEncode(inFile, inFileLen, &outFile, &outFileLen,
75 rtn = pemDecode(inFile, inFileLen, &outFile, &outFileLen);
79 outFile = cuDec64(inFile, inFileLen, &outFileLen);
80 if(outFile == NULL) {
90 rtn = writeFile(outFileName, outFile, outFileLen);
104 if(outFile) {
105 free(outFile);
/macosx-10.10.1/libpcap-48/libpcap/msdos/
H A Dbin2c.c18 FILE *outFile = stdout; local
28 fprintf (outFile,
37 fputs ("\n ", outFile);
38 fprintf (outFile, "0x%02X,", ch);
40 fputc ('\n', outFile);
/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-framework-Quartz/Examples/Programming with Quartz/ParsePageContents/
H A Dparse_page_contents.py21 def printPageResults(outFile, myData, pageNum):
23 print >>outFile, "Found %d images with intrinsic color on page %d."%(
27 print >>outFile, "Found %d image masks on page %d."%(
32 print >>outFile, "Found %d images masked with masks on page %d."%(
37 print >>outFile, "Found %d images masked with colors on page %d."%(
41 def printDocResults(outFile, totPages, totImages):
42 print >>outFile
43 print >>outFile, "Summary: %d page document contains %d images."%(
45 print >>outFile
178 def dumpPageStreams(url, outFile)
[all...]
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-framework-Quartz/Examples/Programming with Quartz/ParsePageContents/
H A Dparse_page_contents.py21 def printPageResults(outFile, myData, pageNum):
23 print >>outFile, "Found %d images with intrinsic color on page %d."%(
27 print >>outFile, "Found %d image masks on page %d."%(
32 print >>outFile, "Found %d images masked with masks on page %d."%(
37 print >>outFile, "Found %d images masked with colors on page %d."%(
41 def printDocResults(outFile, totPages, totImages):
42 print >>outFile
43 print >>outFile, "Summary: %d page document contains %d images."%(
45 print >>outFile
178 def dumpPageStreams(url, outFile)
[all...]
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-framework-Quartz-2.5.1/Examples/Programming with Quartz/ParsePageContents/
H A Dparse_page_contents.py21 def printPageResults(outFile, myData, pageNum):
23 print >>outFile, "Found %d images with intrinsic color on page %d."%(
27 print >>outFile, "Found %d image masks on page %d."%(
32 print >>outFile, "Found %d images masked with masks on page %d."%(
37 print >>outFile, "Found %d images masked with colors on page %d."%(
41 def printDocResults(outFile, totPages, totImages):
42 print >>outFile
43 print >>outFile, "Summary: %d page document contains %d images."%(
45 print >>outFile
178 def dumpPageStreams(url, outFile)
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/runtime/libprofile/
H A DPathProfiling.c56 int outFile = getOutFile(); local
77 arrayHeaderLocation = lseek(outFile, 0, SEEK_CUR);
78 lseek(outFile, sizeof(PathProfileHeader), SEEK_CUR);
84 if (write(outFile, &pte, sizeof(PathProfileTableEntry)) < 0) {
97 arrayCurrentLocation = lseek(outFile, 0, SEEK_CUR);
98 lseek(outFile, arrayHeaderLocation, SEEK_SET);
100 if (write(outFile, &fHeader, sizeof(PathProfileHeader)) < 0) {
106 lseek(outFile, arrayCurrentLocation, SEEK_SET);
117 int outFile = getOutFile(); local
124 if (write(outFile,
222 int outFile = getOutFile(); local
[all...]
H A DCommonProfiling.c141 int outFile = getOutFile(); local
145 if( write(outFile, &PTy, sizeof(int)) < 0 ||
146 write(outFile, &NumElements, sizeof(unsigned)) < 0 ||
147 write(outFile, Start, NumElements*sizeof(unsigned)) < 0 ) {
/macosx-10.10.1/tcl-105/tcl_ext/tclx/tclx/library/
H A Dprofrep.tcl89 proc print {profDataVar sortedProcList outFile userTitle} {
99 if {$outFile == ""} {
102 set outFH [open $outFile w]
134 if {$outFile != ""} {
145 # o outFile (I) - Name of file to write the report to. If omitted, stdout
149 proc profrep {profDataVar sortKey {outFile {}} {userTitle {}}} {
154 TclXProfRep::print sumProfData $sortedProcList $outFile $userTitle
/macosx-10.10.1/tcl-105/tcl/tcl/tools/
H A DcheckLibraryDoc.tcl109 puts "usage: $argv0 pkgName pkgDir \[outFile\]"
143 proc filter {code docs dir pkg {outFile stdout}} {
189 dump $apis "APIs in Source not in Docs." $outFile
190 dump $docs "APIs in Docs not in Source." $outFile
191 dump $decls "Internal APIs and structs." $outFile
192 dump $misc "Misc APIs and structs that we are not documenting." $outFile
193 dump $cmds "Command APIs." $outFile
194 dump $procs "Proc pointers." $outFile
/macosx-10.10.1/tcl-105/tcl84/tcl/tools/
H A DcheckLibraryDoc.tcl109 puts "usage: $argv0 pkgName pkgDir \[outFile\]"
143 proc filter {code docs dir pkg {outFile stdout}} {
189 dump $apis "APIs in Source not in Docs." $outFile
190 dump $docs "APIs in Docs not in Source." $outFile
191 dump $decls "Internal APIs and structs." $outFile
192 dump $misc "Misc APIs and structs that we are not documenting." $outFile
193 dump $cmds "Command APIs." $outFile
194 dump $procs "Proc pointers." $outFile
/macosx-10.10.1/Security-57031.1.35/SecurityTests/clxutils/crlTool/
H A DcrlTool.cpp25 printf(" -o outFile -- write the fetched CRL to this file\n");
128 char *outFile = NULL; local
152 outFile = optarg;
217 if(outFile) {
219 printf("...outFile specified but no CRL found.\n");
222 if(writeFile(outFile, crl, crlLen)) {
223 printf("***Error writing CRL to %s.\n", outFile);
227 printf("...wrote %u bytes to %s\n", (unsigned)crlLen, outFile);
/macosx-10.10.1/Security-57031.1.35/SecurityTests/clxutils/dotMacTool/
H A DdotMacTool.cpp47 printf(" -o outFile Write output cert or refId (if any) to outFile\n");
168 char *outFile,
199 if(outFile) {
200 if(!writeFile(outFile, certData->Data, certData->Length)) {
202 certData->Length, outFile);
205 printf("***Error writing cert to %s\n", outFile);
231 char *outFile,
280 if(outFile) {
281 if(!writeFile(outFile, certDat
164 doLookupViaRefId( CSSM_TP_HANDLE tpHand, unsigned char *refId, unsigned refIdLen, char *outFile, bool verbose) argument
226 doLookupViaUserName( CSSM_TP_HANDLE tpHand, const CSSM_OID *opOid, const char *userName, const char *hostName, char *outFile, bool verbose) argument
333 char *outFile = NULL; local
[all...]
/macosx-10.10.1/security_ocspd-55124/server/
H A DocspdNetwork.h70 char * outFile; // IN: mallocd by caller, struct owner must free member in struct:async_fetch_t
82 /* Called after download completes, writes received data to outFile */
/macosx-10.10.1/Security-57031.1.35/SecurityTests/clxutils/kcExport/
H A DkcExport.cpp140 const char *outFile = NULL; local
209 outFile = optarg;
358 if(outFile) {
359 int rtn = writeFile(outFile, CFDataGetBytePtr(outData), len);
362 printf("...%u bytes written to %s\n", len, outFile);
366 printf("***Error writing to %s\n", outFile);
/macosx-10.10.1/Security-57031.1.35/SecurityTests/clxutils/dotMacArchive/
H A DdotMacArchive.cpp50 printf(" -o outFile -- write P12 blob to outFile\n");
227 char *outFile = NULL; local
280 outFile = optarg;
390 if(outFile) {
391 if(writeFile(outFile, pfxInData.Data, pfxInData.Length)) {
392 printf("***Error writing P12 to %s\n", outFile);
395 printf("...wrote %lu bytes to %s\n", pfxInData.Length, outFile);
467 if(outFile) {
468 if(writeFile(outFile, pfxOutDat
[all...]
/macosx-10.10.1/tcl-105/tcl84/tcl/unix/
H A DtclUnixPipe.c39 TclFile outFile; /* Input to pipe. */ member in struct:PipeState
742 statePtr->outFile = writeFile;
877 if (psPtr->outFile) {
878 fd = GetFd(psPtr->outFile);
903 if (psPtr->outFile != NULL) {
904 fd = GetFd(psPtr->outFile);
958 if (pipePtr->outFile) {
959 if ((TclpCloseFile(pipePtr->outFile) < 0) && (errorCode == 0)) {
1097 written = write(GetFd(psPtr->outFile), buf, (size_t) toWrite);
1146 if (psPtr->outFile) {
[all...]
/macosx-10.10.1/tcl-105/tcl/tcl/unix/
H A DtclUnixPipe.c38 TclFile outFile; /* Input to pipe. */ member in struct:PipeState
748 statePtr->outFile = writeFile;
872 if (psPtr->outFile) {
873 if (TclUnixSetBlockingMode(GetFd(psPtr->outFile), mode) < 0) {
920 if (pipePtr->outFile) {
921 if ((TclpCloseFile(pipePtr->outFile) < 0) && (errorCode == 0)) {
1055 written = write(GetFd(psPtr->outFile), buf, (size_t) toWrite);
1104 if (psPtr->outFile) {
1107 Tcl_CreateFileHandler(GetFd(psPtr->outFile), mask,
1111 Tcl_DeleteFileHandler(GetFd(psPtr->outFile));
[all...]
/macosx-10.10.1/Security-57031.1.35/SecurityTests/cspxutils/pubKeyTool/
H A DpubKeyTool.cpp473 char *outFile = NULL; local
498 outFile = optarg;
638 if(outFile || kcName) {
653 if(outFile) {
654 if(writeFile(outFile, pubKey->KeyData.Data, pubKey->KeyData.Length)) {
655 printf("***Error writing to %s.\n", outFile);
658 printf("...%lu bytes written to %s.\n", pubKey->KeyData.Length, outFile);
/macosx-10.10.1/bzip2-36/bzip2/
H A Dbzip2recover.c304 FILE* outFile; local
436 outFile = NULL;
446 if (outFile != NULL && bitsRead >= rbStart[wrBlock]
454 if (outFile != NULL) {
491 outFile = fopen ( outFileName, "wb" );
492 if (outFile == NULL) {
497 bsWr = bsOpenWriteStream ( outFile );
/macosx-10.10.1/tcl-105/tcl84/tcl/generic/
H A DtclCkalloc.c168 TclDumpMemoryInfo(outFile)
169 FILE *outFile;
171 fprintf(outFile,"total mallocs %10d\n",
173 fprintf(outFile,"total frees %10d\n",
175 fprintf(outFile,"current packets allocated %10d\n",
177 fprintf(outFile,"current bytes allocated %10d\n",
179 fprintf(outFile,"maximum packets allocated %10d\n",
181 fprintf(outFile,"maximum bytes allocated %10d\n",
1230 TclDumpMemoryInfo(outFile)
1231 FILE *outFile;
[all...]
/macosx-10.10.1/Security-57031.1.35/SecurityTests/clxutils/ocspTool/
H A DocspTool.cpp343 unsigned char **outFile, // RETURNED
444 *outFile = (unsigned char *)malloc(encoded.Length);
446 memmove(*outFile, encoded.Data, encoded.Length);
985 unsigned char **outFile, // RETURNED
1053 *outFile = ocspResp.Data;
1059 *outFile = (unsigned char *)malloc(ocspResp.Length);
1061 memmove(*outFile, ocspResp.Data, ocspResp.Length);
1093 char *outFile = NULL; local
1119 outFile = optarg;
1239 if(outFile
337 genOcspReq( CSSM_CL_HANDLE clHand, const unsigned char *certFile, unsigned certFileLen, const unsigned char *issuerCertFile, unsigned issuerCertFileLen, unsigned char **outFile, unsigned *outFileLen) argument
976 postOcspReq( CSSM_CL_HANDLE clHand, const unsigned char *certFile, unsigned certFileLen, const unsigned char *issuerCertFile, unsigned issuerCertFileLen, const char *responderURI, bool doParse, bool verbose, unsigned char **outFile, unsigned *outFileLen) argument
[all...]
/macosx-10.10.1/tcl-105/tcl/tcl/generic/
H A DtclCkalloc.c172 FILE *outFile)
174 fprintf(outFile,"total mallocs %10d\n",
176 fprintf(outFile,"total frees %10d\n",
178 fprintf(outFile,"current packets allocated %10d\n",
180 fprintf(outFile,"current bytes allocated %10lu\n",
182 fprintf(outFile,"maximum packets allocated %10d\n",
184 fprintf(outFile,"maximum bytes allocated %10lu\n",
1275 FILE *outFile)
169 TclDumpMemoryInfo( FILE *outFile) argument
1254 TclDumpMemoryInfo( FILE *outFile) argument

Completed in 404 milliseconds

123