/external/clang/test/CXX/over/over.over/ |
D | p1.cpp | 3 template<typename T> T f0(T); 4 int f0(int); 8 int (*f0)(int); member 13 int (*f0a)(int) = f0; in test_init_f0() 14 int (*f0b)(int) = &f0; in test_init_f0() 15 int (*f0c)(int) = (f0); in test_init_f0() 16 float (*f0d)(float) = f0; in test_init_f0() 17 float (*f0e)(float) = &f0; in test_init_f0() 18 float (*f0f)(float) = (f0); in test_init_f0() 19 int (&f0g)(int) = f0; in test_init_f0() [all …]
|
D | p4.cpp | 3 template<typename T> T f0(T); // expected-note{{candidate function}} 4 int f0(int); // expected-note{{candidate function}} 7 int (*fp0)(int) = f0; in test_f0() 8 int (*fp1)(int) = &f0; in test_f0() 9 float (*fp2)(float) = &f0; in test_f0() 13 int f0(int); // expected-note{{candidate function}} 18 int (*fp0)(int) = f0; // expected-error{{address of overloaded function 'f0' is ambiguous}} in test_f0_2() 19 float (*fp1)(float) = f0; in test_f0_2()
|
/external/clang/test/CodeGen/ |
D | bitfield-2.c | 24 int f0 : 24; member 31 return a0->f0; in f0_load() 34 return (a0->f0 = 1); in f0_store() 37 return (a0->f0 += 1); in f0_reload() 46 res ^= g0.f0; in test_0() 48 res ^= g0.f0; in test_0() 77 signed f0 : 10; member 101 res ^= g1.f0 ^ g1.f1; in test_1() 103 res ^= g1.f0 ^ g1.f1; in test_1() 125 unsigned long long f0 : 3; member [all …]
|
D | arm-arguments.c | 6 char f0(void) { in f0() function 12 struct s1 { char f0; }; member 17 struct s2 { short f0; }; member 22 struct s3 { int f0; }; member 27 struct s4 { struct s4_0 { int f0; } f0; }; member 33 struct s5 { struct { } f0; int f1; }; member 39 struct s6 { int f0[1]; }; member 44 struct s7 { struct { int : 0; } f0; }; member 50 struct s8 { struct { int : 0; } f0[1]; }; member 55 struct s9 { int f0; int : 0; }; member [all …]
|
D | bitfield-promote.c | 5 long long f0(void) { in f0() function 6 struct { unsigned f0 : 32; } x = { 18 }; in f0() member 7 return (long long) (x.f0 - (int) 22); in f0() 11 struct { unsigned f0 : 31; } x = { 18 }; in f1() member 12 return (long long) (x.f0 - (int) 22); in f1() 16 struct { unsigned f0 ; } x = { 18 }; in f2() member 17 return (long long) (x.f0 - (int) 22); in f2()
|
D | fp16-ops.c | 6 volatile float f0, f1, f2; variable 62 h1 = f0 * h2; in foo() 81 h1 = (f0 / h2); in foo() 96 h1 = (h2 + f0); in foo() 115 h1 = (h2 - f0); in foo() 131 test = (h2 < f0); in foo() 149 test = (f0 > h2); in foo() 161 test = (h2 <= f0); in foo() 179 test = (f0 >= h2); in foo() 222 h0 = f0; in foo()
|
/external/v8/test/mjsunit/compiler/ |
D | optimized-function-calls.js | 57 function f0() { function 78 return f4(f3(f2(f1(f0()),f0()),f1(f0()),f0()),f2(f1(f0()),f0()),f1(f0()),f0()) 79 + f4(f0(),f1(f0()),f2(f1(f0()),f0()),f3(f2(f1(f0()),f0()),f1(f0()),f0()));
|
/external/clang/test/CXX/expr/expr.unary/expr.delete/ |
D | p5.cpp | 9 void f0(T0 *a) { delete a; } // expected-warning {{deleting pointer to incomplete type}} in f0() function 16 void f0() { T1_A<T1_B> x; } // expected-note {{in instantiation of member function}} in f0() function 21 struct T2_B { void f0(T *a) { delete a; } }; in f0() function 22 struct T2_C { T2_B<T2_A> x; void f0(T2_A *a) { x.f0(a); } }; in f0() function 23 void f0(T2_A *a) { T2_C x; x.f0(a); } in f0() function 30 void f0(T *a) { in f0() function 37 void f0(T3_A *a) { in f0() function 38 x.f0(a); // expected-note{{in instantiation of member function 'T3_B<T3_A>::f0' requested here}} in f0() 42 void f0(T3_A *a) { T3_C x; x.f0(a); } in f0() function
|
/external/v8/test/mjsunit/ |
D | call.js | 28 function f0() { function 32 assertTrue(this === f0.call(), "1"); 34 assertTrue(this === f0.call(this), "w"); 35 assertTrue(this === f0.call(this, 1), "w"); 36 assertTrue(this === f0.call(this, 1, 2), "w"); 38 assertTrue(this === f0.call(null), "3a"); 39 assertTrue(this === f0.call(null, 1), "3b"); 40 assertTrue(this === f0.call(null, 1, 2), "3c"); 42 assertTrue(this === f0.call(void 0), "4a"); 43 assertTrue(this === f0.call(void 0, 1), "4b"); [all …]
|
D | apply.js | 28 function f0() { function 36 assertSame(this, f0.apply(), "1-0"); 38 assertSame(this, f0.apply(this), "2a"); 39 assertSame(this, f0.apply(this, new Array(1)), "2b"); 40 assertSame(this, f0.apply(this, new Array(2)), "2c"); 41 assertSame(this, f0.apply(this, new Array(4242)), "2d"); 43 assertSame(this, f0.apply(null), "3a"); 44 assertSame(this, f0.apply(null, new Array(1)), "3b"); 45 assertSame(this, f0.apply(null, new Array(2)), "3c"); 46 assertSame(this, f0.apply(this, new Array(4242)), "3d"); [all …]
|
/external/clang/test/Sema/ |
D | pragma-align-mac68k.c | 14 char f0; member 17 extern int a1_0[offsetof(struct s1, f0) == 0 ? 1 : -1]; 23 char f0; member 26 extern int a2_0[offsetof(struct s2, f0) == 0 ? 1 : -1]; 32 char f0; member 35 extern int a3_0[offsetof(struct s3, f0) == 0 ? 1 : -1]; 41 char f0; member 44 extern int a4_0[offsetof(struct s4, f0) == 0 ? 1 : -1]; 50 unsigned f0 : 9; member 71 char f0; member [all …]
|
D | pragma-pack-2.c | 9 char f0; member 16 char f0; member 24 char f0; member 29 char f0; member 38 char f0; member 43 char f0; member 52 char f0; in f() member 54 int f0; in f() member
|
/external/openssl/crypto/ |
D | ia64cpuid.S | 70 mov f127=f0 78 mov f6=f0 81 mov f7=f0 84 mov f8=f0 87 mov f9=f0 90 mov f10=f0 93 mov f11=f0 96 mov f12=f0 99 mov f13=f0 102 mov f14=f0 [all …]
|
D | sparccpuid.S | 37 ld [%o0],%f0 53 .word 0xbfa00040 !fmovd %f0,%f62 68 .word 0x83a00040 !fmovd %f0,%f32 71 fmovs %f0,%f30 75 fmovs %f0,%f28 79 fmovs %f0,%f26 83 fmovs %f0,%f24 87 fmovs %f0,%f22 91 fmovs %f0,%f20 95 fmovs %f0,%f18 [all …]
|
/external/llvm/test/CodeGen/Mips/ |
D | select.ll | 6 define i32 @sel1(i32 %s, i32 %f0, i32 %f1) nounwind readnone { 10 %cond = select i1 %tobool, i32 %f1, i32 %f0 14 define float @sel2(i32 %s, float %f0, float %f1) nounwind readnone { 18 %cond = select i1 %tobool, float %f0, float %f1 22 define double @sel2_1(i32 %s, double %f0, double %f1) nounwind readnone { 26 %cond = select i1 %tobool, double %f0, double %f1 30 define float @sel3(float %f0, float %f1, float %f2, float %f3) nounwind readnone { 35 %cond = select i1 %cmp, float %f0, float %f1 39 define float @sel4(float %f0, float %f1, float %f2, float %f3) nounwind readnone { 44 %cond = select i1 %cmp, float %f0, float %f1 [all …]
|
/external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct.default/ |
D | 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}} in test_f0_inner_scope() 20 f0(); // okay in test_f0_outer_scope() 23 void f0(int i = 1, // expected-error{{redefinition of default argument}}
|
/external/clang/test/SemaTemplate/ |
D | explicit-instantiation.cpp | 5 template typedef void f0; // expected-error{{explicit instantiation of typedef}} 14 T f0(T x) { in f0() function 17 T* f0(T*, T*) { return T(); } in f0() function 20 T f0(T, U) { return T(); } in f0() function 34 template int X0<int>::f0(int); 35 template int* X0<int>::f0(int*, int*); 36 template int X0<int>::f0(int, float); 38 template int X0<int>::f0(int) const; // expected-error{{does not refer}} 39 template int* X0<int>::f0(int*, float*); // expected-error{{does not refer}} 44 template MemPtr X0<MemPtr>::f0(MemPtr); // expected-note{{requested here}} [all …]
|
D | function-template-specialization.cpp | 3 template<int N> void f0(int (&array)[N]); 6 template<> void f0(int (&array)[1]); 10 f0(iarr1); in test_f0() 14 template<> void f0(char (&array)[1]); // expected-error{{no function template matches}} 15 template<> void f0<2>(int (&array)[2]) { } in f0() function 39 template <typename T> bool f0(T &t1); 40 template <> bool f0<float>(float &t1); 42 template <> bool PR5833::f0<float>(float &t1) {} in f0() function in PR5833
|
D | member-function-template.cpp | 4 template<typename T> T& f0(T); 7 int &ir = f0(i); in g0() 8 double &dr = f0(d); in g0() 22 int &ir = x.f0(i); in test_X_f0() 23 float &fr = x.f0(f); in test_X_f0() 33 int& (X::*pm1)(int) = &X::f0; in test_X_f0_address() 34 float& (X::*pm2)(float) = &X::f0; in test_X_f0_address() 44 int &ir1 = x.f0<int>(i); in test_X_f0_explicit() 45 int &ir2 = x.f0<>(i); in test_X_f0_explicit() 46 long &il1 = x.f0<long>(i); in test_X_f0_explicit()
|
/external/clang/test/CXX/temp/temp.decls/temp.fct/temp.over.link/ |
D | p4.cpp | 4 template<typename T> void f0(T) { } in f0() function 5 template<typename T, typename U> void f0(T) { } in f0() function 6 template<typename T, typename U> void f0(U) { } in f0() function 7 void f0(); 8 template<typename T> void f0(T*); 9 void f0(int); 10 template<int I> void f0(); 11 template<typename T> void f0();
|
D | p4-neg.cpp | 3 template<typename T> void f0(T) { } // expected-note{{previous}} in f0() function 4 template<class U> void f0(U) { } // expected-error{{redefinition}} in f0() function 6 template<int I> void f0() { } // expected-note{{previous}} in f0() function 7 template<int> void f0() { } // expected-error{{redefinition}} in f0() function 12 void f0() { } // expected-note{{previous}} in f0() function 14 void f0() { } // expected-error{{redefinition}} in f0() function 20 typename MetaFun<T*>::type f0(const T&) { while (1) {} } // expected-note{{previous}} in f0() function 22 typename MetaFun<U*>::type f0(const U&) { while (1) {} } // expected-error{{redefinition}} in f0() function
|
/external/clang/test/CXX/temp/temp.decls/temp.variadic/ |
D | deduction.cpp | 8 void f0(X<sizeof...(Types), Types&...>) { } in f0() function 11 template void f0(X<0>); 12 template void f0(X<1, int&>); 13 template void f0(X<2, int&, short&>); 16 template void f0<float>(X<1, float&>); 17 template void f0<double>(X<1, double&>); 20 template void f0<char, unsigned char>(X<2, char&, unsigned char&>); 21 template void f0<signed char, char>(X<2, signed char&, char&>);
|
/external/clang/test/SemaCXX/ |
D | attr-noreturn.cpp | 21 void f0() __attribute__((__noreturn__)); 23 void f2() { f1(f0); } in f2() 27 void (*fp)() = f0; in test_f0a() 28 void (*fp1)() __attribute__((noreturn)) = f0; in test_f0a() 32 void f0(int) __attribute__((__noreturn__)); 35 void (*fp)() = f0; in test_f0b() 36 void (*fp1)() __attribute__((noreturn)) = f0; in test_f0b() 45 f3(f0); // okay in test_f3()
|
/external/oprofile/module/ia64/ |
D | oprofile_stubs.S | 95 stf.spill [sp]=f0 108 mov r4=0; mov f2=f0; mov b1=r0 109 mov r5=0; mov f3=f0; mov b2=r0 110 mov r6=0; mov f4=f0; mov b3=r0 111 mov r7=0; mov f5=f0; mov b4=r0 112 mov ar.unat=0; mov f10=f0; mov b5=r0 113 ldf.fill f11=[sp]; ldf.fill f12=[sp]; mov f13=f0 114 ldf.fill f14=[sp]; ldf.fill f15=[sp]; mov f16=f0 115 ldf.fill f17=[sp]; ldf.fill f18=[sp]; mov f19=f0 116 ldf.fill f20=[sp]; ldf.fill f21=[sp]; mov f22=f0 [all …]
|
/external/openssl/crypto/aes/asm/ |
D | aes-sparcv9.pl | 227 fmovs %f0,%f0 243 fmovs %f0,%f0 259 fmovs %f0,%f0 268 fmovs %f0,%f0 280 fmovs %f0,%f0 309 fmovs %f0,%f0 325 fmovs %f0,%f0 341 fmovs %f0,%f0 358 fmovs %f0,%f0 448 fmovs %f0,%f0 [all …]
|