Searched refs:fnum (Results 1 - 25 of 36) sorted by relevance

12

/macosx-10.10/OpenSSL098-52/src/util/
H A Dcopy.pl28 $fnum = @filelist;
30 if ($fnum <= 1)
37 if ($fnum > 2 && ! -d $dest)
/macosx-10.10/emacs-93/emacs/lisp/obsolete/
H A Dfloat.el120 (defun fashl (fnum) ; floating-point arithmetic shift left
121 (cons (ash (car fnum) 1) (1- (cdr fnum))))
123 (defun fashr (fnum) ; floating point arithmetic shift right
124 (cons (ash (car fnum) -1) (1+ (cdr fnum))))
126 (defun normalize (fnum)
127 (if (> (car fnum) 0) ; make sure next-to-highest bit is set
128 (while (zerop (logand (car fnum) second-bit-mask))
129 (setq fnum (fash
[all...]
/macosx-10.10/vim-55/src/
H A Dmark.c22 * If a named file mark's fnum is non-zero, it is for an existing buffer,
54 * When "c" is upper case use file "fnum".
58 setmark_pos(c, pos, fnum)
61 int fnum;
116 namedfm[i].fmark.fnum = fnum;
177 fm->fmark.fnum = curbuf->b_fnum;
238 if (jmp->fmark.fnum == 0)
240 if (jmp->fmark.fnum != curbuf->b_fnum)
243 if (buflist_findnr(jmp->fmark.fnum)
1021 int fnum = curbuf->b_fnum; local
1201 int fnum = curbuf->b_fnum; local
[all...]
H A Dif_mzsch.c1679 int fnum; local
1681 fnum = SCHEME_INT_VAL(GUARANTEE_INTEGER(prim->name, 0));
1682 if (fnum < 1)
1685 for (win = firstwin; win != NULL; win = win->w_next, --fnum)
1686 if (fnum == 1) /* to be 1-based */
1855 int fnum; local
1857 fnum = SCHEME_INT_VAL(GUARANTEE_INTEGER(prim->name, 0));
1860 if (buf->b_fnum == fnum)
/macosx-10.10/tcl-105/tcl_ext/tkimg/tkimg/compat/libtiff/tools/
H A Dtiffsplit.c103 static long fnum; local
119 if (fnum == MAXFILES) {
125 fnum = 0;
127 if (fnum % 676 == 0) {
128 if (fnum != 0) {
143 lastTurn = fnum;
149 fpnt[1] = (char)((fnum - lastTurn) / 26) + 'a';
153 fpnt[2] = (char)(fnum % 26) + 'a';
154 fnum++;
/macosx-10.10/BerkeleyDB-21/db/test/
H A Dmpoolscript.tcl103 for { set fnum 1 } { $fnum < $nfiles } { incr fnum } {
104 if { [expr $fnum % 2 ] == 0 } {
110 set mpf [lindex $mpools $fnum]
112 set lock [$e lock_get write $locker $fnum:$p]
113 error_check_good lock_get:$fnum:$p \
118 error_check_good page_get:$fnum:$p \
124 error_check_good page_init:$fnum:$p $r 0
127 error_check_good page_put:$fnum
[all...]
H A Dtest044.tcl217 set fnum [string range $r 0 [expr $ndx - 1]]
218 if { [lindex $flist $fnum] == 0 } {
224 if { $fl != "-set" || $fnum != $f } {
226 set full [$cursors($fnum) \
229 set full [$cursors($fnum) \
235 $f:dbget_$fnum:key $key $k
237 $f:dbget_$fnum:data $rec $d
240 set flist [lreplace $flist $fnum $fnum 1]
H A Dsysscript.tcl193 set fnum [string range $r 0 [expr $ndx - 1]]
194 if { [lindex $f $fnum] == 0 } {
196 set full [record $cursors($fnum) get -set $k]
199 set full [record $cursors($fnum) get -next]
221 $mypid:curs_get($k,$data,$fnum,$flag) \
230 $mypid:dbget_$fnum:key $key $k} ret]
236 $mypid:dbget_$fnum:data($k) $rec $data} ret]
241 set f [lreplace $f $fnum $fnum 1]
/macosx-10.10/vim-55/src/proto/
H A Dmark.pro3 int setmark_pos __ARGS((int c, pos_T *pos, int fnum));
9 pos_T *getmark_fnum __ARGS((int c, int changefile, int *fnum));
H A Dex_cmds.pro29 int getfile __ARGS((int fnum, char_u *ffname, char_u *sfname, int setpm, linenr_T lnum, int forceit));
30 int do_ecmd __ARGS((int fnum, char_u *ffname, char_u *sfname, exarg_T *eap, linenr_T newlnum, int flags, win_T *oldwin));
H A Dbuffer.pro28 int buflist_name_nr __ARGS((int fnum, char_u **fname, linenr_T *lnum));
30 void buf_set_name __ARGS((int fnum, char_u *name));
/macosx-10.10/tcl-105/tcl_ext/tclx/tclx/unix/
H A DtclXunixOS.c1366 int idx, fnum;
1387 fnum = ChannelToFnum (channel, 0);
1395 if (fstat (fnum, &fileStat) != 0)
1402 if (fchown (fnum, ownerId, groupId) < 0)
1448 int idx, fnum;
1462 fnum = ChannelToFnum (channel, 0);
1470 if (fstat (fnum, &fileStat) != 0)
1477 if (fchown (fnum, ownerId, groupId) < 0)
1563 int fnum, stat;
1572 fnum
1334 int idx, fnum; local
1415 int idx, fnum; local
1527 int fnum, stat; local
1585 int fnum, stat; local
1629 int fnum, mode; local
1671 int fnum, mode; local
[all...]
/macosx-10.10/tcl-105/tcl_ext/tclx/tclx/generic/
H A DtclXdup.c207 int bindFnum, fnum;
235 if (Tcl_GetIntFromObj (interp, objv [1], &fnum) != TCL_OK)
237 newChannel = TclXOSBindOpenFile (interp, fnum);
204 int bindFnum, fnum; local
/macosx-10.10/BerkeleyDB-21/db/log/
H A Dlog_archive.c80 u_int32_t fnum; local
92 COMPQUIET(fnum, 0);
155 fnum = stable_lsn.file;
174 fnum = stable_lsn.file - 1;
190 for (n = 0; fnum > 0; --fnum) {
191 if ((ret = __log_name(dblp, fnum, &name, NULL, 0)) != 0) {
196 if (LF_ISSET(DB_ARCH_LOG) && fnum == stable_lsn.file)
H A Dlog.c1088 __log_is_outdated(env, fnum, outdatedp)
1090 u_int32_t fnum;
1104 * in fnum. If the log file fnum does not exist and is lower-numbered
1111 *outdatedp = filestart == NULL ? 0 : (fnum < filestart->file);
1117 if ((ret = __log_name(dblp, fnum, &name, NULL, 0)) != 0) {
1136 if (cfile > fnum)
1526 u_int32_t firstfnum, fnum, lastver, oldver; local
1583 for (fnum = lsn.file - 1; fnum >
[all...]
H A Dlog_get.c1186 __logc_io(logc, fnum, offset, p, nrp, eofp)
1188 u_int32_t fnum, offset;
1207 if (logc->fhp != NULL && logc->bp_lsn.file != fnum) {
1216 if ((ret = __log_name(dblp, fnum,
1239 logc->bp_lsn.file = fnum;
1249 (u_long)fnum, (u_long)offset);
/macosx-10.10/text_cmds-88/split/
H A Dsplit.c295 static long fnum; local
316 if (fnum == maxfiles)
320 tfnum = fnum;
328 ++fnum;
/macosx-10.10/Heimdal-398.1.2/lib/asn1/
H A Dfuzzer.c45 static unsigned long fnum, fcur, fsize; variable
74 fnum = 0;
84 fnum++;
95 return (fnum > 10000);
112 if (fnum == fcur++)
126 if (fnum == (*cur)++)
/macosx-10.10/OpenSSH-189/osslshim/heimdal-asn1/
H A Dasn1-fuzzer.c68 static unsigned long fnum, fcur, fsize; variable
97 fnum = 0;
107 fnum++;
118 return (fnum > 10000);
135 if (fnum == fcur++)
149 if (fnum == (*cur)++)
/macosx-10.10/bootstrap_cmds-91/migcom.tproj/
H A Dheader.c121 int fnum; local
129 fnum = SubsystemBase + stat->stRoutine->rtNumber;
133 fprintf(file, " { \"%s\", %d }", fname, fnum);
/macosx-10.10/syslog-267/syslogd.tproj/
H A Ddaemon.c227 uint32_t status, level, fnum; local
405 fnum = LOG_USER;
408 fnum = atoi(fac + 1) << 3;
409 if ((fnum == 0) && (strcmp(fac + 1, "0"))) fnum = LOG_USER;
412 fac = asl_syslog_faciliy_num_to_name(fnum);
/macosx-10.10/IOKitUser-1050.1.21/graphics.subproj/
H A DIODisplayLib.c3389 float fnum; local
3475 num = CFNumberCreate( kCFAllocatorDefault, kCFNumberFloatType, &fnum ); \
3627 fnum = (edid->colorCharacteristics[2] << 2) | ((low >> 6) & 3);
3628 fnum /= (1 << 10);
3630 fnum = (edid->colorCharacteristics[3] << 2) | ((low >> 4) & 3);
3631 fnum /= (1 << 10);
3634 fnum = (edid->colorCharacteristics[4] << 2) | ((low >> 2) & 3);
3635 fnum /= (1 << 10);
3637 fnum = (edid->colorCharacteristics[5] << 2) | ((low >> 0) & 3);
3638 fnum /
[all...]
/macosx-10.10/tcl-105/tcl_ext/snack/snack/unix/
H A DjkAudIO_sgi.c282 unsigned long long fnum; local
287 alGetFrameNumber(A->port, (stamp_t*) &fnum);
289 return(A->count + (int)(fnum - A->startfn));
/macosx-10.10/dcerpc-61/dcerpc/ncklib/
H A Ddg.c119 # define CANCEL_CHECK(fnum, call) \
120 if ((fnum) >= RPC_DG_CANCEL_CHECK_FREQ && \
121 (fnum) % RPC_DG_CANCEL_CHECK_FREQ == 0) \
129 # define CANCEL_CHECK(fnum, call) {}
/macosx-10.10/vim-55/runtime/syntax/
H A Dcl.vim49 syn keyword clSetOptions transparent aauto abort align convert E fill fnum goback hangup justify null_exit output rauto rawprint rawdisplay repeat skip tab trim

Completed in 362 milliseconds

12