Searched defs:f2 (Results 276 - 300 of 467) sorted by relevance

<<111213141516171819

/external/clang/test/CodeGenCXX/
H A Dmangle-neon-vectors.cpp37 void f2(int32x4_t v) { } function
H A Dvisibility-inlines-hidden.cpp9 void f2() { } function in struct:X0
20 void f2() { } function in struct:X1
34 void f2() { } function in struct:X2
43 x0->f2();
53 x1->f2();
63 x2->f2();
65 x3->f2();
/external/clang/test/Sema/
H A Danonymous-struct-union.c13 float f2; member in union:X::__anon19043::__anon19044
27 x.f2 = x.f;
71 float f2; member in union:__anon19049
74 f2 = 0.0; // expected-error{{use of undeclared identifier}}
H A Dattr-aligned.c54 char f2[__alignof__(F2) == 16 ? 1 : -1] = { 0 }; variable
H A Dcomplex-int.c64 int f2[(29.0i-11.0)/(5.0+7.0i) == 2.0+3.0i ? 1 : -1]; variable
H A Dconditional-expr.c96 int f2(int x) { function
H A Dfunction-redecl.c49 extern int f2; // expected-note 2 {{previous definition is here}}
51 void f2(int); // expected-error{{redefinition of 'f2' as different kind of symbol}}
55 int f2; local
57 void f2(int); // expected-error{{redefinition of 'f2' as different kind of symbol}}
H A Dprivate-extern.c32 void f2() { function
H A Dstring-init.c40 long f2[] = u8"a"; // expected-error{{array initializer must be an initializer list}}} local
/external/clang/test/SemaCXX/
H A Daddress-of-temporary.cpp10 void f2() { (void)&X(1, 2); } // expected-warning{{taking the address of a temporary object}} function
H A Dattr-noreturn.cpp23 void f2() { f1(f0); } function
46 f3(f2); // expected-error{{no matching function for call}}
H A Ddecl-expr-ambiguity.cpp86 foo* f2 = 0; // expected-error {{must use 'class' tag to refer to type 'foo' in this scope}} local
H A Dfunction-redecl.cpp12 void f2() { function in namespace:N
H A Doverload-member-call.cpp12 float& f2 = f(x); local
23 float& f2 = g(0); local
43 float& f2 = xp->f(0); local
H A Dtypedef-redecl.cpp22 typedef int f2; // expected-note{{previous definition is here}} typedef
23 void f2(); // expected-error{{redefinition of 'f2' as different kind of symbol}}
H A Dwarn-global-constructors.cpp66 void f2() { function in namespace:test5
77 void f2() { function in namespace:test6
/external/clang/test/SemaTemplate/
H A Dexplicit-instantiation.cpp52 template<typename T, typename U> void f2(T, U*) { } // expected-note{{candidate}} function in struct:X2
53 template<typename T, typename U> void f2(T*, U) { } // expected-note{{candidate}} function in struct:X2
60 template void X2::f2(int *, int *); // expected-error{{ambiguous}}
H A Dvirtual-member-functions.cpp103 Y* f2(X<void>* x) { return dynamic_cast<Y*>(x); } function in namespace:PR7114::DynamicCast
/external/libcxx/test/thread/thread.mutex/thread.once/thread.once.callonce/
H A Dcall_once.pass.cpp92 void f2() function
187 std::thread t0(f2);
188 std::thread t1(f2);
/external/llvm/test/MC/ELF/
H A Dcfi.s9 f2: label
/external/mockito/cglib-and-asm/src/org/mockito/cglib/proxy/
H A DMethodProxy.java76 fci.f2 = helper(ci, ci.c2);
78 fci.i2 = fci.f2.getIndex(sig2);
88 FastClass f2; field in class:MethodProxy.FastClassInfo
216 return fci.f2.invoke(fci.i2, obj, args);
/external/srtp/crypto/hash/
H A Dsha1.c62 #define f2(B,C,D) ((B & C) | (B & D) | (C & D)) macro
168 TEMP = S5(A) + f2(B,C,D) + E + W[t] + SHA_K2;
323 TEMP = S5(A) + f2(B,C,D) + E + W[t] + SHA_K2;
376 TEMP = S5(A) + f2(B,C,D) + E + W[t] + SHA_K2;
/external/stlport/test/unit/
H A Dmfunptr_test.cpp44 int f2(S1&, S2&);
79 ptr_fun(f2)(s1, s2);
134 int f2(S1&, S2&) function
/external/bluetooth/bluedroid/embdrv/sbc/decoder/srce/
H A Dsynthesis-sbc.c477 OI_INT32 f0, f1, f2, f3, f4, f7, f8, f9, f10; local
482 f2 = (in[1] - in[2]);
489 f7 = f0 + f2;
492 f10 = LONG_MULT_DCT(DCTII_4_K10_FIX, f2);
/external/ceres-solver/internal/ceres/
H A Dtrust_region_minimizer_test.cc103 const double f2 = sqrt(5.0) * (x3 - x4); local
109 << "f2=" << f2 << ", "
113 *cost = (f1*f1 + f2*f2 + f3*f3 + f4*f4) / 2.0;
119 residuals[1] = f2;
178 f2 * sqrt(5.0) + f3 * (2.0 * 2.0 * (2.0 * x3 - x2));
183 -f2 * sqrt(5.0) + f4 * sqrt(10.0) * 2.0 * (x4 - x1);

Completed in 5617 milliseconds

<<111213141516171819