Searched refs:g4 (Results 1 - 25 of 79) sorted by relevance

1234

/external/clang/test/CodeGenCXX/
H A Ddefault-arguments.cpp68 void g4(int a, int b = 7);
70 void g4(int a, int b = 5);
72 void g4(int a = 5, int b);
75 g4();
H A Dmangle-literal-suffix.cpp8 template <class T> void g4(char (&buffer)[sizeof(T() + 5.0L)]) {} function
9 template void g4<int>(char (&)[sizeof(long double)]);
/external/mesa3d/src/mesa/sparc/
H A Dsparc_clip.S108 ld [%i0 + 0x08], %g4 ! LSU Group
112 addcc %g4, %g4, %g4 ! IEU1 Group
114 subcc %g5, %g4, %g0 ! IEU1 Group
115 ld [%i0 + 0x04], %g4 ! LSU Group
117 addcc %g4, %g4, %g4 ! IEU1 Group
119 subcc %g5, %g4,
[all...]
/external/clang/test/Sema/
H A Dalign-x86.c22 struct __attribute__((packed)) {unsigned int a;} g4; variable in typeref:struct:__anon3090
23 short chk1[__alignof__(g4) == 1 ? 1 : -1];
24 short chk2[__alignof__(g4.a) == 1 ? 1 : -1];
H A Dprivate-extern.c16 extern int g4; // expected-note{{previous declaration}}
17 static int g4; // expected-error{{static declaration of 'g4' follows non-static declaration}} variable
H A Dattr-weak.c7 int __attribute__((weak_import)) g4(void);
H A Dconstant-builtins.c10 double g4 = __builtin_inff(); variable
H A Dno-documentation-warn-tagdecl-specifier.c65 enum e4* g4(void);
H A Dbitfield-layout.c153 struct __attribute__((packed)) g4 { struct
159 CHECK_SIZE(struct, g4, 4);
160 CHECK_ALIGN(struct, g4, 2);
162 CHECK_OFFSET(struct, g4, c, 2);
164 CHECK_OFFSET(struct, g4, c, 3);
/external/llvm/test/MC/COFF/
H A Dcross-section-relative.s21 .globl g4 # @g4
23 g4: label
/external/clang/test/SemaCXX/
H A Dfunction-pointer-arguments.cpp13 int(*g4)(int, int) = f2;
28 int (*g4)(int, char) = f1;
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
H A Dp13.cpp8 void g4(int = ([=]{ return 0; })());
/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/
H A Dp5-cxx03-extra-copy.cpp52 void g4(const X4<int>&);
59 g4(X4<int>());
H A Dp5-cxx0x-no-extra-copy.cpp43 void g4(const X4<int>&);
49 g4(X4<int>());
/external/libcxx/test/libcxx/utilities/function.objects/func.require/
H A Dinvoke.pass.cpp31 Array<char, 4>::type& g4() const &&;
43 static_assert(sizeof(std::__invoke(&Type::g4, std::declval<Type const&&>())) == 4, "");
/external/ltp/testcases/network/multicast/mc_member/
H A Dmc_member_test.c112 unsigned g1, g2, g3, g4; local
121 if (sscanf(buf, "%u.%u.%u.%u", &g1, &g2, &g3, &g4) != 4) {
127 htonl((g1 << 24) | (g2 << 16) | (g3 << 8) | g4);
147 unsigned g1, g2, g3, g4; local
156 if (sscanf(buf, "%u.%u.%u.%u", &g1, &g2, &g3, &g4) != 4) {
162 htonl((g1 << 24) | (g2 << 16) | (g3 << 8) | g4);
/external/clang/test/CodeGen/
H A Dbitfield-2.c181 struct s4 g4 = { 0xdeadbeef, 0xdeadbeef }; variable in typeref:struct:s4
197 struct s4 g4 = { 0xdeadbeef, 0xdeadbeef }; local
199 res ^= g4.f0 ^ g4.f1;
200 res ^= f4_load(&g4) ^ f4_store(&g4) ^ f4_reload(&g4);
201 res ^= g4.f0 ^ g4.f1;
H A Dinit.c37 // CHECK: @f4.g4 = internal constant i32 12
40 static const int g4 = 12; local
41 return g4;
H A Dpacked-arrays.c154 extern double g4[5] __attribute__((aligned(16)));
156 return g4[1];
/external/clang/test/CXX/except/except.spec/
H A Dp5-virtual.cpp51 virtual void g4() throw(B1); // expected-note {{overridden virtual function is here}}
87 virtual void g4() throw(A); // expected-error {{exception specification of overriding function is more lax}}
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dtest_eu_compact.c147 struct brw_reg g4 = brw_vec8_grf(4, 0); local
149 brw_ADD(p, g0, g2, g4);
184 struct brw_reg g4 = brw_vec8_grf(4, 0); local
186 brw_ADD(p, m6, g2, g4);
194 struct brw_reg g4 = brw_vec1_grf(4, 0); local
196 brw_ADD(p, g0, g2, g4);
204 struct brw_reg g4 = brw_vec8_grf(4, 0); local
206 brw_PLN(p, m6, interp, g4);
/external/ltp/testcases/network/multicast/mc_commo/
H A Dmc_recv.c28 unsigned i1, i2, i3, i4, g1, g2, g3, g4; local
41 if ((n = sscanf(argv[1], "%u.%u.%u.%u", &g1, &g2, &g3, &g4)) != 4) {
46 htonl((g1 << 24) | (g2 << 16) | (g3 << 8) | g4);
H A Dmc_send.c23 unsigned i1, i2, i3, i4, g1, g2, g3, g4; local
42 if ((n = sscanf(argv[1], "%u.%u.%u.%u", &g1, &g2, &g3, &g4)) != 4) {
47 htonl((g1 << 24) | (g2 << 16) | (g3 << 8) | g4);
/external/clang/test/SemaTemplate/
H A Dcurrent-instantiation.cpp51 void g4(T&); // expected-note{{previous}}
52 void g4(typename X0::U_type&);
53 void g4(typename X1::my_T_type&); // expected-error{{redecl}}
124 void g4(T&); // expected-note{{previous}}
125 void g4(typename X0::U_type&);
126 void g4(typename X2::my_T_type&); // expected-error{{redecl}}
/external/clang/test/CXX/expr/expr.prim/expr.prim.general/
H A Dp3-0x.cpp36 auto g4() const noexcept(noexcept(f(((this))->ptr))) -> decltype(f(this->ptr));
47 float &fr2 = ci.g4();
55 static_assert(noexcept(ci.g4()), "exception-specification failure");

Completed in 610 milliseconds

1234