HomeSort by relevance Sort by last modified time
    Searched full:union (Results 1 - 25 of 11132) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Modules/Inputs/merge-name-for-linkage/
a.h 1 typedef union {} pthread_mutex_t;
b.h 1 typedef union {} pthread_mutex_t;
  /external/clang/test/CodeGenCXX/
empty-union.cpp 3 union sigval { };
4 union sigval Test1;
6 union NonPODUnion { ~NonPODUnion(); };
7 union NonPODUnion Test2;
  /device/linaro/bootloader/edk2/StdLib/Include/Ipf/machine/
_regset.h 48 union _ia64_fpreg {
80 union _ia64_fpreg fr32;
81 union _ia64_fpreg fr33;
82 union _ia64_fpreg fr34;
83 union _ia64_fpreg fr35;
84 union _ia64_fpreg fr36;
85 union _ia64_fpreg fr37;
86 union _ia64_fpreg fr38;
87 union _ia64_fpreg fr39;
88 union _ia64_fpreg fr40;
    [all...]
  /external/clang/test/CodeGen/
2003-08-23-LocalUnionTest.c 5 union foo { int X; };
7 int test(union foo* F) {
9 union foo { float X; } A;
2002-07-30-UnionTest.c 3 union X;
5 union F {};
6 union Q { union Q *X; };
7 union X {
15 union X foo(union X A) {
2002-07-30-SubregSetAssertion.c 4 union X {
8 union X foo() {
9 union X A;
2009-04-28-UnionArrayCrash.c 3 union U {
8 union U arr[] = { { .I = 4 }, { .F = 123.} };
9 union U *P = &arr[0];
2005-05-10-GlobalUnionInit.c 3 union A { // { uint }
4 union B { double *C; } D;
union.c 3 union u_tag {
12 float get_b(union u_tag *my_u) {
17 union{
24 typedef union { int i; int *j; } value;
31 union S65 { enum E9 a; } ; union S65 s65;
34 typedef union{
39 union RR {_Bool a : 1;} RRU;
43 typedef union T0 { unsigned int : 0; } T0;
46 union { int large_bitfield: 31; char c } u2
    [all...]
2009-03-08-ZeroEltStructCrash.c 4 struct Union {
5 union {
9 static inline void Foo(struct Union *u) {
12 static void Bar(struct Union *u) {
union-init2.c 4 // CHECK: bitcast ({ %union.x*, [4 x i8] }* @r to %union.x*), [4 x i8] undef
5 union x {long long b;union x* a;} r = {.a = &r};
9 union z {
13 union z y = {};
  /external/clang/test/Sema/
cast-to-union.c 3 union u { int i; unsigned : 3; };
4 void f(union u);
7 f((union u)x); // expected-warning {{cast to union type is a GNU extension}}
8 f((union u)&x); // expected-error {{cast to union type from type 'int *' not present in union}}
9 f((union u)2U); // expected-error {{cast to union type from type 'unsigned int' not present in union}}
    [all...]
  /frameworks/compile/slang/tests/F_union/
union.rs 4 union u {
9 static union u2 {
16 union iu {
  /external/iptables/include/linux/netfilter/
nf_nat.h 20 union nf_conntrack_man_proto min;
21 union nf_conntrack_man_proto max;
31 union nf_inet_addr min_addr;
32 union nf_inet_addr max_addr;
33 union nf_conntrack_man_proto min_proto;
34 union nf_conntrack_man_proto max_proto;
xt_connlimit.h 14 union {
15 union nf_inet_addr mask;
16 union {
22 union {
xt_HMARK.h 25 union hmark_ports {
39 union nf_inet_addr src_mask;
40 union nf_inet_addr dst_mask;
41 union hmark_ports port_mask;
42 union hmark_ports port_set;
  /external/clang/test/CXX/class/class.union/class.union.anon/
p4.cpp 3 union U {
5 union {};
6 union {
8 int y = 1; // expected-error {{initializing multiple members of union}}
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/netfilter/
xt_connlimit.h 15 union {
16 union nf_inet_addr mask;
17 union {
23 union {
  /external/kernel-headers/original/uapi/linux/netfilter/
xt_policy.h 33 union xt_policy_addr {
40 union {
43 union nf_inet_addr saddr;
44 union nf_inet_addr smask;
45 union nf_inet_addr daddr;
46 union nf_inet_addr dmask;
50 union xt_policy_addr saddr;
51 union xt_policy_addr smask;
52 union xt_policy_addr daddr;
53 union xt_policy_addr dmask
    [all...]
  /external/swiftshader/third_party/LLVM/test/Linker/
2011-08-22-ResolveAlias.ll 4 %union.pthread_attr_t = type { [56 x i8] }
5 %union.pthread_mutex_t = type { [40 x i8] }
7 %union.pthread_mutexattr_t = type { [4 x i8] }
8 %union.pthread_cond_t = type { [48 x i8] }
13 @_ZL22__gthrw_pthread_createPmPK14pthread_attr_tPFPvS3_ES3_ = alias weak i32 (i64*, %union.pthread_attr_t*, i8* (i8*)*, i8*)* @pthread_create
20 @_ZL26__gthrw_pthread_mutex_lockP15pthread_mutex_t = alias weak i32 (%union.pthread_mutex_t*)* @pthread_mutex_lock
21 @_ZL29__gthrw_pthread_mutex_trylockP15pthread_mutex_t = alias weak i32 (%union.pthread_mutex_t*)* @pthread_mutex_trylock
22 @_ZL31__gthrw_pthread_mutex_timedlockP15pthread_mutex_tPK8timespec = alias weak i32 (%union.pthread_mutex_t*, %struct.timespec*)* @pthread_mutex_timedlock
23 @_ZL28__gthrw_pthread_mutex_unlockP15pthread_mutex_t = alias weak i32 (%union.pthread_mutex_t*)* @pthread_mutex_unlock
24 @_ZL26__gthrw_pthread_mutex_initP15pthread_mutex_tPK19pthread_mutexattr_t = alias weak i32 (%union.pthread_mutex_t*, %union.pthread_mutexattr_t*)* @pthread_mutex_ini
    [all...]
2011-08-22-ResolveAlias2.ll 6 %union.pthread_attr_t = type { [56 x i8] }
7 %union.pthread_mutex_t = type { [40 x i8] }
9 %union.pthread_mutexattr_t = type { [4 x i8] }
10 %union.pthread_cond_t = type { [48 x i8] }
16 @_ZL22__gthrw_pthread_createPmPK14pthread_attr_tPFPvS3_ES3_ = alias weak i32 (i64*, %union.pthread_attr_t*, i8* (i8*)*, i8*)* @pthread_create
23 @_ZL26__gthrw_pthread_mutex_lockP15pthread_mutex_t = alias weak i32 (%union.pthread_mutex_t*)* @pthread_mutex_lock
24 @_ZL29__gthrw_pthread_mutex_trylockP15pthread_mutex_t = alias weak i32 (%union.pthread_mutex_t*)* @pthread_mutex_trylock
25 @_ZL31__gthrw_pthread_mutex_timedlockP15pthread_mutex_tPK8timespec = alias weak i32 (%union.pthread_mutex_t*, %struct.timespec*)* @pthread_mutex_timedlock
26 @_ZL28__gthrw_pthread_mutex_unlockP15pthread_mutex_t = alias weak i32 (%union.pthread_mutex_t*)* @pthread_mutex_unlock
27 @_ZL26__gthrw_pthread_mutex_initP15pthread_mutex_tPK19pthread_mutexattr_t = alias weak i32 (%union.pthread_mutex_t*, %union.pthread_mutexattr_t*)* @pthread_mutex_ini
    [all...]
  /external/libunwind/tests/
ppc64-test-altivec-utils.c 4 union si_overlay
16 ((union si_overlay *) &v)->ints[0] = count++;
17 ((union si_overlay *) &v)->ints[1] = count++;
18 ((union si_overlay *) &v)->ints[2] = count++;
19 ((union si_overlay *) &v)->ints[3] = count++;
27 ((union si_overlay *) &v)->ints[0],
28 ((union si_overlay *) &v)->ints[1],
29 ((union si_overlay *) &v)->ints[2],
30 ((union si_overlay *) &v)->ints[3]);
  /external/llvm/test/CodeGen/Thumb2/
ldr-str-imm12.ll 7 %2 = type { %union.rec* }
10 %struct.LIST = type { %union.rec*, %union.rec* }
11 %struct.STYLE = type { %union.anon, %union.anon, i16, i16, i32 }
12 %struct.head_type = type { [2 x %struct.LIST], %union.FIRST_UNION, %union.SECOND_UNION, %union.THIRD_UNION, %union.FOURTH_UNION, %union.rec*, %2, %union.rec*, %union.rec*, %union.rec*, %union.rec*, %union.rec*, %union.rec*, %union.rec (…)
    [all...]
  /external/swiftshader/third_party/LLVM/test/CodeGen/Thumb2/
ldr-str-imm12.ll 7 %2 = type { %union.rec* }
10 %struct.LIST = type { %union.rec*, %union.rec* }
11 %struct.STYLE = type { %union.anon, %union.anon, i16, i16, i32 }
12 %struct.head_type = type { [2 x %struct.LIST], %union.FIRST_UNION, %union.SECOND_UNION, %union.THIRD_UNION, %union.FOURTH_UNION, %union.rec*, %2, %union.rec*, %union.rec*, %union.rec*, %union.rec*, %union.rec*, %union.rec*, %union.rec (…)
    [all...]

Completed in 1131 milliseconds

1 2 3 4 5 6 7 8 91011>>