Searched defs:g4 (Results 1 - 25 of 53) sorted by relevance

123

/external/clang/test/CodeGenCXX/
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)]);
H A Dmangle-ms-back-references.cpp39 void g4(const char* a, struct S* b, const char* c, struct S* d) { function
40 // CHECK: "\01?g4@@YAXPBDPAUS@@01@Z"
H A Dpr12251.cpp38 e4 g4(e4 *x) { function
/external/llvm/test/MC/COFF/
H A Dcross-section-relative.s21 .globl g4 # @g4
23 g4: label
/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 Dattr-alias-elf.c14 void f4() __attribute__((alias("g4")));
15 void g4() {} function
H A Dconstant-builtins.c10 double g4 = __builtin_inff(); variable
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);
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
/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/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
H A Dp6.cpp67 constexpr T3<VirtBase> g4() { return {}; } // expected-error {{not a literal type}} function in namespace:TemplateVBase
H A Dp5.cpp18 constexpr int g4() { return N::h(); } function in namespace:StdExample
28 static_assert(g4() == 5, "");
/external/clang/test/CodeGen/
H A Dregparm-struct.c31 void g4() { function
H A Dtbaa-class.cpp89 uint32_t g4(StructA *A, StructB *B, uint64_t count) { function
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 Dconst-init.c39 // CHECK: @g4 = global { double, double } { double 1.000000e+00{{[0]*}}, double 1.000000e+0{{[0]*}}1 }
40 _Complex double g4 = 1.0 + 10.0i; variable
H A Dinit.c37 // CHECK: @f4.g4 = internal constant i32 12
40 static const int g4 = 12; local
41 return g4;
H A Dtbaa.cpp87 uint32_t g4(StructA *A, StructB *B, uint64_t count) { function
/external/clang/test/SemaCXX/
H A Daddress-of-temporary.cpp33 void g4() { Z *p = AZ{}; } // expected-warning{{pointer is initialized by a temporary array}} function in namespace:PointerToArrayDecay
/external/compiler-rt/test/asan/TestCases/Linux/
H A Dscariness_score_test.cc103 int g4[100]; variable
/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/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/boringssl/src/crypto/poly1305/
H A Dpoly1305.c249 uint32_t g0, g1, g2, g3, g4; local
291 g4 = state->h4 + b - (1 << 26);
293 b = (g4 >> 31) - 1;
299 state->h4 = (state->h4 & nb) | (g4 & b);
/external/clang/test/Analysis/
H A Dstack-addr-ps.cpp23 void g4() { function

Completed in 1132 milliseconds

123