HomeSort by relevance Sort by last modified time
    Searched refs:f0 (Results 26 - 50 of 474) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/clang/test/Frontend/
diagnostics-option-names.c 4 int f0(int, unsigned);
5 int f0(int x, unsigned y) { function
warning-mapping-1.c 5 int f0(int x, unsigned y) { function
warning-mapping-4.c 5 int f0(int x, unsigned y) { function
  /external/clang/test/CodeGen/
transparent-union.c 4 // FIXME: Note that we don't currently get the ABI right here. f0() should be
5 // f0(i8*).
8 void *f0; member in union:__anon6410
11 void f0(transp_t0 obj);
14 // CHECK: call void @f0(%union.transp_t0* byval align 4 %{{.*}})
18 void (*f0p)(void *) = f0;
19 f0(a0);
24 f0((transp_t0) { a0 });
2008-07-21-mixed-var-fn-decl.c 3 int g0, f0();
2008-08-04-void-pointer-arithmetic.c 4 int f0(void *a, void *b) { function
2008-08-19-cast-of-typedef.c 5 T f0; member in struct:s
9 bar((long) x->f0);
PR2001-bitfield-reload.c 8 int f0 : 2; member in struct:__anon6302
10 return (x.f0 = i);
PR3613-static-decl.c 10 static int f0(void) { function
16 void *g1 = f0;
  /external/clang/test/CodeGenCXX/
mangle-address-space.cpp 4 void f0(char *p) { } function
6 void f0(char __attribute__((address_space(1))) *p) { } function
12 void f0(OpaqueTypePtr) { } function
aarch64-arguments.cpp 5 void f0(s0 a) {} function
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.partial/
p9-0x.cpp 4 template<typename T> int &f0(T&);
5 template<typename T> float &f0(T&&);
9 int &ir0 = f0(i);
10 float &fr0 = f0(5);
  /external/clang/test/Parser/
cxx-in-c.c 4 void f0(int x) : {}; // expected-error{{expected function body after function declarator}} function
  /external/llvm/test/MC/MachO/
section-flags.s 13 f0: label
  /external/clang/test/CXX/temp/temp.decls/temp.fct/temp.over.link/
p4-neg.cpp 3 template<typename T> void f0(T) { } // expected-note{{previous}} function
4 template<class U> void f0(U) { } // expected-error{{redefinition}} function
6 template<int I> void f0() { } // expected-note{{previous}} function
7 template<int> void f0() { } // expected-error{{redefinition}} function
12 void f0() { } // expected-note{{previous}} function
14 void f0() { } // expected-error{{redefinition}} function
20 typename MetaFun<T*>::type f0(const T&) { while (1) {} } // expected-note{{previous}} function
22 typename MetaFun<U*>::type f0(const U&) { while (1) {} } // expected-error{{redefinition}} function
26 // template<int I> void f0(A<I>) { } // Xpected-note{{previous}}
27 // template<int J> void f0(A<J>) { } // Xpected-error{{redefinition}
    [all...]
  /external/clang/test/SemaCXX/
type-formatting.cpp 7 void f0() { function
10 template void f0<X1>(); // expected-note{{instantiation of}}
address-space-references.cpp 6 void f0(int_1 &); // expected-note{{candidate function not viable: 1st argument ('int') is in address space 0, but parameter must be in address space 1}} \
8 void f0(const int_1 &); // expected-note{{candidate function not viable: 1st argument ('int') is in address space 0, but parameter must be in address space 1}} \
16 f0(i); // expected-error{{no matching function for call to 'f0'}}
17 f0(i1);
18 f0(i2); // expected-error{{no matching function for call to 'f0'}}
  /ndk/sources/cxx-stl/llvm-libc++/test/atomics/atomics.flag/
copy_ctor.fail.cpp 21 std::atomic_flag f0; local
22 std::atomic_flag f(f0);
  /external/valgrind/main/none/tests/mips32/
vfp.c 46 // ldc1 $f0, 0($t1)
67 // lwc1 $f0, 0($t1)
86 // lwxc1 $f0, $a3($v0)
103 // ldxc1 $f0, $a3($v0)
123 // sdc1 $f0, 0($t0)
130 "ldc1 $f0, "#offset"($t1)\n\t" \
131 "sdc1 $f0, "#offset"($t0) \n\t" \
137 printf("sdc1 $f0, 0($t0) :: out: 0x%x\n", \
141 // sdxc1 $f0, $t2($t0)
150 "ldc1 $f0, "#offset"($t1)\n\t"
    [all...]
  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct.default/
p4.cpp 3 void f0(int i, int j, int k = 3);
4 void f0(int i, int j, int k);
5 void f0(int i, int j = 2, int k);
6 void f0(int i, int j, int k);
7 void f0(int i = 1, // expected-note{{previous definition}}
9 void f0(int i, int j, int k);
12 void f0(int, int, int); // expected-note{{candidate}}
15 f0(); // expected-error{{no matching}}
20 f0(); // okay
23 void f0(int i = 1, // expected-error{{redefinition of default argument}
    [all...]
  /external/clang/test/CXX/expr/expr.unary/expr.delete/
p5.cpp 9 void f0(T0 *a) { delete a; } // expected-warning {{deleting pointer to incomplete type}} function
16 void f0() { T1_A<T1_B> x; } // expected-note {{in instantiation of member function}} function
18 // This case depends on when we check T2_C::f0.
21 struct T2_B { void f0(T *a) { delete a; } }; function in struct:T2_B
22 struct T2_C { T2_B<T2_A> x; void f0(T2_A *a) { x.f0(a); } }; function in struct:T2_C
23 void f0(T2_A *a) { T2_C x; x.f0(a); } function
30 void f0(T *a) { function in struct:T3_B
37 void f0(T3_A *a) { function in struct:T3_C
42 void f0(T3_A *a) { T3_C x; x.f0(a); } function
    [all...]
  /external/clang/test/CXX/expr/
p8.cpp 9 void f0(int);
15 f0(a0);
16 f0(a1);
  /external/clang/test/Modules/Inputs/
module_private_right.h 1 __module_private__ double &f0(double);
2 __module_private__ double &f0(double);
7 double &dr = f0(hidden_var);
  /external/clang/test/ASTMerge/Inputs/
function1.c 1 void f0(int);
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
deduction.cpp 9 void f0(X<sizeof...(Types), Types&...>) { } function in namespace:DeductionForInstantiation
12 template void f0(X<0>);
13 template void f0(X<1, int&>);
14 template void f0(X<2, int&, short&>);
17 template void f0<float>(X<1, float&>);
18 template void f0<double>(X<1, double&>);
21 template void f0<char, unsigned char>(X<2, char&, unsigned char&>);
22 template void f0<signed char, char>(X<2, signed char&, char&>);
25 // template void f0<short, int>(X<3, short&, int&, long&>);

Completed in 651 milliseconds

12 3 4 5 6 7 8 91011>>