Searched refs:f2 (Results 126 - 150 of 831) sorted by relevance

1234567891011>>

/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-smi-math-floor-round.js40 function f2(o) { function
46 assertEquals(2, f2(o));
47 assertEquals(2, f2(o));
48 %OptimizeFunctionOnNextCall(f2);
49 assertEquals(2, f2(o));
/external/clang/test/SemaTemplate/
H A Dfunction-template-specialization.cpp30 template<int N> void f2(double (&array)[N]);
31 template<typename T> void f2(T (&array)[42]);
33 template<> void f2<double>(double (&array)[42]);
34 template<> void f2<42>(double (&array)[42]);
36 void f2<25>(double (&array)[25]); // expected-error{{specialization}}
/external/clang/test/CodeGen/
H A Dfp16-ops.c7 volatile float f0, f1, f2; variable
59 h1 = h0 * f2;
78 h1 = (h0 / f2);
101 h1 = (f2 + h0);
120 h1 = (f2 - h0);
135 test = (f2 < h0);
147 test = (h0 > f2);
165 test = (f2 <= h0);
177 test = (h0 >= f2);
238 h0 += f2;
[all...]
H A D2008-07-30-implicit-initialization.c6 // CHECK-LABEL: define i32 @f2()
24 int f2() { function
H A Dbitfield-promote.c17 long long f2(void) { function
21 // CHECK: @f2()
H A Dbounds-checking.c11 // CHECK-LABEL: @f2
12 void f2() { function
H A Dcomplex-init-list.c15 _Complex float f2(float x, float y) { return (_Complex float){ x, y }; } function
16 // CHECK-LABEL: define <2 x float> @f2
H A Ddecl-in-prototype.c11 // CHECK-LABEL: define i32 @f2
12 int f2(enum {AA=7,BB} E) { function
/external/valgrind/main/none/tests/s390x/
H A Dbfp-4.c39 float f1, f2; local
44 f2 = f1;
45 cebr(f1, f2);
46 f2 = f1 + 10.;
47 cebr(f1, f2);
48 f2 = f1 - 100.;
49 cebr(f1, f2);
/external/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/
H A Dalloc_function.pass.cpp75 std::function<int(int)> f2(std::allocator_arg, test_allocator<A>(), f);
78 assert(f2.target<A>());
79 assert(f2.target<int(*)(int)>() == 0);
88 std::function<int(int)> f2(std::allocator_arg, test_allocator<int(*)(int)>(), f);
90 assert(f2.target<int(*)(int)>());
91 assert(f2.target<A>() == 0);
99 std::function<int(int)> f2(std::allocator_arg, test_allocator<int>(), f);
101 assert(f2.target<int(*)(int)>() == 0);
102 assert(f2.target<A>() == 0);
H A Dcopy.pass.cpp73 std::function<int(int)> f2 = f; local
76 assert(f2.target<A>());
77 assert(f2.target<int(*)(int)>() == 0);
86 std::function<int(int)> f2 = f; local
88 assert(f2.target<int(*)(int)>());
89 assert(f2.target<A>() == 0);
97 std::function<int(int)> f2 = f; local
99 assert(f2.target<int(*)(int)>() == 0);
100 assert(f2.target<A>() == 0);
110 std::function<int(int)> f2 local
[all...]
/external/chromium_org/v8/test/webkit/
H A Ddo-while-semicolon.js32 function f2() { function
53 uf2 = uneval(f2);
54 ueuf2 = uneval(eval(uneval(f2)));
H A Dinterpreter-no-activation.js33 function f2(a,b,c,d) { function
39 shouldBeTrue("f2(true)");
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dmergesort.c111 unsigned char *f1, *f2, *t, *b, *tp2, *q, *l1, *l2;
146 f2 = l1 = list1 + (p2 - list2);
150 while (f1 < l1 && f2 < l2) {
151 if ((*cmp)(f1, f2) <= 0) {
152 q = f2;
157 b = f2, t = l2;
201 ICOPY_LIST(f2, tp2, b);
204 CCOPY_LIST(f2, tp2, b);
210 ICOPY_ELT(f2, tp2, i);
213 CCOPY_ELT(f2, tp
279 unsigned char *f1, *f2, *s, *l2, *last, *p2; local
[all...]
/external/chromium_org/tools/profile_chrome/
H A Dtrace_packager_unittest.py21 tempfile.NamedTemporaryFile(delete=False) as f2:
23 f2.write(json.dumps(t2))
25 f2.flush()
28 trace_packager.PackageTraces([f1.name, f2.name],
/external/clang/test/Analysis/
H A Dchroot.c14 void f2(void) { function
H A Dexercise-ps.c18 static void f2(void *buf) { function
/external/clang/test/CXX/class/class.local/
H A Dp3.cpp13 void f2() { function
/external/clang/test/CXX/expr/expr.unary/expr.unary.noexcept/
H A Dcg.cpp19 b = f2();
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
H A Dbasic.cpp18 template<typename T> void f2(T*, T*); // expected-note {{candidate template ignored: could not match 'T *' against 'ConvToIntPtr'}} \
26 f2(ip, ConvToIntPtr()); // expected-error{{no matching function}}
27 f2(ip, ip); // okay
28 f2(ip, fp); // expected-error{{no matching function}}
/external/clang/test/CXX/temp/temp.param/
H A Dp9.cpp22 friend void f2();
/external/clang/test/CodeGenCXX/
H A Dmangle-variadic-templates.cpp31 template<typename ...Types> void f2(Types...) {} function
33 template void f2<>();
35 template void f2<int>(int);
37 template void f2<int, float>(int, float);
H A Dmangle-windows.cpp11 void __fastcall f2(void) {} function
12 // WIN: define x86_fastcallcc void @"\01?f2@@YIXXZ"
H A Dnullptr.cpp22 const std::type_info& f2() { function
/external/clang/test/Index/
H A Dfix-its.c22 void f2() { function

Completed in 450 milliseconds

1234567891011>>