Searched refs:f2 (Results 1 - 25 of 380) sorted by relevance

1234567891011>>

/macosx-10.10.1/ksh-23/ksh/src/lib/libast/sfio/
H A Dsfstack.c30 #define STKMTXLOCK(f1,f2) \
32 if(f2) SFMTXLOCK(f2); \
34 #define STKMTXRETURN(f1,f2,rv) \
36 if(f2) SFMTXUNLOCK(f2); \
41 Sfio_t* sfstack(Sfio_t* f1, Sfio_t* f2) argument
43 Sfio_t* sfstack(f1,f2)
45 Sfio_t* f2; /* top of stack */
53 STKMTXLOCK(f1,f2);
[all...]
H A Dsfswap.c33 Sfio_t* sfswap(reg Sfio_t* f1, reg Sfio_t* f2) argument
35 Sfio_t* sfswap(f1,f2)
37 reg Sfio_t* f2;
45 if(f2 && SFFROZEN(f2) && (f2->mode&SF_PUSH) )
47 if(f1 == f2)
48 return f2;
54 if(f2)
55 { f2mode = f2
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/stress/
H A Dassign-argument-in-inlined-call.js6 return f2.arguments;
11 function f2(a) { function
17 return f2(a);
H A Dassign-captured-argument-in-inlined-call.js5 function f2(a) { function
11 return f2(a);
/macosx-10.10.1/tcl-105/tcl/tcl/tools/
H A DmakeTestCases.tcl158 set f2 [open [file join $d tests/clock.new] w]
166 puts $f2 $line
170 $cases $f2
175 puts $f2 $line
185 close $f2
200 # f2 -- Channel handle to the output file
211 proc testcases2 { f2 } {
247 puts $f2 ""
248 puts $f2 "\# Test formatting of Gregorian year, month, day, all formats"
249 puts $f2 "\# Format
[all...]
/macosx-10.10.1/bless-103/libbless/Misc/
H A DBLGetCommonMountPoint.c44 const char * f2, char * mountp) {
62 if(f2[0] != '\0') {
63 err = statfs(f2, &fsinfo);
65 contextprintf(context, kBLLogLevelError, "No mount point for %s\n", f2 );
70 contextprintf(context, kBLLogLevelVerbose, "Mount point for %s is %s\n", f2, f2mount );
76 * 1) if f1 && f2, find a common mount point or err
77 * 2) if f2 && !f1, copy f2mount -> mountp
78 * 3) if f1 && !f2, just return success
81 if(f2[0] != '\0') {
43 BLGetCommonMountPoint(BLContextPtr context, const char * f1, const char * f2, char * mountp) argument
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/js1_4/Regress/
H A Dfunction-001.js47 function f2( a ) { var a, b; }; function
52 "function f2( a ) { var a, b; }; typeof f1",
66 "typeof f2",
68 typeof f2 );
74 "typeof f2.toString()",
76 typeof f2.toString() );
/macosx-10.10.1/llvmCore-3425.0.34/utils/
H A DGetRepositoryPath18 svn info | grep 'URL:' | cut -d: -f2-
20 git svn info | grep 'URL:' | cut -d: -f2-
/macosx-10.10.1/bash-94.1.2/bash-3.2/tests/
H A Dfunc1.sub15 f2()
17 echo f2-a
26 type f2
28 export -f f2
29 ${THIS_SH} -c 'echo subshell; type f2'
/macosx-10.10.1/Libc-1044.1.2/stdlib/FreeBSD/
H A Dmerge.c107 u_char *f1, *f2, *t, *b, *tp2, *q, *l1, *l2; local
139 f2 = l1 = list1 + (p2 - list2);
143 while (f1 < l1 && f2 < l2) {
144 if ((*cmp)(f1, f2) <= 0) {
145 q = f2;
150 b = f2, t = l2;
194 ICOPY_LIST(f2, tp2, b);
197 CCOPY_LIST(f2, tp2, b);
203 ICOPY_ELT(f2, tp2, i);
206 CCOPY_ELT(f2, tp
269 u_char *f1, *f2, *s, *l2, *last, *p2; local
[all...]
H A Dmerge_b.c107 u_char *f1, *f2, *t, *b, *tp2, *q, *l1, *l2; local
139 f2 = l1 = list1 + (p2 - list2);
143 while (f1 < l1 && f2 < l2) {
144 if (cmp(f1, f2) <= 0) {
145 q = f2;
150 b = f2, t = l2;
194 ICOPY_LIST(f2, tp2, b);
197 CCOPY_LIST(f2, tp2, b);
203 ICOPY_ELT(f2, tp2, i);
206 CCOPY_ELT(f2, tp
269 u_char *f1, *f2, *s, *l2, *last, *p2; local
[all...]
/macosx-10.10.1/bind9-45.101/bind9/bin/tests/system/forward/
H A Dtests.sh24 f2=10.53.0.4
63 $DIG txt.example1. txt @$f2 -p 5300 > dig.out.f2 || ret=1
64 $PERL ../digcomp.pl dig.out.hidden dig.out.f2 || ret=1
71 $DIG txt.example2. txt @$f2 -p 5300 > dig.out.f2 || ret=1
72 $PERL ../digcomp.pl dig.out.root dig.out.f2 || ret=1
79 $DIG txt.example3. txt @$f2 -p 5300 > dig.out.f2 || ret=1
80 $PERL ../digcomp.pl dig.out.hidden dig.out.f2 || re
[all...]
/macosx-10.10.1/tcl-105/tk/tk/library/demos/
H A Dlabelframe.tcl63 labelframe $w.f2 -pady 2 -padx 2
64 checkbutton $w.f2.cb -text "Use this option." -variable lfdummy2 \
65 -command "lfEnableButtons $w.f2" -padx 0
66 $w.f2 configure -labelwidget $w.f2.cb
67 grid $w.f2 -row 0 -column 1 -pady 2m -padx 2m
71 checkbutton $w.f2.b$t -text $str
72 pack $w.f2.b$t -side top -fill x -pady 2
75 lfEnableButtons $w.f2
/macosx-10.10.1/libffi-18.1/tests/testsuite/libffi.call/
H A Dstruct7.c12 float f2; member in struct:__anon9275
19 ts.f2 += 1;
55 ts7_arg.f2 = 55.5f;
59 printf ("%g\n", ts7_arg.f2);
65 printf ("%g\n", ts7_result->f2);
69 CHECK(ts7_result->f2 == 55.5f + 1);
H A Dstruct8.c12 float f2; member in struct:__anon9276
20 ts.f2 += 1;
57 ts8_arg.f2 = 55.5f;
62 printf ("%g\n", ts8_arg.f2);
69 printf ("%g\n", ts8_result->f2);
74 CHECK(ts8_result->f2 == 55.5f + 1);
/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-core/libffi-src/tests/testsuite/libffi.call/
H A Dstruct7.c12 float f2; member in struct:__anon11805
19 ts.f2 += 1;
55 ts7_arg.f2 = 55.5f;
59 printf ("%g\n", ts7_arg.f2);
65 printf ("%g\n", ts7_result->f2);
69 CHECK(ts7_result->f2 == 55.5f + 1);
H A Dstruct8.c12 float f2; member in struct:__anon11806
20 ts.f2 += 1;
57 ts8_arg.f2 = 55.5f;
62 printf ("%g\n", ts8_arg.f2);
69 printf ("%g\n", ts8_result->f2);
74 CHECK(ts8_result->f2 == 55.5f + 1);
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-core/libffi-src/tests/testsuite/libffi.call/
H A Dstruct7.c12 float f2; member in struct:__anon11836
19 ts.f2 += 1;
55 ts7_arg.f2 = 55.5f;
59 printf ("%g\n", ts7_arg.f2);
65 printf ("%g\n", ts7_result->f2);
69 CHECK(ts7_result->f2 == 55.5f + 1);
H A Dstruct8.c12 float f2; member in struct:__anon11837
20 ts.f2 += 1;
57 ts8_arg.f2 = 55.5f;
62 printf ("%g\n", ts8_arg.f2);
69 printf ("%g\n", ts8_result->f2);
74 CHECK(ts8_result->f2 == 55.5f + 1);
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-core-2.5.1/libffi-src/tests/testsuite/libffi.call/
H A Dstruct7.c12 float f2; member in struct:__anon11978
19 ts.f2 += 1;
55 ts7_arg.f2 = 55.5f;
59 printf ("%g\n", ts7_arg.f2);
65 printf ("%g\n", ts7_result->f2);
69 CHECK(ts7_result->f2 == 55.5f + 1);
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/examples/struct/
H A Ddiff.tcl27 set f2 [open [lindex $argv 1] r]
28 set lines2 [split [read $f2] \n]
29 close $f2
/macosx-10.10.1/dtrace-147/test/tst/common/translators/
H A Dtst.CircularTransDecl.d62 struct output_struct f2;
69 f2.myi = 100;
70 f2.myc = 'd';
75 backwardi = xlate < struct input_struct > (f2).i;
76 backwardc = xlate < struct input_struct > (f2).c;
/macosx-10.10.1/apr-32/apr/apr/test/
H A Dtestfileinfo.c51 static void finfo_equal(abts_case *tc, apr_finfo_t *f1, apr_finfo_t *f2) argument
55 (f1->valid & f2->valid & APR_FINFO_TYPE));
57 f1->filetype == f2->filetype);
59 (f1->valid & f2->valid & APR_FINFO_SIZE));
61 f1->size == f2->size);
63 (f1->valid & f2->valid & APR_FINFO_ATIME));
65 f1->atime == f2->atime);
67 (f1->valid & f2->valid & APR_FINFO_MTIME));
69 f1->mtime == f2->mtime);
71 (f1->valid & f2
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/ffidl/ffidl/demos/other/
H A Dgmpf.tcl57 proc ::gmp::fbinary {fn f1 f2} {
62 mpf_init_set_str mpf2 $f2 10
71 proc ::gmp::fbinaryi {fn f1 f2} {
75 mpf_init_set_str mpf2 $f2 10
82 proc ::gmp::fadd {f1 f2} { fbinary mpf_add $f1 $f2 }
83 proc ::gmp::fsub {f1 f2} { fbinary mpf_sub $f1 $f2 }
84 proc ::gmp::fmul {f1 f2} { fbinary mpf_mul $f1 $f2 }
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/ecma_3/Function/
H A Dregress-85880.js50 function f2() function
52 return f2.arguments;
55 actual = (f2() == null);
60 actual = (f2(0) == null);
84 f2();

Completed in 566 milliseconds

1234567891011>>