/external/clang/test/SemaCXX/ |
D | warn-unused-result.cpp | 10 S &g3() __attribute__((warn_unused_result)); 16 g3(); // expected-warning {{ignoring return value}} in test() 21 (void)g3(); in test() 27 g3().t(); in test() 32 S &s3 = g3(); in test()
|
D | addr-of-overloaded-function.cpp | 26 template<typename T> T g3(T); 27 int g3(int); 28 int g3(char); 33 g(g3); in g_test()
|
/external/clang/test/CodeGen/ |
D | bitfield-2.c | 144 struct s3 g3 = { 0xdeadbeef, 0xdeadbeef }; variable 163 struct s3 g3 = { 0xdeadbeef, 0xdeadbeef }; in test_3() local 165 res ^= g3.f0 ^ g3.f1; in test_3() 166 res ^= f3_load(&g3) ^ f3_store(&g3) ^ f3_reload(&g3); in test_3() 167 res ^= g3.f0 ^ g3.f1; in test_3()
|
/external/sonivox/arm-wt-22k/vectors/ |
D | abba.imy | 9 …g3*5#f4*5#f1*5#c1*4b2*5d1*5#c4*4b3*4a4*4b3.*5#c3*5#c2*4b2*4a1.r2*5#c2*4b3*4b1r4r5*5#c2*4b3*4b2*5#c…
|
/external/jmonkeyengine/engine/src/test/jme3test/model/shape/ |
D | TestBillboard.java | 61 Geometry g3 = new Geometry("Quad2", q2); in simpleInitApp() local 64 g3.setMaterial(mat2); in simpleInitApp() 65 g3.setLocalTranslation(.5f, .5f, .01f); in simpleInitApp() 77 bb.attachChild(g3); in simpleInitApp()
|
/external/valgrind/main/tests/ |
D | os_test.c | 32 int a1, a2, a3, g1, g2, g3; // 'a' = actual; 'g' = given in matches_version() local 42 if (sscanf(min_version, "%d.%d.%d", &g1, &g2, &g3) != 3) return False; in matches_version() 51 if (a3 >= g3) return True; in matches_version()
|
/external/clang/test/SemaTemplate/ |
D | current-instantiation.cpp | 47 void g3(T&); // expected-note{{previous}} 48 void g3(typename X0::U_type&); 49 void g3(typename ::X0<T_type, U_type>::T_type&); // expected-error{{redecl}} 120 void g3(T&); // expected-note{{previous}} 121 void g3(typename X0::U_type&); 122 void g3(typename ::X0<T_type*, U_type*>::T_type&); // expected-error{{redecl}}
|
/external/llvm/test/MC/ELF/ |
D | comdat.s | 85 .section .baz,"axG",@progbits,g3,comdat 86 .long g3
|
/external/openssl/crypto/bn/asm/ |
D | sparcv8.S | 61 ld [%o1+4],%g3 72 umul %o3,%g3,%g3 77 addcc %o4,%g3,%o4 82 ld [%o1+12],%g3 93 umul %o3,%g3,%g3 98 addcc %o4,%g3,%o4 173 ld [%o1+4],%g3 181 umul %o3,%g3,%g3 182 addcc %g3,%o5,%g3 186 st %g3,[%o0+4] [all …]
|
D | sparcv8plus.S | 150 .register %g3,#scratch 155 .register %g3,#scratch 195 lduw [%o1+4],%g3 205 mulx %o3,%g3,%g3 208 add %o4,%g3,%o4 213 lduw [%o1+12],%g3 222 mulx %o3,%g3,%g3 225 add %o4,%g3,%o4 296 lduw [%o1+4],%g3 304 mulx %o3,%g3,%g3 [all …]
|
/external/llvm/test/Transforms/Inline/ |
D | byval.ll | 65 declare void @g3(%struct.ss* %p) 68 call void @g3(%struct.ss* %b) ;; Could make alignment assumptions! 81 ; CHECK: call void @g3(%struct.ss* %S1) 91 call void @g3(%struct.ss* %b) 103 ; CHECK: call void @g3
|
/external/v8/test/mjsunit/compiler/ |
D | simple-global-access.js | 31 var g3 = 44; variable 35 function f2() { this.x = g1; this.y = g2; this.z = g3; }
|
/external/llvm/test/Transforms/InstCombine/ |
D | odr-linkage.ll | 5 @g3 = weak_odr constant i32 3 11 %C = load i32* @g3
|
/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/ |
D | p5-cxx0x-no-extra-copy.cpp | 42 void g3(const X3&); 48 g3(X3()); in test()
|
D | p5-cxx03-extra-copy.cpp | 51 void g3(const X3&); 58 g3(X3()); // expected-warning{{no viable constructor copying parameter of type 'X3'}} in test()
|
/external/clang/test/Sema/ |
D | private-extern.c | 12 int g3; // expected-note{{previous definition}} variable 13 static int g3; // expected-error{{static declaration of 'g3' follows non-static declaration}} variable
|
D | align-x86.c | 17 _Complex double g3; variable 18 short chk1[__alignof__(g3) == 8 ? 1 : -1];
|
D | function-redecl.c | 45 extern void g3(int); // expected-note{{previous declaration is here}} 46 static void g3(int x) { } // expected-error{{static declaration of 'g3' follows non-static declarat… in g3() function
|
/external/llvm/test/CodeGen/Mips/ |
D | vector-load-store.ll | 5 @g3 = common global <4 x i8> zeroinitializer, align 4 23 %0 = load <4 x i8>* @g3, align 4
|
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/ |
D | p5.cpp | 10 constexpr int g3(int n) { return f(n*0); } in g3() function 24 static_assert(g3(0) == 1, ""); 25 static_assert(g3(1) == 1, "");
|
/external/clang/test/CXX/except/except.spec/ |
D | p5-virtual.cpp | 50 virtual void g3() throw(A); // expected-note {{overridden virtual function is here}} 86 …virtual void g3() throw(D); // expected-error {{exception specification of overriding function is …
|
/external/llvm/test/CodeGen/XCore/ |
D | scavenging.ll | 6 @g3 = external global i32 ; <i32*> [#uses=2] 24 %5 = load volatile i32* @g3, align 4 ; <i32> [#uses=1] 43 store volatile i32 %5, i32* @g3, align 4
|
/external/llvm/test/Analysis/BranchProbabilityInfo/ |
D | loop.ll | 6 declare void @g3() 30 call void @g3() 71 call void @g3() 107 call void @g3() 143 call void @g3() 187 call void @g3() 231 call void @g3() 283 call void @g3() 355 call void @g3()
|
/external/v8/test/mjsunit/regress/ |
D | regress-1229.js | 77 function g3(z, y, x) { function 121 invoke(g3, [4, 3, 2]);
|
/external/v8/test/mjsunit/ |
D | debug-evaluate-locals-optimized.js | 124 case 1: assertEquals(g3, frame.func().value()); break; 179 function g3(i, x1, y1) { function 188 g3(i - 1, a2, b2);
|