Searched defs:f2 (Results 76 - 100 of 467) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A D2008-07-31-promotion-of-compound-pointer-arithmetic.c6 // CHECK-LABEL: define i32 @f2
26 int f2(long n) { function
H A Darray.c8 void f2() { function
H A Dbitfield-assign.c19 unsigned f2 : 2; member in struct:s0
34 void f2(void) { function
36 if ((s.f2 = 3) != 3) g0();
H A Dblocks.c16 struct s0 f2(struct s0 a0) { function
H A Dbounds-checking.c11 // CHECK-LABEL: @f2
12 void f2() { function
H A Ddecl-in-prototype.c11 // CHECK-LABEL: define i32 @f2
12 int f2(enum {AA=7,BB} E) { function
H A Dunreachable.c19 int f2(int i) { function
H A Dvariadic-gpfp-x86.c5 float f2; member in struct:Bar
/external/clang/test/CodeGenCXX/
H A Dcxx11-special-members.cpp22 void f2(B &x, B &y) { function
H A Dint64_uint64.cpp17 void f2(uint64_t a) {} function
H A Dnullptr.cpp22 const std::type_info& f2() { function
H A Dreinterpret-cast.cpp8 unsigned long f2() { function
/external/clang/test/Index/
H A Dfix-its.c22 void f2() { function
/external/clang/test/Sema/
H A Dimplicit-builtin-redecl.c16 void f2() { function
/external/clang/test/SemaCXX/
H A Dissue547.cpp61 typedef void f2(int, double, ...) &&; typedef
66 int check2[classify_function<f2>::value == 9? 1 : -1];
/external/libcxx/test/utilities/function.objects/arithmetic.operations/
H A Ddivides.pass.cpp26 const F2 f2 = F2(); local
27 assert(f2(36, 4) == 9);
28 assert(f2(36.0, 4) == 9);
29 assert(f2(18, 4.0) == 4.5); // exact in binary
H A Dminus.pass.cpp26 const F2 f2 = F2(); local
27 assert(f2(3,2) == 1);
28 assert(f2(3.0, 2) == 1);
29 assert(f2(3, 2.5) == 0.5);
H A Dmodulus.pass.cpp26 const F2 f2 = F2(); local
27 assert(f2(36, 8) == 4);
28 assert(f2(36L, 8) == 4);
29 assert(f2(36, 8L) == 4);
H A Dmultiplies.pass.cpp26 const F2 f2 = F2(); local
27 assert(f2(3,2) == 6);
28 assert(f2(3.0, 2) == 6);
29 assert(f2(3, 2.5) == 7.5); // exact in binary
H A Dnegate.pass.cpp26 const F2 f2 = F2(); local
27 assert(f2(36) == -36);
28 assert(f2(36L) == -36);
29 assert(f2(36.0) == -36);
H A Dplus.pass.cpp26 const F2 f2 = F2(); local
27 assert(f2(3,2) == 5);
28 assert(f2(3.0, 2) == 5);
29 assert(f2(3, 2.5) == 5.5);
/external/libcxx/test/utilities/function.objects/bitwise.operations/
H A Dbit_and.pass.cpp30 const F2 f2 = F2(); local
31 assert(f2(0xEA95, 0xEA95) == 0xEA95);
32 assert(f2(0xEA95L, 0xEA95) == 0xEA95);
33 assert(f2(0xEA95, 0xEA95L) == 0xEA95);
35 assert(f2(0xEA95, 0x58D3) == 0x4891);
36 assert(f2(0xEA95L, 0x58D3) == 0x4891);
37 assert(f2(0xEA95, 0x58D3L) == 0x4891);
39 assert(f2(0x58D3, 0xEA95) == 0x4891);
40 assert(f2(0x58D3L, 0xEA95) == 0x4891);
41 assert(f2(
[all...]
H A Dbit_not.pass.cpp30 const F2 f2 = F2(); local
31 assert((f2(0xEA95) & 0xFFFF ) == 0x156A);
32 assert((f2(0xEA95L) & 0xFFFF ) == 0x156A);
33 assert((f2(0x58D3) & 0xFFFF ) == 0xA72C);
34 assert((f2(0x58D3L) & 0xFFFF ) == 0xA72C);
35 assert((f2(0) & 0xFFFF ) == 0xFFFF);
36 assert((f2(0L) & 0xFFFF ) == 0xFFFF);
37 assert((f2(0xFFFF) & 0xFFFF ) == 0);
38 assert((f2(0xFFFFL) & 0xFFFF ) == 0);
H A Dbit_or.pass.cpp30 const F2 f2 = F2(); local
31 assert(f2(0xEA95, 0xEA95) == 0xEA95);
32 assert(f2(0xEA95L, 0xEA95) == 0xEA95);
33 assert(f2(0xEA95, 0xEA95L) == 0xEA95);
35 assert(f2(0xEA95, 0x58D3) == 0xFAD7);
36 assert(f2(0xEA95L, 0x58D3) == 0xFAD7);
37 assert(f2(0xEA95, 0x58D3L) == 0xFAD7);
39 assert(f2(0x58D3, 0xEA95) == 0xFAD7);
40 assert(f2(0x58D3L, 0xEA95) == 0xFAD7);
41 assert(f2(
[all...]
H A Dbit_xor.pass.cpp30 const F2 f2 = F2(); local

Completed in 380 milliseconds

1234567891011>>