Home
last modified time | relevance | path

Searched refs:fname (Results 13301 – 13325 of 79288) sorted by relevance

1...<<531532533534535536537538539540>>...3172

/dports/print/ghostscript8-x11/ghostscript-8.71/toolbin/
H A Dleaks.tcl74 proc read_trace {{fname %stdin}} {
77 if {$fname == "%stdin"} {
80 set in [open $fname]
90 if {$fname != "%stdin"} {close $in}
111 if {$fname != "%stdin"} {
/dports/editors/libreoffice6/libreoffice-6.4.7.2/helpcontent2/
H A Dupload-wiki.pl162 my $fname = "images/$line";
163 if ( ! -f $fname ) {
164 print "Image '$fname' not found, skipped.\n";
167 if ( ! $fname =~ /\.(png|gif|jpg|jpeg)$/ ) {
183 $image = read_file( $fname );
/dports/math/py-gau2grid/gau2grid-2.0.7/gau2grid/
H A Dcodegen.py111 fname = "codegen.cf.tmp"
113 with open(fname, "w") as cfile:
117 retcode = sp.call([cf_path, "-i", fname], stdin=sp.PIPE, stdout=sp.PIPE, stderr=sp.PIPE)
121 with open(fname, "r") as cfile:
124 os.unlink(fname)
/dports/emulators/qemu5/qemu-5.2.0/util/
H A Dmemfd.c120 gchar *fname; in qemu_memfd_alloc() local
122 fname = g_strdup_printf("%s/memfd-XXXXXX", tmpdir); in qemu_memfd_alloc()
123 mfd = mkstemp(fname); in qemu_memfd_alloc()
124 unlink(fname); in qemu_memfd_alloc()
125 g_free(fname); in qemu_memfd_alloc()
/dports/sysutils/zeitgeist/zeitgeist-1.0.3/test/dbus/
H A Drun-all-tests.py76 for fname in os.listdir(TESTDIR):
77 if fname.endswith("-test.py"):
78 fname = os.path.basename(fname)[:-3] # filename without the ".py"
79 module = __import__(fname)
/dports/cad/ghdl/ghdl-1.0.0/pyGHDL/libghdl/
H A D__init__.py196 def analyze_file(fname: str) -> Iir:
203 fname = fname.encode("utf-8")
204 return libghdl.libghdl__analyze_file(c_char_p(fname), len(fname))
/dports/math/scilab/scilab-6.1.1/scilab/modules/graphics/sci_gateway/c/
H A Dsci_swap_handles.c32 int sci_swap_handles(char * fname, void *pvApiCtx) in sci_swap_handles() argument
80 … Scierror(202, _("%s: Wrong type for input argument #%d: Handle matrix expected.\n"), fname, 1); in sci_swap_handles()
96 … Scierror(202, _("%s: Wrong type for input argument #%d: Handle matrix expected.\n"), fname, 2); in sci_swap_handles()
103 Scierror(999, _("%s: Routine can only swap two single handles.\n"), fname); in sci_swap_handles()
150 … Scierror(999, _("%s: Handles do not have the same parent type neither the same type.\n"), fname); in sci_swap_handles()
/dports/math/scilab/scilab-6.1.1/scilab/modules/fftw/tests/nonreg_tests/
H A Dbug_10807.tst22 fname = "fftw";
24 … msprintf(gettext(" check arguments or define function %s for overloading.\n"), "%V_" + fname)];
28 … msprintf(gettext(" check arguments or define function %s for overloading.\n"), "%V_" + fname)];
38 fname = "fft";
40 … msprintf(gettext(" check arguments or define function %s for overloading.\n"), "%V_" + fname)];
/dports/math/reduce/Reduce-svn5758-src/psl/dist/kernel/ibmrs/
H A Dunix-io.c134 char *expand_file_name(fname) in expand_file_name() argument
135 char *fname; in expand_file_name()
141 s = fname;
156 if (t == NULL) return(fname); }
175 return(fname); /* name not found, just return original fname */
/dports/math/reduce/Reduce-svn5758-src/psl/dist/kernel/macg5/
H A Dunix-io.c149 char *expand_file_name(fname) in expand_file_name() argument
150 char *fname; in expand_file_name()
156 s = fname;
171 if (t == NULL) return(fname); }
190 return(fname); /* name not found, just return original fname */
/dports/emulators/qemu-guest-agent/qemu-5.0.1/util/
H A Dmemfd.c120 gchar *fname; in qemu_memfd_alloc() local
122 fname = g_strdup_printf("%s/memfd-XXXXXX", tmpdir); in qemu_memfd_alloc()
123 mfd = mkstemp(fname); in qemu_memfd_alloc()
124 unlink(fname); in qemu_memfd_alloc()
125 g_free(fname); in qemu_memfd_alloc()
/dports/math/reduce/Reduce-svn5758-src/psl/dist/kernel/macg4/
H A Dunix-io.c134 char *expand_file_name(fname) in expand_file_name() argument
135 char *fname; in expand_file_name()
141 s = fname;
156 if (t == NULL) return(fname); }
175 return(fname); /* name not found, just return original fname */
/dports/deskutils/calibre/calibre-src-5.34.0/src/calibre/utils/
H A Dseven_zip.py27 def is_match(fname): argument
29 fname = fname.replace(os.sep, '/')
30 return (name is not None and fname == name) or \
31 (match is not None and match.search(fname) is not None)
/dports/sysutils/dcfldd/dcfldd-1.7.1/src/
H A Dsplit.c122 char *ext, *fname; in open_split() local
126 if( asprintf(&fname, "%s.%s", split->name, ext) == -1) { in open_split()
131 fd = open(fname, O_WRONLY | O_CREAT, perms); in open_split()
134 syscall_error(fname); in open_split()
140 free(fname); in open_split()
/dports/databases/percona57-pam-for-mysql/percona-server-5.7.36-39/storage/tokudb/PerconaFT/src/tests/
H A Ddbremove-nofile-limit.cc64 char fname[32]; in test_dbremove() local
65 sprintf(fname, "db%d", 0); in test_dbremove()
66 r = db->open(db, nullptr, fname, nullptr, DB_BTREE, DB_CREATE, 0666); CKERR(r); in test_dbremove()
82 r = env->dbremove(env, txn, fname, nullptr, 0); in test_dbremove()
88 r = env->dbremove(env, txn, fname, nullptr, 0); in test_dbremove()
/dports/databases/percona56-server/percona-server-5.6.51-91.0/storage/tokudb/PerconaFT/src/tests/
H A Ddbremove-nofile-limit.cc64 char fname[32]; in test_dbremove() local
65 sprintf(fname, "db%d", 0); in test_dbremove()
66 r = db->open(db, nullptr, fname, nullptr, DB_BTREE, DB_CREATE, 0666); CKERR(r); in test_dbremove()
82 r = env->dbremove(env, txn, fname, nullptr, 0); in test_dbremove()
88 r = env->dbremove(env, txn, fname, nullptr, 0); in test_dbremove()
/dports/audio/audacity/audacity-Audacity-3.1.3/lib-src/libnyquist/nyquist/xlisp/
H A Dpath.c189 const char *find_in_xlisp_path(const char *fname) in find_in_xlisp_path() argument
220 g_xlptemp = malloc(len + strlen(fname) + 10); in find_in_xlisp_path()
231 memcpy(&g_xlptemp[len], fname, strlen(fname)); in find_in_xlisp_path()
232 len += strlen(fname); in find_in_xlisp_path()
/dports/security/gnutls/gnutls-3.6.16/tests/
H A Dstr-idna.c37 #define MATCH_FUNC(fname, str, normalized) \ argument
38 static void fname(void **glob_state) \
52 #define MATCH_FUNC_TWO_WAY(fname, str, normalized) \ argument
53 static void fname##_reverse(void **glob_state) \
65 MATCH_FUNC(fname, str, normalized)
/dports/math/octave-forge-ltfat/ltfat/inst/
H A Dltfatgetdefaults.m1 function d=ltfatgetdefaults(fname)
7 % LTFATGETDEFAULTS(fname) returns the default parameters
8 % of the function fname as a cell array.
37 if strcmpi(fname,'all')
40 d=ltfatarghelper('get',fname);
/dports/net-mgmt/openbmp/openbmp-0.14.0/Server/src/
H A DLogger.cpp180 const char *fname; // Filename pointer in printV() local
198 (fname = strrchr(filename, '/')) != NULL ? fname++ : fname = filename; in printV()
207 fname, line_num, func_name, msg); in printV()
/dports/emulators/dosbox/dosbox-0.74-3/src/misc/
H A Dmessages.cpp71 static void LoadMessageFile(const char * fname) { in LoadMessageFile() argument
72 if (!fname) return; in LoadMessageFile()
73 if(*fname=='\0') return;//empty string=no languagefile in LoadMessageFile()
74 FILE * mfile=fopen(fname,"rt"); in LoadMessageFile()
77 E_Exit("MSG:Can't load messages: %s",fname); in LoadMessageFile()
/dports/math/mfem/mfem-4.3/tests/scripts/
H A Dbranch-history120 my $fname = "(no-filename)";
128 $fname = @blob_split[5];
146 $fname = @blob_split[7];
163 else { die "Unknown git status letter: $mode, commit: $sha, file: $fname.\n\t" }
168 …intf STDERR "\033[31mLarge change of size %s in file %s.\033[0m\n", formatSize($blob_size), $fname;
/dports/math/octave/octave-6.4.0/liboctave/util/
H A Dfile-info.cc75 std::string file_info::snarf_file (const std::string& fname) in snarf_file() argument
79 sys::file_stat fs (fname); in snarf_file()
82 (*current_liboctave_error_handler) ("no such file, '%s'", fname.c_str ()); in snarf_file()
86 std::ifstream file = sys::ifstream (fname.c_str (), in snarf_file()
97 ("error reading file %s", fname.c_str ()); in snarf_file()
/dports/www/mod_php81/php-8.1.1/ext/phar/tests/zip/
H A Dmetadata_write_commit.phpt10 $fname = __DIR__ . '/' . basename(__FILE__, '.php') . '.phar.zip.php';
12 $pname = 'phar://' . $fname;
27 copy($f2name, $fname);
28 $phar = new Phar($fname);
43 $phar = new Phar($fname);
/dports/science/dynare/dynare-4.6.4/matlab/parallel/
H A DstoreGlobalVars.m1 function storeGlobalVars(fname,append)
4 % fGlobalVar and saves it in the file fname.mat
7 % fname [str] name of the file
41 save(fname,'fGlobalVar');
43 save(fname,'fGlobalVar','-append');

1...<<531532533534535536537538539540>>...3172