/prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/CodeGen/ |
LiveIntervalUnion.h | 1 //===- LiveIntervalUnion.h - Live interval union data struct ---*- C++ -*--===// 10 // LiveIntervalUnion is a union of live segments across multiple live virtual 39 /// Union of live intervals that are strong candidates for coalescing into a 63 LiveSegments Segments; // union of virtual reg segments 68 // Iterate over all segments in the union of live virtual registers ordered 84 /// getTag - Return an opaque tag representing the current state of the union. 87 /// changedSince - Return true if the union change since getTag returned tag. 90 // Add a live virtual register to this union and merge its segments. 93 // Remove a live virtual register's segments from this union. 99 // Print union, using TRI to translate register name [all...] |
/prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/CodeGen/ |
LiveIntervalUnion.h | 1 //===- LiveIntervalUnion.h - Live interval union data struct ---*- C++ -*--===// 10 // LiveIntervalUnion is a union of live segments across multiple live virtual 39 /// Union of live intervals that are strong candidates for coalescing into a 63 LiveSegments Segments; // union of virtual reg segments 68 // Iterate over all segments in the union of live virtual registers ordered 84 /// getTag - Return an opaque tag representing the current state of the union. 87 /// changedSince - Return true if the union change since getTag returned tag. 90 // Add a live virtual register to this union and merge its segments. 93 // Remove a live virtual register's segments from this union. 99 // Print union, using TRI to translate register name [all...] |
/prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/CodeGen/ |
LiveIntervalUnion.h | 1 //===- LiveIntervalUnion.h - Live interval union data struct ---*- C++ -*--===// 10 // LiveIntervalUnion is a union of live segments across multiple live virtual 39 /// Union of live intervals that are strong candidates for coalescing into a 63 LiveSegments Segments; // union of virtual reg segments 68 // Iterate over all segments in the union of live virtual registers ordered 84 /// getTag - Return an opaque tag representing the current state of the union. 87 /// changedSince - Return true if the union change since getTag returned tag. 90 // Add a live virtual register to this union and merge its segments. 93 // Remove a live virtual register's segments from this union. 99 // Print union, using TRI to translate register name [all...] |
/device/linaro/bootloader/edk2/MdePkg/Include/IndustryStandard/ |
PciExpress21.h | 25 typedef union {
47 typedef union {
65 typedef union {
83 typedef union {
96 typedef union {
117 typedef union {
134 typedef union {
148 typedef union {
166 typedef union {
184 typedef union {
[all...] |
/external/golang-protobuf/proto/ |
size_test.go | 129 {"oneof bool", &pb.Oneof{Union: &pb.Oneof_F_Bool{true}}}, 130 {"oneof zero int32", &pb.Oneof{Union: &pb.Oneof_F_Int32{0}}}, 131 {"oneof big int32", &pb.Oneof{Union: &pb.Oneof_F_Int32{1 << 20}}}, 132 {"oneof int64", &pb.Oneof{Union: &pb.Oneof_F_Int64{42}}}, 133 {"oneof fixed32", &pb.Oneof{Union: &pb.Oneof_F_Fixed32{43}}}, 134 {"oneof fixed64", &pb.Oneof{Union: &pb.Oneof_F_Fixed64{44}}}, 135 {"oneof uint32", &pb.Oneof{Union: &pb.Oneof_F_Uint32{45}}}, 136 {"oneof uint64", &pb.Oneof{Union: &pb.Oneof_F_Uint64{46}}}, 137 {"oneof float", &pb.Oneof{Union: &pb.Oneof_F_Float{47.1}}}, 138 {"oneof double", &pb.Oneof{Union: &pb.Oneof_F_Double{48.9}}} [all...] |
/external/clang/test/CXX/special/class.ctor/ |
p5-0x.cpp | 22 // - X is a union-like class that has a variant member with a non-trivial 24 union Deleted1a { UserProvidedDefCtor u; }; // expected-note {{default constructor of 'Deleted1a' is implicitly deleted because variant field 'u' has a non-trivial default constructor}} 26 union NotDeleted1a { DefaultedDefCtor1 nu; }; 28 union NotDeleted1b { DefaultedDefCtor2 nu; }; 66 union NotDeleted3d { const int a; int b; }; 68 union NotDeleted3e { const DefaultedDefCtor1 a[42]; int b; }; 70 union NotDeleted3f { const DefaultedDefCtor2 a; int b; }; 72 struct NotDeleted3g { union { const int a; int b; }; }; 75 // - X is a union and all of its variant members are of const-qualified type (or 77 union Deleted4a [all...] |
/external/clang/test/CodeGen/ |
arm-homogenous.c | 13 typedef union { 30 // CHECK: declare arm_aapcs_vfpcc void @returns_union_with_first_floats(%union.union_with_first_floats* sret) 33 typedef union { 50 // CHECK: declare arm_aapcs_vfpcc void @returns_union_with_non_first_floats(%union.union_with_non_first_floats* sret) 142 /* This union is a homogenous aggregate. Check that it's passed properly */ 143 typedef union { 154 // CHECK: call arm_aapcs_vfpcc void @takes_union_with_struct_with_fundamental_elems(%union.union_with_struct_with_fundamental_elems {{.*}}) 156 // CHECK: declare arm_aapcs_vfpcc void @takes_union_with_struct_with_fundamental_elems(%union.union_with_struct_with_fundamental_elems) 160 // CHECK: call arm_aapcs_vfpcc %union.union_with_struct_with_fundamental_elems @returns_union_with_struct_with_fundamental_elems() 162 // CHECK: declare arm_aapcs_vfpcc %union.union_with_struct_with_fundamental_elems @returns_union_with_struct_with_fundamental_elems( [all...] |
/external/flac/libFLAC/ |
memory.c | 65 union { /* union needed to comply with C99 pointer aliasing rules */ 94 union { /* union needed to comply with C99 pointer aliasing rules */ 123 union { /* union needed to comply with C99 pointer aliasing rules */ 152 union { /* union needed to comply with C99 pointer aliasing rules */ 183 union { /* union needed to comply with C99 pointer aliasing rules * [all...] |
/external/libmojo/mojo/public/tools/bindings/generators/cpp_templates/ |
module-shared.h.tmpl | 15 static constexpr MojomTypeCategory category = MojomTypeCategory::UNION; 71 {#--- Union Forward Declarations -#} 72 {%- for union in unions %} 73 class {{union.name}}DataView; 87 {%- for union in unions %} 88 {{mojom_type_traits(union)}} 144 {%- for union in unions %} 177 {#--- Union Serialization Helpers -#} 179 {%- for union in unions %} 205 {%- for union in unions % [all...] |
/external/llvm/test/CodeGen/AArch64/ |
arm64-virtual_base.ll | 8 %struct.Texture_Struct = type { i16, i16, i16, i32, float, float, float, %struct.Warps_Struct*, %struct.Pattern_Struct*, %struct.Blend_Map_Struct*, %union.anon.9, %struct.Texture_Struct*, %struct.Pigment_Struct*, %struct.Tnormal_Struct*, %struct.Finish_Struct*, %struct.Texture_Struct*, i32 } 10 %struct.Pattern_Struct = type { i16, i16, i16, i32, float, float, float, %struct.Warps_Struct*, %struct.Pattern_Struct*, %struct.Blend_Map_Struct*, %union.anon.6 } 12 %struct.Blend_Map_Entry = type { float, i8, %union.anon } 13 %union.anon = type { [2 x double], [8 x i8] } 14 %union.anon.6 = type { %struct.anon.7 } 16 %union.anon.9 = type { %struct.anon.10 } 18 %struct.Pigment_Struct = type { i16, i16, i16, i32, float, float, float, %struct.Warps_Struct*, %struct.Pattern_Struct*, %struct.Blend_Map_Struct*, %union.anon.0, [5 x float] } 19 %union.anon.0 = type { %struct.anon } 21 %struct.Tnormal_Struct = type { i16, i16, i16, i32, float, float, float, %struct.Warps_Struct*, %struct.Pattern_Struct*, %struct.Blend_Map_Struct*, %union.anon.3, float } 22 %union.anon.3 = type { %struct.anon.4 [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/ |
pthreadtypes.h | 53 typedef union 76 typedef union 95 __extension__ union 106 typedef union 115 typedef union 132 typedef union 150 typedef union 191 typedef union 206 typedef union 212 typedef union [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
virtdisk.h | 145 __C89_NAMELESS union { 154 __C89_NAMELESS union { 163 __C89_NAMELESS union { 177 __C89_NAMELESS union { 186 __C89_NAMELESS union { 207 __C89_NAMELESS union { 216 __C89_NAMELESS union { 225 __C89_NAMELESS union { 248 /* Fixme: Suppress GCC errors about "error: flexible array member in union" */ 253 __C89_NAMELESS union { [all...] |
wtypes.h | 228 union { 239 union { 247 union { 258 union { 274 union { 283 union { 303 union { 312 union { 321 union { 431 typedef union tagCY [all...] |
iketypes.h | 218 __C89_NAMELESS union { 227 __C89_NAMELESS union { 241 __C89_NAMELESS union { 250 __C89_NAMELESS union { 295 __C89_NAMELESS union { 310 __C89_NAMELESS union { 356 __C89_NAMELESS union { 369 __C89_NAMELESS union { 384 __C89_NAMELESS union { 587 __C89_NAMELESS union { [all...] |
/system/chre/platform/shared/ |
host_protocol_chre.cc | 118 finalize(builder, fbs::ChreMessage::HubInfoResponse, response.Union(), 140 finalize(builder, fbs::ChreMessage::NanoappListResponse, response.Union(), 149 finalize(builder, fbs::ChreMessage::LoadNanoappResponse, response.Union(), 158 finalize(builder, fbs::ChreMessage::UnloadNanoappResponse, response.Union(), 168 finalize(builder, fbs::ChreMessage::LogMessage, message.Union()); 177 finalize(builder, fbs::ChreMessage::DebugDumpData, message.Union(), 185 finalize(builder, fbs::ChreMessage::DebugDumpResponse, response.Union(), 192 finalize(builder, fbs::ChreMessage::TimeSyncRequest, request.Union()); 199 request.Union()); 206 request.Union()); [all...] |
/external/libvpx/config/mips32-msa/ |
vp8_rtcd.h | 23 union int_mv; 90 int vp8_diamond_search_sad_c(struct macroblock *x, struct block *b, struct blockd *d, union int_mv *ref_mv, union int_mv *best_mv, int search_param, int sad_per_bit, int *num00, struct variance_vtable *fn_ptr, int *mvcost[2], union int_mv *center_mv); 91 int vp8_diamond_search_sadx4(struct macroblock *x, struct block *b, struct blockd *d, union int_mv *ref_mv, union int_mv *best_mv, int search_param, int sad_per_bit, int *num00, struct variance_vtable *fn_ptr, int *mvcost[2], union int_mv *center_mv); 98 int vp8_full_search_sad_c(struct macroblock *x, struct block *b, struct blockd *d, union int_mv *ref_mv, int sad_per_bit, int distance, struct variance_vtable *fn_ptr, int *mvcost[2], union int_mv *center_mv); 141 int vp8_refining_search_sad_c(struct macroblock *x, struct block *b, struct blockd *d, union int_mv *ref_mv, int sad_per_bit, int distance, struct variance_vtable *fn_ptr, int *mvcost[2], uni (…) [all...] |
/external/libvpx/config/mips64-msa/ |
vp8_rtcd.h | 23 union int_mv; 90 int vp8_diamond_search_sad_c(struct macroblock *x, struct block *b, struct blockd *d, union int_mv *ref_mv, union int_mv *best_mv, int search_param, int sad_per_bit, int *num00, struct variance_vtable *fn_ptr, int *mvcost[2], union int_mv *center_mv); 91 int vp8_diamond_search_sadx4(struct macroblock *x, struct block *b, struct blockd *d, union int_mv *ref_mv, union int_mv *best_mv, int search_param, int sad_per_bit, int *num00, struct variance_vtable *fn_ptr, int *mvcost[2], union int_mv *center_mv); 98 int vp8_full_search_sad_c(struct macroblock *x, struct block *b, struct blockd *d, union int_mv *ref_mv, int sad_per_bit, int distance, struct variance_vtable *fn_ptr, int *mvcost[2], union int_mv *center_mv); 141 int vp8_refining_search_sad_c(struct macroblock *x, struct block *b, struct blockd *d, union int_mv *ref_mv, int sad_per_bit, int distance, struct variance_vtable *fn_ptr, int *mvcost[2], uni (…) [all...] |
/external/owasp/sanitizer/src/main/org/owasp/html/ |
CssSchema.java | 104 * A schema that represents the union of the input schemas. 109 public static CssSchema union(CssSchema... cssSchemas) { method in class:CssSchema 399 union(mozOutlineLiterals0, mozOutlineLiterals1, mozOutlineLiterals2, 405 2, union(mozOutlineColorLiterals0, mozOutlineLiterals0), 410 0, union(mozOutlineLiterals1, mozOutlineStyleLiterals0), zeroFns); 414 5, union(mozOutlineLiterals2, mozOutlineWidthLiterals0), zeroFns); 420 5, union(azimuthLiterals0, azimuthLiterals1, azimuthLiterals2), 426 union(azimuthLiterals1, backgroundLiterals0, backgroundLiterals1, 434 258, union(backgroundColorLiterals0, mozOutlineLiterals0), 443 union(azimuthLiterals1, backgroundLiterals2 753 private static <T> ImmutableSet<T> union(ImmutableSet<T>... subsets) { method in class:CssSchema [all...] |
/bionic/libc/kernel/uapi/linux/ |
if_packet.h | 91 union tpacket_stats_u { 160 union { 167 union { 180 union tpacket_bd_header_u { 186 union tpacket_bd_header_u hdr; 210 union tpacket_req_u {
|
cn_proc.h | 41 union { 58 union { 62 union {
|
/external/llvm/test/CodeGen/PowerPC/ |
tailcall-string-rvo.ll | 15 %"class.__gnu_cxx::__sso_string_base.9.40.71" = type { %"struct.__gnu_cxx::__vstring_utility<char, std::char_traits<char>, std::allocator<char> >::_Alloc_hider.7.38.69", i64, %union.anon.8.39.70 } 17 %union.anon.8.39.70 = type { i64, [8 x i8] } 32 %tmp1 = bitcast %class.basic_string.11.42.73* %arg to %union.anon.8.39.70** 33 store %union.anon.8.39.70* %tmp, %union.anon.8.39.70** %tmp1, align 8 34 %tmp2 = bitcast %union.anon.8.39.70* %tmp to i8*
|
/external/llvm/test/DebugInfo/X86/ |
union-template.ll | 4 ; Verify that we've emitted template arguments for the union 10 %"union.PR15637::Value" = type { i32 } 12 @_ZN7PR156371fE = global %"union.PR15637::Value" zeroinitializer, align 4 17 %tempValue = alloca %"union.PR15637::Value", align 4 20 call void @llvm.dbg.declare(metadata %"union.PR15637::Value"* %tempValue, metadata !25, metadata !DIExpression()), !dbg !26 41 !10 = !DIGlobalVariable(name: "f", linkageName: "_ZN7PR156371fE", line: 6, isLocal: false, isDefinition: true, scope: !5, file: !11, type: !12, variable: %"union.PR15637::Value"* @_ZN7PR156371fE)
|
/frameworks/compile/slang/lit-tests/padding/ |
bitfield.rs | 25 // There is a C99 rule (under "Structure and union members") that 27 // of unions: if a union contains several structures that share a 28 // common initial sequence, and if the union object currently contains 31 // completed type of the union is visible. Two structures share a 58 union CommonInitialSequence { 63 static union CommonInitialSequence U, V;
|
/frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/ |
bitfield.rs | 19 // There is a C99 rule (under "Structure and union members") that 21 // of unions: if a union contains several structures that share a 22 // common initial sequence, and if the union object currently contains 25 // completed type of the union is visible. Two structures share a 52 union CommonInitialSequence { 57 static union CommonInitialSequence U, V;
|
/frameworks/rs/tests/java_api/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/ |
bitfield.rs | 21 // There is a C99 rule (under "Structure and union members") that 23 // of unions: if a union contains several structures that share a 24 // common initial sequence, and if the union object currently contains 27 // completed type of the union is visible. Two structures share a 54 union CommonInitialSequence { 59 static union CommonInitialSequence U, V;
|