HomeSort by relevance Sort by last modified time
    Searched refs:f2 (Results 76 - 100 of 709) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/clang/test/CXX/temp/temp.param/
p9.cpp 22 friend void f2();
  /external/clang/test/CodeGen/
2008-07-30-implicit-initialization.c 6 // CHECK: define i32 @f2()
24 int f2() { function
bitfield-promote.c 17 long long f2(void) { function
21 // CHECK: @f2()
bounds-checking.c 10 // CHECK: @f2
11 void f2() { function
decl-in-prototype.c 11 // CHECK: define i32 @f2
12 int f2(enum {AA=7,BB} E) { function
2007-09-28-PackedUnionMember.c 6 unsigned long f2; member in struct:H
20 unsigned long f2; member in struct:E
struct-passing.c 12 T1 __attribute__((const)) f2(void);
17 void *ps[] = { f0, f1, f2, f3, f4, f5 };
21 // CHECK: declare void @f2({{.*}} sret)
  /external/clang/test/CodeGenCXX/
mangle-variadic-templates.cpp 31 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);
reinterpret-cast.cpp 8 unsigned long f2() { function
visibility-inlines-hidden.cpp 9 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/Index/
fix-its.c 22 void f2() { function
  /external/clang/test/PCH/Inputs/
chain-selectors1.h 3 -(void)f2;
  /external/clang/test/Sema/
anonymous-struct-union.c 13 float f2; member in union:X::__anon6648::__anon6649
27 x.f2 = x.f;
71 float f2; member in union:__anon6654
74 f2 = 0.0; // expected-error{{use of undeclared identifier}}
nested-redef.c 17 void f2(void) { function
pragma-pack-5.c 11 unsigned f2 : 32; member in struct:s0
42 unsigned f2 : 8; member in struct:s4
  /external/oprofile/libutil++/tests/
glob_filter_tests.cpp 37 glob_filter f2("foo", "");
38 check(f2, "foo", true);
39 check(f2, "foo1", false);
40 check(f2, "foo/foo", false);
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.alg/
swap.pass.cpp 77 std::function<int(int)> f2 = A(2); local
81 assert(f2.target<A>()->id() == 2);
82 swap(f1, f2);
86 assert(f2.target<A>()->id() == 1);
92 std::function<int(int)> f2 = g; local
96 assert(*f2.target<int(*)(int)>() == g);
97 swap(f1, f2);
101 assert(f2.target<A>()->id() == 1);
107 std::function<int(int)> f2 = A(1); local
111 assert(f2.target<A>()->id() == 1)
122 std::function<int(int)> f2 = h; local
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.mod/
swap.pass.cpp 76 std::function<int(int)> f2 = A(2); local
80 assert(f2.target<A>()->id() == 2);
81 f1.swap(f2);
85 assert(f2.target<A>()->id() == 1);
91 std::function<int(int)> f2 = g; local
95 assert(*f2.target<int(*)(int)>() == g);
96 f1.swap(f2);
100 assert(f2.target<A>()->id() == 1);
106 std::function<int(int)> f2 = A(1); local
110 assert(f2.target<A>()->id() == 1)
121 std::function<int(int)> f2 = h; local
    [all...]
  /external/eigen/unsupported/test/
alignedvector3.cpp 23 FastType f1(r1), f2(r2), f3(r3), f4(r4), f5(r5), f6(r6);
31 VERIFY_IS_APPROX(f4+f1-f2,r4+r1-r2);
35 VERIFY_IS_APPROX(f5+f1-s1*f2,r5+r1-s1*r2);
36 VERIFY_IS_APPROX(f5+f1/s2-s1*f2,r5+r1/s2-s1*r2);
41 VERIFY_IS_APPROX(f2.dot(f3),r2.dot(r3));
42 VERIFY_IS_APPROX(f2.cross(f3),r2.cross(r3));
43 VERIFY_IS_APPROX(f2.norm(),r2.norm());
45 VERIFY_IS_APPROX(f2.normalized(),r2.normalized());
47 VERIFY_IS_APPROX((f2+f1).normalized(),(r2+r1).normalized());
49 f2.normalize()
    [all...]
  /dalvik/dx/tests/044-dex-math-ops/
Blort.java 56 public void blort(float f1, float f2) {
58 f = f1 + f2;
59 f = f1 - f2;
60 f = f1 * f2;
61 f = f1 / f2;
62 f = f1 % f2;
  /external/libffi/testsuite/libffi.call/
struct7.c 12 float f2; member in struct:__anon10121
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);
  /ndk/sources/cxx-stl/llvm-libc++/test/input.output/file.streams/fstreams/filebuf.cons/
move.pass.cpp 33 std::filebuf f2(move(f));
35 assert(f2.is_open());
36 assert(f2.sgetc() == '2');
47 std::wfilebuf f2(move(f));
49 assert(f2.is_open());
50 assert(f2.sgetc() == L'2');
  /external/clang/test/SemaCXX/
anonymous-union.cpp 13 float f2; member in union:X::__anon6796::__anon6797
36 f2 = f;
44 f2 = 0; // expected-error{{read-only variable is not assignable}}
51 x.f2 = x.f;
95 float f2; member in union:__anon6803
98 f2 = 0.0;
161 void f2() { function
  /external/valgrind/main/coregrind/
m_vki.c 107 vki_sigaction_fromK_t f2; local
112 vg_assert(sizeof(f1.sa_handler) == sizeof(f2.ksa_handler));
113 vg_assert(sizeof(f1.sa_mask) == sizeof(f2.sa_mask));
114 vg_assert(sizeof(f1.sa_flags) == sizeof(f2.sa_flags));
120 vg_assert(offsetof(f1.sa_handler) == offsetof(f2.ksa_handler));
121 vg_assert(offsetof(f1.sa_mask) == offsetof(f2.sa_mask));
122 vg_assert(offsetof(f1.sa_flags) == offsetof(f2.sa_flags));
  /frameworks/av/media/libstagefright/codecs/amrwb/src/
isp_az.cpp 142 int32 f1[NC16k + 1], f2[NC16k]; local
159 Get_isp_pol_16kHz(&isp[1], f2, nc - 1);
162 f2[i] = shl_int32(f2[i], 2);
168 Get_isp_pol(&isp[1], f2, nc - 1);
172 * Multiply F2(z) by (1 - z^-2)
177 f2[i] -= f2[i - 2]; /* f2[i] -= f2[i-2]; *
    [all...]

Completed in 636 milliseconds

1 2 34 5 6 7 8 91011>>