Searched
full:union (Results
476 -
500 of
11132) sorted by null
<<11121314151617181920>>
/external/tpm2/generator/ |
structure_generator_test.py | 96 union = structure_generator.Union('TPMU_SYM_MODE') 97 union.AddField(structure_generator.Field('UINT16', 'aes', None)) 98 union.AddField(structure_generator.Field('UINT16', 'SM4', None)) 102 'TPMU_SYM_MODE': union 115 union = structure_generator.Union('TPMU_SYM_MODE') 116 union.AddField(structure_generator.Field('UINT16', 'aes', None)) 117 union.AddField(structure_generator.Field('UINT16', 'SM4', None)) 121 union.OutputMarshalImpl(out_file, marshalled_types, typemap [all...] |
/bionic/libc/kernel/uapi/linux/caif/ |
caif_socket.h | 58 union { 65 union {
|
/bionic/libc/kernel/uapi/linux/ |
if_arcnet.h | 60 union { 73 union {
|
/bionic/libc/kernel/uapi/linux/netfilter_bridge/ |
ebt_ip6.h | 41 union { 45 union {
|
/bionic/libc/kernel/uapi/mtd/ |
inftl-user.h | 51 union inftl_uci { 58 union inftl_uci u;
|
nftl-user.h | 43 union nftl_uci { 50 union nftl_uci u;
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/ |
lstring.h | 15 #define sizestring(s) (sizeof(union TString)+((s)->len+1)*sizeof(char)) 17 #define sizeudata(u) (sizeof(union Udata)+(u)->len)
|
/device/linaro/bootloader/edk2/MdePkg/Include/IndustryStandard/ |
PciExpress30.h | 27 typedef union {
36 typedef union {
|
/device/linaro/bootloader/edk2/NetworkPkg/Application/IpsecConfig/ |
Indexer.h | 35 typedef union {
45 @param[in, out] Indexer The pointer to the POLICY_ENTRY_INDEXER union.
|
Match.h | 24 @param[in] Selector The pointer to the EFI_IPSEC_CONFIG_SELECTOR union.
26 @param[in] Indexer The pointer to the POLICY_ENTRY_INDEXER union.
|
/external/capstone/bindings/java/capstone/ |
Mips.java | 7 import com.sun.jna.Union; 26 public static class OpValue extends Union {
|
Sparc.java | 7 import com.sun.jna.Union; 27 public static class OpValue extends Union {
|
Systemz.java | 7 import com.sun.jna.Union; 28 public static class OpValue extends Union {
|
Xcore.java | 7 import com.sun.jna.Union; 28 public static class OpValue extends Union {
|
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/ |
p4.cpp | 7 // a member of an anonymous union that is a member of a base class 20 static union { double union_member; }; 39 union { double union_member; }; 60 union hiding _; // expected-error {{tag type that does not match previous}} 82 union { double union_member; }; 103 union hiding _; // expected-error {{tag type that does not match previous}} 127 union { double union_member; }; // expected-note {{target of using declaration}} 147 union hiding _ = local();
|
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/ |
p1.cpp | 44 constexpr union U1 {}; // expected-error {{union cannot be marked constexpr}} 48 template <typename T> constexpr union TU1 {}; // expected-error {{union cannot be marked constexpr}} 51 union U2 {} constexpr; // expected-error {{union cannot be marked constexpr}} 55 constexpr union U3 {} u3 = {}; 59 union U4 {} constexpr u4 = {};
|
/external/clang/test/CodeGen/ |
2009-02-13-zerosize-union-field.c | 4 typedef union{Foo:0;}a; 5 typedef union{int x; Foo:0;}b;
|
arm-be-result-return.c | 8 extern union Us { short s; } us; 9 union Us callee_us() { return us; }
|
exprs.c | 82 union f3_x {int x; float y;}; 83 int f3() {return ((union f3_x)2).x;} 85 union f4_y {int x; _Complex float y;}; 86 _Complex float f4() {return ((union f4_y)(_Complex float)2.0).y;} 89 union f5_z {int x; struct f5_a y;}; 90 struct f5_a f5() {return ((union f5_z)f5_a).y;} 189 // PR23597: We should evaluate union cast operands even if the cast is unused. 190 typedef union u {
|
pr4349.c | 4 union reg 12 union reg pc;
|
/external/clang/test/CodeGenCXX/ |
copy-assign-synthesis.cpp | 14 union { 27 union {
|
/external/clang/test/Parser/ |
cxx-friend.cpp | 18 union U { 33 // expected-warning@-2 {{unelaborated friend declaration is a C++11 extension; specify 'union' to befriend 'U'}}
|
/external/clang/test/Rewriter/ |
objc-modern-StretAPI.mm | 8 union U { 20 - (union U) Meth2 : (double)d;
|
/external/clang/test/Sema/ |
pragma-ms_struct.c | 28 double __attribute__((ms_struct)) d; // expected-warning {{'ms_struct' attribute only applies to struct or union}} 39 } __attribute__((ms_struct)) e1; // expected-warning {{'ms_struct' attribute only applies to struct or union}}
|
/external/clang/test/SemaCXX/ |
constexpr-printing.cpp | 55 union Union { 56 constexpr Union(int n) : b(n) {} 57 constexpr Union(const Union &u) : b(u.b) {} 60 constexpr Union myUnion = 76; 62 constexpr int badness(Union u) { return u.a + u.b; } // expected-note {{read of member 'a' of union with active member 'b'}}
|
Completed in 774 milliseconds
<<11121314151617181920>>