Searched defs:F0 (Results 1 - 20 of 20) sorted by relevance

/external/mksh/src/
H A Demacsfn.h6 #define F0(cname,sname,flags) XFUNC_##cname = 0, macro
11 #ifndef F0
12 #define F0 FN macro
15 F0(abort, "abort", 0)
86 #undef F0 macro
H A Dsh_flags.h6 #define F0(sname,cname,ochar,flags) cname = 0, macro
11 #ifndef F0
12 #define F0 FN macro
22 F0("allexport", FEXPORT, 'a', OF_ANY)
142 #undef F0 macro
H A Dvar_spec.h6 #define F0(name) V_##name = 0, macro
8 #define F0(name) /* nothing */ macro
12 #ifndef F0
13 #define F0 FN macro
16 /* NOTE: F0 are skipped for the ITEMS array, only FN generate names */
19 F0(NONE)
38 #undef F0 macro
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Function/
H A D15.3.4.3-1.js56 function F0(a) function
87 actual = F0.apply();
97 actual = F0.apply("");
102 actual = F0.apply(true);
H A D15.3.4.4-1.js56 function F0(a) function
87 actual = F0.call();
97 actual = F0.call("");
102 actual = F0.call(true);
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.def/namespace.memdef/
H A Dp3.cpp11 friend struct F0;
13 struct F0 member_func();
15 struct F0 { }; struct in namespace:N
16 F0 f0() { return S0().member_func(); }
18 N::F0 f0_var = N::f0();
/external/clang/test/SemaCXX/
H A Drval-references-examples.cpp95 struct F0 { struct in namespace:perfect_forwarding
101 f(static_cast<Args&&>(args)...); // expected-error{{no matching function for call to object of type 'perfect_forwarding::F0'}}
107 forward(F0(), get<A&>(), get<A const&>(), get<A>(), get<const A>(),
109 forward(F0(), get<A&>(), get<A const&>(), get<A>(), get<const A>(), // expected-note{{in instantiation of function template specialization 'perfect_forwarding::forward<perfect_forwarding::F0, perfect_forwarding::A &, const perfect_forwarding::A &, perfect_forwarding::A, const perfect_forwarding::A, const perfect_forwarding::A, const perfect_forwarding::A>' requested here}}
/external/dropbear/libtomcrypt/src/hashes/
H A Dsha1.c39 #define F0(x,y,z) (z ^ (x & (y ^ z))) macro
74 #define FF0(a,b,c,d,e,i) e = (ROLc(a, 5) + F0(b,c,d) + e + W[i] + 0x5a827999UL); b = ROLc(b, 30);
/external/v8/test/cctest/
H A Dtest-assembler-ia32.cc42 typedef int (*F0)(); typedef
253 F0 f = FUNCTION_CAST<F0>(code->entry());
471 F0 f = FUNCTION_CAST<F0>(code->entry());
H A Dtest-assembler-x64.cc76 typedef int (*F0)(); typedef
314 int result = FUNCTION_CAST<F0>(buffer)();
435 F0 f = FUNCTION_CAST<F0>(code->entry());
H A Dtest-macro-assembler-x64.cc91 typedef int (*F0)(); typedef
190 int result = FUNCTION_CAST<F0>(buffer)();
288 int result = FUNCTION_CAST<F0>(buffer)();
393 int result = FUNCTION_CAST<F0>(buffer)();
465 int result = FUNCTION_CAST<F0>(buffer)();
667 int result = FUNCTION_CAST<F0>(buffer)();
755 int result = FUNCTION_CAST<F0>(buffer)();
846 int result = FUNCTION_CAST<F0>(buffer)();
1046 int result = FUNCTION_CAST<F0>(buffer)();
1135 int result = FUNCTION_CAST<F0>(buffe
[all...]
/external/valgrind/unittest/
H A Dthread_wrappers.h164 typedef void (*F0)(); typedef in struct:Closure
174 (F0(f))();
/external/clang/test/CodeGen/
H A D2002-07-14-MiscTests3.c43 static int F0(struct Quad Q, int i) { /* Pass Q by value */ function
/external/opencv/cvaux/src/
H A Dcvmorphcontours.cpp69 CvPoint2D32f* F0,
100 CvPoint2D32f* F0,
119 if( (F0->x==0) && (F0->y==0) )
139 d_angle = d_angle - acos( (F0->x*K->x + F0->y*K->y)/sqrt( (F0->x*F0->x + F0->y*F0
99 _cvBendingWork( CvPoint2D32f* B0, CvPoint2D32f* F0, CvPoint2D32f* B1, CvPoint2D32f* F1 ) argument
[all...]
/external/svox/pico/lib/
H A Dpicosig2.c3995 * - F0 : pitch
4012 picoos_single E, F0; local
4022 F0 = sig_inObj->F0_p;
4078 / (picoos_single) F0); /*Period*/
H A Dpicopam.c328 #define F0 59 /*F0 component*/ macro
1531 pam->sPhFeats[F0] = 0;
1571 pam->sPhFeats[F0] = (picoos_uint8) (f0avg / (picoos_single) 10.0f);
2179 * translates one full phone into a PHONE Item including DT Dur, F0 and CEP trees feature generation and traversal
/external/valgrind/main/drd/tests/
H A Dtsan_thread_wrappers_pthread.h435 typedef void (*F0)(); typedef in struct:Closure
445 (F0(f))();
/external/opencv/cv/src/
H A Dcvfundam.cpp797 CvMat U, F0, TF; local
870 F0 = cvMat( 3, 3, CV_64F, v + 9*8 ); // take the last column of v as a solution of Af = 0
872 // make F0 singular (of rank 2) by decomposing it with SVD,
876 W = U = V = TF = F0;
882 cvSVD( &F0, &W, &U, &V, CV_SVD_MODIFY_A + CV_SVD_U_T + CV_SVD_V_T );
885 // F0 <- U*diag([W(1), W(2), 0])*V'
887 cvGEMM( &TF, &V, 1., 0, 0., &F0, 0/*CV_GEMM_B_T*/ );
895 T0 = T1 = F0;
899 // F0 <- T1'*F0*T
[all...]
/external/v8/src/ia32/
H A Dassembler-ia32.cc137 typedef uint64_t (*F0)(); typedef
138 F0 probe = FUNCTION_CAST<F0>(reinterpret_cast<Address>(memory->address()));
/external/v8/src/x64/
H A Dassembler-x64.cc136 typedef uint64_t (*F0)(); typedef
137 F0 probe = FUNCTION_CAST<F0>(reinterpret_cast<Address>(memory->address()));

Completed in 681 milliseconds