Home
last modified time | relevance | path

Searched refs:fIn (Results 1 – 25 of 210) sorted by relevance

123456789

/dports/audio/fasttracker2/ft2-clone-1.49/src/helpdata/code/
H A Dft2hlp_to_h.c27 FILE *fIn, *fOut; in main() local
43 if (fIn == NULL) in main()
53 fclose(fIn); in main()
59 fileSize = ftell(fIn); in main()
60 rewind(fIn); in main()
66 fclose(fIn); in main()
72 fclose(fIn); in main()
120 if (fIn == NULL) in main()
131 fclose(fIn); in main()
139 rewind(fIn); in main()
[all …]
/dports/cad/verilator/verilator-4.216/test_regress/t/
H A Dt_interface_mp_func.v9 import fIn,
13 function automatic integer fIn (integer i); function
14 fIn = exists[i];
26 if (padsif[0].fIn(3) != 33) $stop;
29 if (padsif_arr[0].fIn(3) != 33) $stop;
31 if (padsif_arr[1].fIn(3) != 33) $stop;
/dports/devel/staf/src/staf/services/stax/service/
H A DSTAXIterateAction.java30 fIn = in; in STAXIterateAction()
36 public void setIn(String in) { fIn = in; } in setIn()
59 fIn + "\">"; in getXMLInfo()
62 fIn + "\" indexvar=\"" + fIndexvar + "\">"; in getXMLInfo()
97 info += " " + fIn; in getInfo()
111 ";In:" + fIn + in getDetails()
129 fList = thread.pyListEval(fIn); in execute()
229 clone.fIn = fIn; in cloneAction()
242 private String fIn = new String(); field in STAXIterateAction
H A DSTAXParallelIterateAction.java33 fIn = in; in STAXParallelIterateAction()
39 public void setIn(String in) { fIn = in; } in setIn()
66 "\" in=\"").append(fIn).append("\""); in getXMLInfo()
98 getStateAsString() + " " + fIn; in getInfo()
112 ";In:" + fIn + in getDetails()
134 fList = thread.pyListEval(fIn); in execute()
355 clone.fIn = fIn; in cloneAction()
433 private String fIn = new String(); field in STAXParallelIterateAction
/dports/games/simutrans/simutrans-121.0/sound/
H A Dwin32_sound.cc47 if (FILE* const fIn = dr_fopen(filename, "rb")) { in dr_load_sample() local
49 fseek( fIn, 0, SEEK_END ); in dr_load_sample()
50 len = ftell( fIn ); in dr_load_sample()
55 rewind( fIn ); in dr_load_sample()
56 fread( samples[sample_number], len, 1, fIn ); in dr_load_sample()
57 fclose( fIn ); in dr_load_sample()
/dports/java/bouncycastle15/crypto-169/pg/src/main/java/org/bouncycastle/openpgp/examples/
H A DClearSignedFileProcessor.java47 private static int readInputLine(ByteArrayOutputStream bOut, InputStream fIn) in readInputLine() argument
55 while ((ch = fIn.read()) >= 0) in readInputLine()
60 lookAhead = readPassedEOL(bOut, ch, fIn); in readInputLine()
80 lookAhead = readPassedEOL(bOut, ch, fIn); in readInputLine()
84 while ((ch = fIn.read()) >= 0); in readInputLine()
97 int lookAhead = fIn.read(); in readPassedEOL()
102 lookAhead = fIn.read(); in readPassedEOL()
269 InputStream fIn = new BufferedInputStream(new FileInputStream(fileName)); in signFile() local
278 int lookAhead = readInputLine(lineOut, fIn); in signFile()
286 lookAhead = readInputLine(lineOut, lookAhead, fIn); in signFile()
[all …]
/dports/audio/fasttracker2/ft2-clone-1.49/src/gfxdata/bmp/win32 tools/
H A Dbin2h.c47 FILE *fIn, *fOut; in main() local
71 fIn = fopen(argv[1], "rb"); in main()
72 if (fIn == NULL) in main()
79 if (!setAndTestFileSize(fIn)) in main()
81 fclose(fIn); in main()
89 fclose(fIn); in main()
104 while (!feof(fIn)) in main()
106 readLength = fread(readBuffer, 1, IO_BUF_SIZE, fIn); in main()
165 fclose(fIn); in main()
172 fclose(fIn); in main()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.text/org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/internal/texteditor/rulers/
H A DDAG.java105 private final MultiMap<E, E> fIn= new MultiMap<>(); field in DAG
127 fIn.put(target, origin); in addEdge()
128 fIn.put(origin, null); in addEdge()
141 fIn.put(vertex, null); in addVertex()
152 fIn.remove(it.next(), vertex); in removeVertex()
153 Set<E> origins= fIn.removeAll(vertex); in removeVertex()
165 return computeZeroEdgeVertices(fIn); in getSources()
213 return "Out: " + fOut.toString() + " In: " + fIn.toString(); //$NON-NLS-1$ //$NON-NLS-2$ in toString()
/dports/net/drive/drive-0.4.0/vendor/github.com/odeke-em/log/
H A Dlog.go45 func newLoggerIn(fIn io.Reader) *logyIn {
46 if fIn == nil {
47 fIn = os.Stdin
51 return fmt.Fscanf(fIn, format, args...)
54 return fmt.Fscanln(fIn, args...)
57 return fmt.Fscan(fIn, args...)
/dports/devel/py-cog/cogapp-3.1.0/cogapp/
H A Dcogapp.py427 if isinstance(fIn, string_types):
429 sFileIn = fIn
430 fIn = fInToClose = self.openInputFile(fIn)
437 fIn = NumberedFileReader(fIn)
456 l = fIn.readline()
467 l = fIn.readline()
493 l = fIn.readline()
506 l = fIn.readline()
516 l = fIn.readline()
531 l = fIn.readline()
[all …]
/dports/java/bouncycastle15/crypto-169/core/src/main/java/org/bouncycastle/crypto/util/
H A DJournaledAlgorithm.java160 InputStream fIn = new BufferedInputStream(stateIn); in getState() local
164 return new JournaledAlgorithm(Streams.readAll(fIn), random); in getState()
168 fIn.close(); in getState()
188 InputStream fIn = new BufferedInputStream(new FileInputStream(tempfile)); in getState() local
192 return new JournaledAlgorithm(Streams.readAll(fIn), random); in getState()
196 fIn.close(); in getState()
/dports/emulators/qemu60/qemu-6.0.0/roms/edk2/BaseTools/Source/Python/AmlToC/
H A DAmlToC.py50 with open(Args.InputFile, "rb") as fIn:
51 Signature = str(fIn.read(4))
92 with open(InputFile, "rb") as fIn, open(OutputFile, "w") as fOut:
99 byte = fIn.read(1)
105 byte = fIn.read(1)
/dports/emulators/qemu/qemu-6.2.0/roms/edk2/BaseTools/Source/Python/AmlToC/
H A DAmlToC.py50 with open(Args.InputFile, "rb") as fIn:
51 Signature = str(fIn.read(4))
92 with open(InputFile, "rb") as fIn, open(OutputFile, "w") as fOut:
99 byte = fIn.read(1)
105 byte = fIn.read(1)
/dports/emulators/qemu5/qemu-5.2.0/roms/edk2/BaseTools/Source/Python/AmlToC/
H A DAmlToC.py50 with open(Args.InputFile, "rb") as fIn:
51 Signature = str(fIn.read(4))
92 with open(InputFile, "rb") as fIn, open(OutputFile, "w") as fOut:
99 byte = fIn.read(1)
105 byte = fIn.read(1)
/dports/sysutils/uefi-edk2-bhyve/edk2-edk2-stable202102/BaseTools/Source/Python/AmlToC/
H A DAmlToC.py50 with open(Args.InputFile, "rb") as fIn:
51 Signature = str(fIn.read(4))
92 with open(InputFile, "rb") as fIn, open(OutputFile, "w") as fOut:
99 byte = fIn.read(1)
105 byte = fIn.read(1)
/dports/sysutils/edk2/edk2-edk2-stable202102/BaseTools/Source/Python/AmlToC/
H A DAmlToC.py50 with open(Args.InputFile, "rb") as fIn:
51 Signature = str(fIn.read(4))
92 with open(InputFile, "rb") as fIn, open(OutputFile, "w") as fOut:
99 byte = fIn.read(1)
105 byte = fIn.read(1)
/dports/math/scilab/scilab-6.1.1/scilab/modules/history_manager/src/cpp/
H A DHistoryFile.cpp148 std::ifstream fIn; in loadFromFile() local
151 fIn.open(_stFilename.c_str()); in loadFromFile()
152 if (fIn.is_open() == false) in loadFromFile()
158 while (fIn.eof() == false) in loadFromFile()
161 std::getline(fIn, stLine); in loadFromFile()
169 fIn.close(); in loadFromFile()
/dports/cad/magic/magic-8.3.245/tcltk/
H A Dstrip_reflibs.tcl22 if [catch {open $fname r} fIn] {
26 while {[gets $fIn line] >= 0} {
37 close $fIn
/dports/games/atanks/atanks-6.5/src/
H A Dtext.cpp162 FILE* fIn = fopen(filename, "r"); in Load_File() local
163 if (!fIn) in Load_File()
170 fclose(fIn); in Load_File()
175 while ( fgets(line, MAX_LINE_LENGTH, fIn) in Load_File()
189 fclose(fIn); in Load_File()
202 fclose(fIn); in Load_File()
/dports/graphics/netpbm/netpbm-10.91.01/man/
H A Dpnmpsnr.123 [\fB-max=\fP\fIn\fP]
24 [\fB-target=\fP\fIn\fP]
25 [\fB-target1=\fP\fIn\fP]
26 [\fB-target2=\fP\fIn\fP]
27 [\fB-target3=\fP\fIn\fP]
122 This option has no effect when you also specify \fB-target\fP[\fIn\fP].
127 \fB-max=\fP\fIn\fP
131 If the PSNR is greater than \fIn\fP, \fBpnmpsnr\fP just prints \fIn\fP.
150 \fB-target\fP=\fIn\fP
157 exceed \fIn\fP, the program prints 'match' to Standard Output.
[all …]
H A Dppmdither.119 [\fB-red\fP=\fIn\fP]
21 [\fB-green\fP=\fIn\fP]
23 [\fB-blue\fP=\fIn\fP]
62 \fB-red\fP=\fIn\fP
68 \fB-green\fP \fIn\fP
74 \fB-blue\fP \fIn\fP
H A Dpbmtextps.117 [\fB-resolution\fP \fIn\fP]
18 [\fB-leftmargin=\fP\fIn\fP]
19 [\fB-rightmargin=\fP\fIn\fP]
20 [\fB-topmargin=\fP\fIn\fP]
22 [\fB-ascent=\fP\fIn\fP]
23 [\fB-descent=\fP\fIn\fP]
26 [\fB-stroke\fP \fIn\fP]
189 \fB-topmargin=\fP\fIn\fP
204 \fB-ascent=\fP\fIn\fP
206 \fB-descent=\fP\fIn\fP
[all …]
H A Dpamtilt.118 [\fB-hstep=\fP\fIn\fP]
19 [\fB-vstep=\fP\fIn\fP]
20 [\fB-dstep=\fP\fIn\fP]
21 [\fB-astep=\fP\fIn\fP]
109 \fB-hstep=\fP\fIn\fP
110 Set the horizontal increment to check every \fIn\fPth column. This
116 \fB-vstep=\fP\fIn\fP
124 \fB-dstep=\fP\fIn\fP
132 \fB-astep=\fP\fIn\fP
/dports/devel/raknet/raknet-3.9.2_10,1/Source/
H A DSHA1.cpp199 FILE *fIn = NULL; in HashFile() local
201 if ( ( fIn = fopen( szFileName, "rb" ) ) == NULL ) in HashFile()
204 fseek( fIn, 0, SEEK_END ); in HashFile()
206 ulFileSize = ftell( fIn ); in HashFile()
208 fseek( fIn, 0, SEEK_SET ); in HashFile()
224 fread( uData, 1, MAX_FILE_READ_BUFFER, fIn ); in HashFile()
230 fread( uData, 1, ulRest, fIn ); in HashFile()
234 fclose( fIn ); in HashFile()
235 fIn = NULL; in HashFile()
/dports/textproc/fox-xml/fox-4.1.2-91-g9c6716e/wkml/
H A Drgb2wkml.py25 fIn = open("rgb.txt") variable
27 fIn.readline() # throw away the first line, which is the CVS tag.
30 for line in fIn:

123456789