HomeSort by relevance Sort by last modified time
    Searched defs:f2 (Results 26 - 50 of 553) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
always_inline.c 17 inline int f2() __attribute__((always_inline));
18 int f2() { return 7; } function
19 int f3(void) { return f2(); }
attr-availability.c 5 // CHECK-10_4: define hidden void @f2
6 // CHECK-10_5: define hidden void @f2
7 // CHECK-10_6: define hidden void @f2
8 void f2();
9 void f2() { } function
30 f2();
bitfield-promote.c 17 long long f2(void) { function
21 // CHECK: @f2()
complex-init-list.c 15 _Complex float f2(float x, float y) { return (_Complex float){ x, y }; } function
16 // CHECK: define <2 x float> @f2
decl-in-prototype.c 11 // CHECK: define i32 @f2
12 int f2(enum {AA=7,BB} E) { function
fast-math.c 2 float f0, f1, f2; variable
8 f0 = f1 + f2;
finite-math.c 2 float f0, f1, f2; variable
8 f0 = f1 + f2;
ppc64-extend.c 7 void f2(unsigned int x) { return; } function
8 // CHECK: define void @f2(i32 zeroext %x) [[NUW]]
  /external/clang/test/CodeGenCXX/
2007-10-01-StructResize.cpp 7 unsigned int f2 : 30; member in struct:Bork
12 hdr->f2 = 927;
mangle-98.cpp 12 void f2(S3<100>) {} function
operator-new.cpp 21 void *f2(long N) { function
reinterpret-cast.cpp 8 unsigned long f2() { function
  /external/clang/test/Parser/
cxx-attributes.cpp 6 virtual void f2(const char* a, ...) function in class:c
pragma-fp-contract.c 9 void f2(void) { function
  /external/clang/test/SemaCXX/
type-dependent-exprs.cpp 32 int f2() { function
  /external/v8/test/mjsunit/
arguments-indirect.js 32 function f2(x) { function
35 g(f2);
47 f2(0,2,3);
binary-operation-overwrite.js 30 function f2() { return (1, 2) + 3; } function
34 assertTrue(f2() === f2());
break.js 40 function f2() { function
49 f2();
  /external/v8/test/mjsunit/compiler/
regress-or.js 45 function f2(x) { function
55 for (var i=0; i<10000000; i++) f2(42);
57 assertEquals(-1, f2(""));
  /external/v8/test/mjsunit/regress/
regress-1419.js 35 var f2 = function () {}; function
40 f2.bind(foo);
regress-1423.js 38 return f2(x, y);
41 // Because it's strict, f2 has an environment containing only the constants
47 function f2(x, y) { function
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/filebuf.assign/
member_swap.pass.cpp 32 std::filebuf f2; local
33 f2.swap(f);
35 assert(f2.is_open());
36 assert(f2.sgetc() == '2');
47 std::wfilebuf f2; local
48 f2.swap(f);
50 assert(f2.is_open());
51 assert(f2.sgetc() == L'2');
move_assign.pass.cpp 33 std::filebuf f2; local
34 f2 = move(f);
36 assert(f2.is_open());
37 assert(f2.sgetc() == '2');
48 std::wfilebuf f2; local
49 f2 = move(f);
51 assert(f2.is_open());
52 assert(f2.sgetc() == L'2');
nonmember_swap.pass.cpp 34 std::filebuf f2; local
35 swap(f2, f);
37 assert(f2.is_open());
38 assert(f2.sgetc() == '2');
49 std::wfilebuf f2; local
50 swap(f2, f);
52 assert(f2.is_open());
53 assert(f2.sgetc() == L'2');
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.dynamic/alloc.errors/set.new.handler/
get_new_handler.pass.cpp 16 void f2() {} function
23 std::set_new_handler(f2);
24 assert(std::get_new_handler() == f2);

Completed in 289 milliseconds

12 3 4 5 6 7 8 91011>>