Searched refs:fn (Results 201 - 225 of 650) sorted by relevance

1234567891011>>

/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-core/libffi-src/x86/
H A Dx86-ffi_darwin.c210 void (*fn)(void));
224 void (*fn)(void));
232 void (*fn)(void),
261 cif->flags, ecif.rvalue, fn);
269 cif->flags, ecif.rvalue, fn);
508 // void (*fn)());
518 void (*fn)());
524 void (*fn)(),
550 cif->flags, ecif.rvalue, fn);
557 cif->flags, ecif.rvalue, fn);
230 ffi_call( ffi_cif* cif, void (*fn)(void), void* rvalue, void** avalue) argument
522 ffi_raw_call( ffi_cif* cif, void (*fn)(), void* rvalue, ffi_raw* fake_avalue) argument
[all...]
/macosx-10.9.5/smb-697.95.1/lib/smb/
H A Drcfile.c394 char *fn; local
403 fn = malloc(fnlen);
404 snprintf(fn, fnlen, "%s%s", home, SMB_CFG_LOCAL_FILE);
405 error = rc_open(fn, "r", &smb_rc);
409 ASL_LEVEL_DEBUG, __FUNCTION__, fn, strerror(errno));
410 free(fn);
412 fn = (char *)SMB_CFG_FILE;
413 error = rc_merge(fn, &smb_rc);
417 ASL_LEVEL_DEBUG, __FUNCTION__, fn, strerror(errno));
/macosx-10.9.5/CPANInternal-140/DBIx-Class-Schema-Loader-0.07033/t/lib/
H A Dmake_dbictest_db_with_unique.pm12 my $fn = "$tdir/dbictest_with_unique.db";
14 unlink($fn);
15 our $dsn = "dbi:$class:dbname=$fn";
68 END { unlink($fn) unless $ENV{SCHEMA_LOADER_TESTS_NOCLEANUP}; }
/macosx-10.9.5/CPANInternal-140/IO-Socket-SSL/t/
H A Dtestlib.pl132 my $fn = fileno($fd);
134 if ( defined ($fn)) {
135 vec( $rout,$fn,1 ) || next;
/macosx-10.9.5/autofs-234/automountlib/
H A Ddeflt.c100 * defopen(fn)
101 * char *fn
103 * If 'fn' is non-null; it is a full pathname of a file
105 * If 'fn' is null the defopen file is closed.
113 defopen(char *fn) argument
123 if (fn == NULL) {
128 if ((thr_data->fp = fopen(fn, "r")) == NULL)
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/Misc/
H A Dpyobjc_setup.py29 for fn in install_lib._install_lib.get_outputs(self):
30 if 'PyObjCTest' in fn:
31 result[fn] = 1
/macosx-10.9.5/ruby-104/ruby/lib/rake/
H A Dtesttask.rb133 file_list.collect { |fn| "\"#{fn}\"" }.join(' ')
176 def find_file(fn) # :nodoc:
178 file_path = File.join(path, "#{fn}.rb")
189 def find_dir(fn) # :nodoc:
191 file_path = File.join(path, "#{fn}.rb")
/macosx-10.9.5/rsync-42/rsync/
H A Dutil.c933 char *full_fname(const char *fn) argument
942 if (*fn == '/')
957 if (asprintf(&result, "\"%s%s%s\"%s%s%s", p1, p2, fn, m1, m2, m3) <= 0)
969 const char *fn; local
971 if ((fn = strrchr(fname, '/')) != NULL) {
972 fn++;
974 int len = fn - fname;
980 fn = fname;
981 if ((int)pathjoin(t, sz, partial_dir, fn) >= sz)
1000 char *fn, *di local
1276 find_filename_suffix(const char *fn, int fn_len, int *len_ptr) argument
[all...]
/macosx-10.9.5/Heimdal-323.92.1/lib/asn1/
H A Dasn1_gen.c46 doit(const char *fn) argument
55 f = fopen(fn, "r");
59 bname = strrchr(fn, '/');
63 bname = fn;
/macosx-10.9.5/Heimdal-323.92.1/lib/hx509/
H A Dks_dir.c137 char *fn; local
164 if (asprintf(&fn, "FILE:%s/%s", (char *)data, dir->d_name) == -1)
167 ret = hx509_certs_init(context, fn, 0, NULL, &d->certs);
180 free(fn);
/macosx-10.9.5/IOPCIFamily-224.92.1/tools/
H A Dpcidump.c409 uint32_t bus, uint32_t device, uint32_t fn,
428 data[off >> 2] = configRead32(connect, segment, bus, device, fn, off);
433 printf("[%d, %d, %d] 0x%04x, 0x%04x - ", bus, device, fn, vend, prod);
435 service = lookService(segment, bus, device, fn);
492 uint32_t bus, device, fn, maxFn; local
499 fn = strtoul(argv[3], NULL, 0);
502 dumpDevice(connect, segment, bus, device, fn, NULL, NULL);
511 configWrite32(connect, segment, bus, device, fn, offs, data);
512 printf("wrote 0x%08x to [%d, %d, %d]:0x%X\n", data, bus, device, fn, offs);
519 data = configRead32(connect, segment, bus, device, fn, off
408 dumpDevice(io_connect_t connect, uint32_t segment, uint32_t bus, uint32_t device, uint32_t fn, uint32_t * maxBus, uint32_t * maxFn) argument
[all...]
/macosx-10.9.5/Libc-997.90.3/gen/
H A Dnftw.c258 ftw(const char *path, int (*fn)(const char *, const struct stat *, int),
266 return both_ftw(path, fn, NULL, nfds, FTW_PHYS);
270 nftw(const char *path, int (*fn)(const char *, const struct stat *, int,
273 return both_ftw(path, NULL, fn, nfds, ftwflags);
/macosx-10.9.5/emacs-92/emacs/lisp/
H A Ddiff.el180 (defun diff-latest-backup-file (fn) ; actually belongs into files.el
182 (let ((handler (find-file-name-handler fn 'diff-latest-backup-file)))
184 (funcall handler 'diff-latest-backup-file fn)
185 (file-newest-backup fn))))
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/CodeGen/
H A DCalcSpillWeights.h69 virtual bool runOnMachineFunction(MachineFunction &fn);
/macosx-10.9.5/ruby-104/ruby/lib/rake/contrib/
H A Dpublisher.rb69 @files.each do |fn|
70 run %{scp -q #{@local_dir}/#{fn} #{@host}:#{@remote_dir}}
H A Dsshpublisher.rb45 @files.each do |fn|
46 sh %{scp -q #{@local_dir}/#{fn} #{@host}:#{@remote_dir}}
/macosx-10.9.5/ruby-104/ruby/lib/rubygems/
H A Dvalidator.rb50 fn = file_name[gem_directory.size..file_name.size-1].sub(/^\//, "")
51 installed_files << fn unless
52 fn =~ /CVS/ || fn.empty? || File.directory?(file_name)
/macosx-10.9.5/ICU-511.35/icuSources/tools/ctestfw/unicode/
H A Dutimer.h65 * double perfNormalization(NormFn fn,const char* mode,Line* fileLines,int32_t loopCount){
90 * retVal= fn(fileLines[line].name,len,dest,destCapacity,&error);
114 * retVal= fn(fileLines[line].name,len,dest,destCapacity,&error);
258 * @param fn The funtion to be executed
259 * @param param Parameters to be passed to the fn
265 FuntionToBeTimed fn,
272 fn(param);
263 utimer_loopUntilDone(double thresholdTimeVal, int32_t* loopCount, FuntionToBeTimed fn, void* param) argument
/macosx-10.9.5/ruby-104/ruby/test/rdoc/
H A Dtest_rdoc_parser_simple.rb12 @fn = filename
111 RDoc::Parser::Simple.new @top_level, @fn, content, @options, @stats
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/doctools/mpformats/
H A D_nroff.tcl36 proc nr_read {fn} {return [nroffMarkup [dt_read $fn]]}
/macosx-10.9.5/xnu-2422.115.4/osfmk/kern/
H A Dtimer_queue.h90 void (*fn)(void *),
96 void (*fn)(void *),
/macosx-10.9.5/ICU-511.35/icuSources/test/perf/collperf/
H A Dcollperf.cpp88 Func fn; member in class:CmdKeyGen
96 CmdKeyGen(UErrorCode, UCollator * col,DWORD win_langid, int32_t count, DataIndex * data,Func fn,int32_t) argument
97 :col(col),win_langid(win_langid), count(count), data(data), fn(fn){}
103 (this->*fn)(i);
137 Func fn; member in class:CmdIter
141 CmdIter(UErrorCode & status, UCollator * col, int32_t count, CA_uchar *data, Func fn, int32_t,int32_t) argument
142 :count(count), data(data), fn(fn){
157 (this->*fn)(statu
186 Func fn; member in class:CmdIterAll
344 Func fn; member in struct:CmdQsort
351 CmdQsort(UErrorCode & status,void *theBase, int32_t num, int32_t width, Func fn, int32_t,int32_t) argument
401 Func fn; member in class:CmdBinSearch
404 CmdBinSearch(UErrorCode, UCollator * col,DWORD win_langid,int32_t count,DataIndex * rnd,DataIndex * ord,Func fn) argument
[all...]
/macosx-10.9.5/emacs-92/emacs/src/
H A Datimer.c94 start_atimer (type, time, fn, client_data)
97 atimer_callback fn;
125 t->fn = fn;
382 t->fn (t);
397 t->fn (t);
/macosx-10.9.5/man-16/man/src/
H A Dmanpath.c52 * For each entry in the string, call fn.
55 split (char *string, void (*fn)(char *, int), int perrs) {
64 fn (q, perrs);
67 fn (q, perrs);
76 split2 (char *s, char *string, void (*fn)(char *, char *, int), int perrs) {
85 fn (s, q, perrs);
88 fn (s, q, perrs);
/macosx-10.9.5/tcl-102/tcl_ext/expect/expect/
H A Dexp_pty.c308 expDiagLogPtrSet(fn)
309 void (*fn) _ANSI_ARGS_((char *));
311 expDiagLogPtrVal = fn;
364 expErrnoMsgSet(fn)
365 char * (*fn) _ANSI_ARGS_((int));
367 expErrnoMsgVal = fn;

Completed in 400 milliseconds

1234567891011>>