Searched defs:f3 (Results 126 - 150 of 235) sorted by relevance

12345678910

/external/clang/test/CodeGen/
H A Dfunction-attributes.c6 // CHECK: define void @f3(i8 zeroext %x) [[NUW]]
18 void f3(unsigned char x) { } function
H A Dle32-arguments.c26 // CHECK-LABEL: define void @f3(i64 %i)
27 void f3(long long i) {} function
H A Dunion.c26 int f3(value v) { function
/external/clang/test/CodeGenCXX/
H A Dmangle-ms-back-references.cpp9 void f3(int a, const char* b, const char* c) {} function
10 // CHECK: "\01?f3@@YAXHPBD0@Z"
H A Dmangle-neon-vectors.cpp41 void f3(uint64x1_t v) { } function
H A Dvisibility-inlines-hidden.cpp10 void f3();
15 inline void X0::f3() { } function in class:X0
21 void f3();
28 inline void X1<T>::f3() { } function in class:X1
45 x0->f3();
55 x1->f3();
/external/clang/test/Sema/
H A Danonymous-struct-union.c4 float f3; member in union:X::__anon19042
29 x.f3 = 0; // expected-error{{no member named 'f3'}}
H A Dattr-aligned.c56 char f3[__alignof__(F3) == 16 ? 1 : -1] = { 0 }; variable
H A Dcomplex-int.c65 int f3[-(2.0+3.0i) == +(-3.0i-2.0) ? 1 : -1]; variable
H A Dfunction-redecl.c128 void f3();
129 void f3(enum e0 x) {} function
H A Dprivate-extern.c37 void f3() { function
H A Dstring-init.c41 long f3[] = u"a"; // expected-error{{array initializer must be an initializer list}} local
/external/clang/test/SemaCXX/
H A Daddress-of-temporary.cpp11 void f3() { (void)&(X)1; } // expected-warning{{taking the address of a temporary object}} function
H A Ddecl-expr-ambiguity.cpp33 extern T f3();
87 foo f3; // expected-error {{must use 'class' tag to refer to type 'foo' in this scope}} local
H A Doverload-member-call.cpp49 float& f3 = x.g(0); local
H A Dusing-directive.cpp120 void f3() { f2(1); } function
/external/clang/test/SemaTemplate/
H A Dconstructor-template.cpp125 foo f3 = f1; local
/external/libcxx/test/thread/thread.mutex/thread.once/thread.once.callonce/
H A Dcall_once.pass.cpp52 void f3() function
160 std::thread t0(f3);
161 std::thread t1(f3);
/external/llvm/test/MC/ELF/
H A Dcfi.s16 f3: label
/external/srtp/crypto/hash/
H A Dsha1.c63 #define f3(B,C,D) (B ^ C ^ D) macro
172 TEMP = S5(A) + f3(B,C,D) + E + W[t] + SHA_K3;
327 TEMP = S5(A) + f3(B,C,D) + E + W[t] + SHA_K3;
380 TEMP = S5(A) + f3(B,C,D) + E + W[t] + SHA_K3;
/external/bluetooth/bluedroid/embdrv/sbc/decoder/srce/
H A Dsynthesis-sbc.c477 OI_INT32 f0, f1, f2, f3, f4, f7, f8, f9, f10; local
483 f3 = (in[1] + in[2]);
485 f4 = f1 - f3;
487 y0 = -SCALE(f1 + f3, DCT_SHIFT);
/external/ceres-solver/internal/ceres/
H A Dtrust_region_minimizer_test.cc104 const double f3 = pow(x2 - 2.0 * x3, 2.0); local
110 << "f3=" << f3 << ", "
113 *cost = (f1*f1 + f2*f2 + f3*f3 + f4*f4) / 2.0;
120 residuals[2] = f3;
173 gradient[column_index++] = f1 * 10.0 + f3 * 2.0 * (x2 - 2.0 * x3);
178 f2 * sqrt(5.0) + f3 * (2.0 * 2.0 * (2.0 * x3 - x2));
/external/chromium_org/chrome/browser/bookmarks/
H A Dbookmark_html_writer_unittest.cc92 const base::string16& f3) {
100 if (!f3.empty())
101 entry.path.push_back(f3);
116 const base::string16& f3) {
118 f1, f2, f3),
218 const BookmarkNode* f3 = model->AddFolder(model->other_node(), 2, f3_title); local
219 const BookmarkNode* f4 = model->AddFolder(f3, 0, f4_title);
86 BookmarkValuesToString(bool on_toolbar, const GURL& url, const base::string16& title, base::Time creation_time, const base::string16& f1, const base::string16& f2, const base::string16& f3) argument
109 AssertBookmarkEntryEquals(const ImportedBookmarkEntry& entry, bool on_toolbar, const GURL& url, const base::string16& title, base::Time creation_time, const base::string16& f1, const base::string16& f2, const base::string16& f3) argument
/external/chromium_org/sync/syncable/
H A Dparent_child_index_unittest.cc178 EntryKernel* f3 = MakeBookmark(3, 3, false); local
190 // Under folder f3, there is nothing.
198 index_.Insert(f3);
211 EXPECT_EQ(*it, f3);
248 EntryKernel* f3 = MakeBookmark(3, 3, false); local
260 // Under folder f3, there is nothing.
264 index_.Insert(f3);
273 EXPECT_TRUE(index_.Contains(f3));
279 index_.Remove(f3);
280 EXPECT_FALSE(index_.Contains(f3));
[all...]
/external/chromium_org/testing/gtest/include/gtest/internal/
H A Dgtest-tuple.h332 GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3) : f0_(f0), f1_(f1), f2_(f2),
333 f3_(f3) {}
373 GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3,
374 GTEST_BY_REF_(T4) f4) : f0_(f0), f1_(f1), f2_(f2), f3_(f3), f4_(f4) {}
417 GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3, GTEST_BY_REF_(T4) f4,
418 GTEST_BY_REF_(T5) f5) : f0_(f0), f1_(f1), f2_(f2), f3_(f3), f4_(f4),
464 GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3, GTEST_BY_REF_(T4) f4,
466 f3_(f3), f4_(f4), f5_(f5), f6_(f6) {}
513 GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3, GTEST_BY_REF_(T4) f4,
515 GTEST_BY_REF_(T7) f7) : f0_(f0), f1_(f1), f2_(f2), f3_(f3), f4
620 GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3, GTEST_BY_REF_(T4) f4, member in class:std::tr1::tuple
693 make_tuple(const T0& f0, const T1& f1, const T2& f2, const T3& f3) argument
699 make_tuple(const T0& f0, const T1& f1, const T2& f2, const T3& f3, const T4& f4) argument
705 make_tuple(const T0& f0, const T1& f1, const T2& f2, const T3& f3, const T4& f4, const T5& f5) argument
711 make_tuple(const T0& f0, const T1& f1, const T2& f2, const T3& f3, const T4& f4, const T5& f5, const T6& f6) argument
717 make_tuple(const T0& f0, const T1& f1, const T2& f2, const T3& f3, const T4& f4, const T5& f5, const T6& f6, const T7& f7) argument
723 make_tuple(const T0& f0, const T1& f1, const T2& f2, const T3& f3, const T4& f4, const T5& f5, const T6& f6, const T7& f7, const T8& f8) argument
730 make_tuple(const T0& f0, const T1& f1, const T2& f2, const T3& f3, const T4& f4, const T5& f5, const T6& f6, const T7& f7, const T8& f8, const T9& f9) argument
[all...]

Completed in 3304 milliseconds

12345678910